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

.hero-background {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-banner:hover .hero-image {
  transform: scale(1.08);
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
  background: linear-gradient(135deg, #ff5252 0%, #ff8f00 100%);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 15px;
  }
  
  .hero-cta-button {
    padding: 16px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.learning-paths {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.learning-paths::before {
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.learning-paths .container {
    position: relative;
    z-index: 2;
}

.paths-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.path-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.path-card:hover::before {
    transform: scaleX(1);
}

.path-featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.path-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

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

.path-icon-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.path-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8fafc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.path-card:hover .path-icon {
    transform: scale(1.1);
}

.path-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.path-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.95rem;
}

.path-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.path-features li {
    color: #475569;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

.path-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.path-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    gap: 15px;
}

.stat-item {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    flex: 1;
}

.stat-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 2px;
}

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

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

.paths-bottom-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.paths-bottom-cta::before {
    content: '';
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bottom-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.bottom-cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.assessment-btn {
    background: white;
    color: #1e293b;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.assessment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .paths-main-title {
        font-size: 2.3rem;
    }
    
    .path-featured {
        transform: none;
    }
    
    .path-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .learning-paths {
        padding: 60px 0;
    }
    
    .paths-main-title {
        font-size: 2rem;
    }
    
    .path-card {
        padding: 30px 25px;
    }
    
    .path-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .paths-bottom-cta {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .bottom-cta-title {
        font-size: 1.5rem;
    }
}

/* Block 3 */
.methodology-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    position: relative;
}

.methodology-showcase::before {
    content: '';
    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"><circle cx="50" cy="50" r="1" fill="rgba(102,126,234,0.05)"/></svg>') repeat;
    background-size: 30px 30px;
}

.methodology-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.methodology-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 20px auto;
    border-radius: 2px;
}

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

.methodology-content {
    padding-right: 2rem;
}

.methodology-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.methodology-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.methodology-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102,126,234,0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

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

.methodology-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102,126,234,0.15);
    transition: transform 0.3s ease;
}

.stat-circle:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin-top: 0.2rem;
}

.research-foundation {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.research-header {
    text-align: center;
    margin-bottom: 3rem;
}

.research-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.research-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.research-card {
    background: #f8f9ff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102,126,234,0.15);
}

.research-image-wrapper {
    height: 180px;
    overflow: hidden;
}

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

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

.research-content {
    padding: 1.5rem;
}

.research-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.research-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.research-source {
    padding-top: 0.8rem;
    border-top: 1px solid #e9ecef;
}

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

@media (max-width: 992px) {
    .methodology-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .methodology-title {
        font-size: 2.3rem;
    }
    
    .methodology-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .methodology-showcase {
        padding: 60px 0;
    }
    
    .methodology-title {
        font-size: 2rem;
    }
    
    .methodology-stats {
        gap: 1rem;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .research-foundation {
        padding: 2rem 1.5rem;
    }
    
    .research-grid {
        grid-template-columns: 1fr;
    }
}

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

.order-form-section::before {
    content: '';
    background: url('pattern-dots.jpg') repeat;
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

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

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

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

.order-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-benefits {
    margin-bottom: 40px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    margin-bottom: 35px;
}

.benefit-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.benefit-description {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    position: relative;
    z-index: 1;
}

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

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-control:focus + .input-focus-line {
    transform: scaleX(1);
}

.form-privacy {
    margin: 35px 0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #667eea;
}

.privacy-label {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

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

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

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

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

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

.form-security {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.85rem;
}

.security-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.8;
}

.order-testimonial {
    margin-top: 80px;
}

.testimonial-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: -20px;
    left: -40px;
    font-family: Georgia, serif;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

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

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-wrapper {
        padding: 30px 20px;
    }
    
    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .quote-text::before {
        left: -20px;
        font-size: 3rem;
    }
    
    .quote-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .security-badges {
        gap: 20px;
    }
    
    .security-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.9rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
