
/* Block 1 */
.hero-banner {
      position: relative;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
      overflow: hidden;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('hero-bg-pattern.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.1;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(13, 110, 253, 0.8) 0%, rgba(108, 117, 125, 0.6) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      color: white;
      padding: 120px 0 80px;
    }

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

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

    .hero-actions {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .btn-primary-custom {
      background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
      color: white;
      padding: 15px 35px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
      display: inline-block;
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
      color: white;
      text-decoration: none;
    }

    .btn-secondary-custom {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      padding: 15px 35px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      display: inline-flex;
      align-items: center;
    }

    .btn-secondary-custom:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      color: white;
      text-decoration: none;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
    }

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

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #feca57;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.95rem;
      opacity: 0.9;
      margin-top: 0.5rem;
    }

    .hero-image-wrapper {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
      transition: transform 0.3s ease;
    }

    .hero-image:hover {
      transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
    }

    .floating-badge {
      position: absolute;
      top: -20px;
      right: -20px;
      background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
      color: #333;
      padding: 15px 20px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(255, 154, 158, 0.4);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float 3s ease-in-out infinite;
    }

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

    .floating-badge i {
      font-size: 1.5rem;
      color: #667eea;
    }

    .badge-content {
      display: flex;
      flex-direction: column;
    }

    .badge-title {
      font-weight: 700;
      font-size: 0.9rem;
      line-height: 1;
    }

    .badge-subtitle {
      font-size: 0.75rem;
      opacity: 0.8;
    }

    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.8rem;
      }
      
      .hero-description {
        font-size: 1.1rem;
      }
      
      .hero-stats {
        gap: 2rem;
      }
      
      .stat-number {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .hero-content {
        padding: 100px 0 60px;
      }
      
      .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
      }
      
      .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
      }
      
      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
      }
      
      .btn-primary-custom,
      .btn-secondary-custom {
        padding: 12px 28px;
        font-size: 1rem;
      }
      
      .hero-stats {
        gap: 1.5rem;
      }
      
      .hero-image {
        transform: none;
        max-width: 300px;
      }
      
      .floating-badge {
        top: -10px;
        right: -10px;
        padding: 10px 15px;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-actions {
        width: 100%;
      }
      
      .btn-primary-custom,
      .btn-secondary-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
      
      .hero-stats {
        justify-content: space-between;
      }
      
      .stat-item {
        align-items: center;
        text-align: center;
      }
    }

/* Block 2 */
.innovation-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    gap: 30px;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

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

.feature-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.innovation-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.main-visual {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.visual-container:hover .main-visual {
    transform: scale(1.02);
}

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

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

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

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

.technology-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .floating-metrics {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .technology-badges {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }
    
    .visual-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .floating-metrics {
        flex-direction: column;
        align-items: center;
    }
    
    .metric-card {
        min-width: 100px;
    }
}

/* Block 3 */
.future-skills-hub {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.future-skills-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

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

.trend-indicator {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hub-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hub-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.skills-showcase {
    margin-bottom: 80px;
}

.skill-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.skill-header {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.digital-mastery .skill-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.emotional-intelligence .skill-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.sustainability .skill-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.financial-literacy .skill-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.creative-thinking .skill-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.global-citizenship .skill-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.skill-meta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.completion-rate {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.skill-preview {
    position: relative;
    overflow: hidden;
    margin: 0 30px 30px 30px;
    border-radius: 16px;
}

.skill-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.skill-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.skill-highlights li {
    padding: 8px 0;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.skill-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #43e97b;
    font-weight: bold;
}

.skill-progress {
    padding: 0 30px 30px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.progress-fill[data-progress="78"] {
    width: 78%;
}

.progress-fill[data-progress="92"] {
    width: 92%;
}

.progress-fill[data-progress="85"] {
    width: 85%;
}

.progress-fill[data-progress="88"] {
    width: 88%;
}

.progress-fill[data-progress="79"] {
    width: 79%;
}

.progress-fill[data-progress="91"] {
    width: 91%;
}

.progress-text {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    white-space: nowrap;
}

.hub-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: #667eea;
}

.cta-primary:hover {
    background: #f8f9ff;
    color: #5a67d8;
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.achievement-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.ring-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#43e97b 0deg 313.2deg, rgba(255, 255, 255, 0.3) 313.2deg 360deg);
    position: relative;
}

.ring-progress::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.ring-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.ring-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.ring-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hub-title {
        font-size: 2.5rem;
    }
    
    .hub-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .future-skills-hub {
        padding: 60px 0;
    }
    
    .hub-title {
        font-size: 2rem;
    }
    
    .skill-header {
        padding: 20px;
    }
    
    .skill-preview {
        margin: 0 20px 20px 20px;
    }
    
    .skill-progress {
        padding: 0 20px 20px 20px;
    }
    
    .hub-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

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

.enrollment-form-2025::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="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>');
    opacity: 0.3;
}

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

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

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

.input-group-custom {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    z-index: 3;
    font-size: 18px;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

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

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-35px) scale(0.9);
    color: #667eea;
}

.form-label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 8px;
}

.form-benefits {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.benefits-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #495057;
}

.benefit-item i {
    color: #28a745;
    font-size: 16px;
}

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

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.form-guarantee i {
    color: #28a745;
}

.social-proof {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.testimonial-preview {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #495057;
    margin-bottom: 8px;
    font-size: 15px;
}

.testimonial-author strong {
    color: #2c3e50;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 14px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 14px;
}

.trust-item i {
    color: #667eea;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}
