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

    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      filter: brightness(1.1) contrast(1.2);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(31, 41, 55, 0.85) 0%, rgba(17, 24, 39, 0.75) 100%);
      z-index: -1;
    }

    .hero-content {
      padding: 60px 0;
      animation: heroFadeIn 1.2s ease-out;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 24px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

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

    .hero-cta {
      display: inline-block;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: #ffffff;
      padding: 18px 36px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: relative;
      overflow: hidden;
    }

    .hero-cta::before {
      content: '';
      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;
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
      color: #ffffff;
      text-decoration: none;
    }

    .hero-cta:hover::before {
      left: 100%;
    }

    @keyframes heroFadeIn {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @media (max-width: 768px) {
      .hero-banner {
        min-height: 60vh;
      }
      
      .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
      }
      
      .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
      }
      
      .hero-cta {
        padding: 16px 28px;
        font-size: 1rem;
      }
      
      .hero-content {
        padding: 40px 0;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.9rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
    }

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

        .ai-automation-hub::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.4;
            z-index: 1;
        }

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

        .innovation-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .automation-features {
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #8b5cf6 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: #ffffff;
            font-size: 24px;
        }

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

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

        .automation-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #ffffff;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
            color: #ffffff;
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--primary-color);
            padding: 15px 35px;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-color);
            color: #ffffff;
            transform: translateY(-3px);
        }

        .automation-visual {
            position: relative;
        }

        .automation-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .automation-image:hover {
            transform: scale(1.02);
        }

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

        .stat-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            min-width: 120px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 12px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .technology-showcase {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 25px;
            padding: 60px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 60px;
        }

        .showcase-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 50px;
        }

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

        .tech-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .tech-image {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .tech-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
        }

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

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }

            .automation-actions {
                flex-direction: column;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                text-align: center;
            }

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

            .technology-showcase {
                padding: 40px 20px;
            }

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

/* Block 3 */
.sustainability-initiative {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-initiative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.eco-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.sustainability-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sustainability-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.eco-metrics {
    margin-bottom: 50px;
}

.metric-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.metric-card {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
}

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

.metric-card.primary {
    border-left-color: #22c55e;
}

.metric-card.secondary {
    border-left-color: #f59e0b;
}

.metric-card.accent {
    border-left-color: #3b82f6;
}

.metric-card.highlight {
    border-left-color: #06b6d4;
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: white;
}

.metric-card.primary .metric-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.metric-card.secondary .metric-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.metric-card.accent .metric-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.metric-card.highlight .metric-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

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

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.metric-desc {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

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

.innovation-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin-right: 25px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.innovation-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.innovation-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.visual-container {
    position: relative;
    margin-bottom: 30px;
}

.main-visual {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.impact-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
}

.impact-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
}

.impact-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cert-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cert-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cert-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.partnership-section {
    background: white;
    padding: 50px;
    border-radius: 25px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partnership-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-item img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

.btn-eco-primary, .btn-eco-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-eco-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.btn-eco-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    color: white;
}

.btn-eco-secondary {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-eco-secondary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

@media (max-width: 768px) {
    .sustainability-title {
        font-size: 2.5rem;
    }
    
    .metric-row {
        flex-direction: column;
    }
    
    .innovation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .innovation-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .partner-logos {
        gap: 20px;
    }
    
    .commitment-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .sustainability-initiative {
        padding: 60px 0;
    }
    
    .sustainability-header {
        margin-bottom: 50px;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-section {
        padding: 30px 20px;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2563eb 50%, transparent 100%);
}

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

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    animation: floatAnimation 3s ease-in-out infinite;
}

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

.form-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
}

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

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

.order-form-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

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

.input-group {
    position: relative;
}

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

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

.input-icon {
    position: absolute;
    left: 18px;
    color: #9ca3af;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.form-control-custom {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-custom:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control-custom:focus + .input-icon,
.form-control-custom:focus ~ .input-icon {
    color: #2563eb;
}

.form-features {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #2563eb;
}

.feature-check {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #374151;
}

.feature-check:last-child {
    margin-bottom: 0;
}

.feature-check i {
    color: #10b981;
    margin-right: 12px;
    font-size: 16px;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

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

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

.privacy-notice {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-notice i {
    color: #10b981;
}

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

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

.trust-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trust-item span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-container {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-control-custom {
        padding: 15px 18px 15px 50px;
        font-size: 15px;
    }
    
    .input-icon {
        left: 15px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 18px 40px;
        font-size: 1rem;
    }
}
