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

    .hero-background-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-overlay {
      background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(49, 27, 146, 0.75) 50%, rgba(0, 0, 0, 0.6) 100%);
      z-index: 2;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .hero-content {
      z-index: 3;
      color: white;
      width: 100%;
      padding: 80px 0;
    }

    .hero-overlay,
    .hero-content {
      position: absolute;
    }

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

    .hero-description {
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      max-width: 600px;
      font-weight: 400;
    }

    .hero-cta-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
      color: white;
      font-size: 1.125rem;
      font-weight: 600;
      padding: 16px 40px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
      background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    }

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

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

      .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
      }

      .hero-cta-btn {
        font-size: 1rem;
        padding: 14px 32px;
      }

      .hero-content {
        padding: 60px 0;
      }
    }

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

      .hero-description {
        font-size: 1rem;
      }

      .hero-cta-btn {
        width: 100%;
        max-width: 300px;
      }
    }

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

.tech-roadmap-2025::before {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.tech-roadmap-2025::after {
    content: '';
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    opacity: 0.08;
    bottom: -75px;
    left: -75px;
    z-index: 1;
}

.roadmap-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.tech-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

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

.tech-card-header {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.tech-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tech-card:hover .tech-card-image {
    transform: scale(1.1);
}

.tech-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.tech-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tech-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.tech-card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tech-metrics {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

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

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    line-height: 1.3;
}

.roadmap-cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    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);
    position: relative;
    z-index: 2;
}

.roadmap-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

@media (max-width: 768px) {
    .tech-roadmap-2025 {
        padding: 60px 0;
    }
    
    .roadmap-title {
        font-size: 2.2rem;
    }
    
    .roadmap-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-card-header {
        height: 200px;
    }
    
    .tech-metrics {
        gap: 15px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .roadmap-cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

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

.innovation-timeline-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 118, 117, 0.1) 0%, transparent 50%);
}

.timeline-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-wrapper {
    position: relative;
    margin-top: 80px;
    margin-bottom: 60px;
}

.timeline-track {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2, #667eea);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-milestone {
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-milestone:nth-child(even) {
    flex-direction: row-reverse;
}

.milestone-marker {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
    margin: 0 40px;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.milestone-content {
    flex: 1;
    max-width: 450px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.timeline-milestone:nth-child(even) .milestone-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-milestone:nth-child(odd) .milestone-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.milestone-date {
    font-size: 1rem;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.milestone-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.milestone-impact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.impact-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.impact-stat {
    color: #667eea;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 5px;
}

.timeline-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 992px) {
    .timeline-track::before {
        left: 60px;
    }
    
    .timeline-milestone {
        flex-direction: row !important;
    }
    
    .timeline-milestone:nth-child(even) {
        flex-direction: row !important;
    }
    
    .milestone-marker {
        margin: 0 40px 0 0;
    }
    
    .timeline-milestone:nth-child(even) .milestone-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid white;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .innovation-timeline-2025 {
        padding: 60px 0;
    }
    
    .timeline-main-title {
        font-size: 2.5rem;
    }
    
    .timeline-subtitle {
        font-size: 1.1rem;
    }
    
    .milestone-marker {
        width: 80px;
        height: 80px;
        margin: 0 20px 0 0;
    }
    
    .milestone-icon {
        width: 50px;
        height: 50px;
    }
    
    .milestone-content {
        padding: 25px;
    }
    
    .milestone-title {
        font-size: 1.4rem;
    }
    
    .timeline-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Block 4 */
.order-form-2025 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.form-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.order-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.form-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.form-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(238, 90, 36, 0.3);
}

.form-content {
    padding: 40px;
    color: #1a1a1a;
}

.form-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.form-card-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    font-size: 1rem;
}

.order-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.program-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 24px;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-original {
    font-size: 1.125rem;
    color: #a0aec0;
    text-decoration: line-through;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
}

.price-label {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    margin-bottom: 1.5rem;
}

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

.form-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.875rem;
    text-align: center;
}

.form-footer-text i {
    color: #10b981;
}

@media (max-width: 768px) {
    .order-form-2025 {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.25rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .program-highlights {
        flex-direction: column;
        gap: 12px;
    }
    
    .highlight-item {
        justify-content: center;
    }
    
    .program-pricing {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .price-current {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.875rem;
    }
    
    .form-subtitle {
        font-size: 1.125rem;
    }
    
    .form-card-title {
        font-size: 1.5rem;
    }
}
