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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 70vh;
}

.hero-background {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(45, 55, 72, 0.75) 50%, rgba(26, 32, 44, 0.85) 100%);
}

.hero-content {
  position: relative;
  top: -100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 80px 0;
}

.hero-title {
  font-size: 3.2rem;
  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-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-button {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 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(79, 70, 229, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 70, 229, 0.6);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

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

.button-text {
  font-weight: 600;
}

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

.hero-cta-button:hover .button-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh;
  }
  
  .hero-background,
  .hero-image-wrapper {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    min-height: 55vh;
  }
  
  .hero-background,
  .hero-image-wrapper {
    min-height: 55vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.software-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.categories-title::after {
    content: '';
    position: relative;
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 20px auto;
    border-radius: 2px;
}

.categories-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(155, 89, 182, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-icon {
    color: white;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: translateY(0);
}

.category-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.category-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.category-features li {
    padding: 6px 0;
    color: #5a6c7d;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

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

.category-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.category-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .software-categories {
        padding: 60px 0;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .category-image-wrapper {
        height: 200px;
    }
    
    .category-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .categories-title {
        font-size: 1.75rem;
    }
    
    .category-image-wrapper {
        height: 180px;
    }
    
    .category-content {
        padding: 20px 15px;
    }
}

/* Block 3 */
.ai-innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

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

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

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

.innovation-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.innovation-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.innovation-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.main-innovation-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatAnimation 3s ease-in-out infinite;
}

.card-one {
    top: 50px;
    left: -30px;
    animation-delay: 0s;
}

.card-two {
    top: 200px;
    right: -40px;
    animation-delay: 1s;
}

.card-three {
    bottom: 80px;
    left: 20px;
    animation-delay: 2s;
}

.card-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    object-fit: cover;
}

.card-text {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

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

.innovation-features {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

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

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

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 992px) {
    .innovation-title {
        font-size: 36px;
    }
    
    .main-innovation-image {
        width: 300px;
        height: 300px;
    }
    
    .floating-card {
        position: relative;
        margin: 10px 0;
    }
    
    .card-one,
    .card-two,
    .card-three {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .innovation-visual {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .ai-innovation-showcase {
        padding: 60px 0;
    }
    
    .innovation-title {
        font-size: 28px;
    }
    
    .innovation-stats {
        justify-content: space-between;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-innovation-image {
        width: 250px;
        height: 250px;
    }
}

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

.order-form-section::before {
    content: '';
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.order-form-section::after {
    content: '';
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -300px;
    z-index: 1;
}

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

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 300;
}

.order-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 2;
}

.form-visual-side {
    padding: 60px 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 6px;
}

.benefit-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-content-side {
    padding: 60px 40px;
}

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

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

.input-wrapper {
    position: relative;
}

.input-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    z-index: 3;
}

.custom-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

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

.custom-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 20px;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 6px;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.security-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .order-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-visual-side,
    .form-content-side {
        padding: 40px 30px;
    }
    
    .form-hero-image {
        height: 150px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 50px 0;
    }
    
    .form-visual-side,
    .form-content-side {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}
