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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(102, 126, 234, 0.8) 50%, rgba(118, 75, 162, 0.7) 100%);
  padding: 80px 0;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border: 2px solid transparent;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: #ffffff;
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

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

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 90vh;
    min-height: 500px;
  }
  
  .hero-overlay {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .btn-hero-primary {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-overlay {
    padding: 40px 0;
  }
}

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

.achievement-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.achievement-showcase .container {
    position: relative;
    z-index: 2;
}

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

.achievement-description {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.achievement-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.metric-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.achievement-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.visual-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.overlay-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 25px;
    z-index: -1;
}

.icon-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

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

.feature-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .achievement-title {
        font-size: 2rem;
    }
    
    .achievement-metrics {
        justify-content: center;
        margin-bottom: 3rem;
    }
    
    .visual-overlay {
        bottom: 15px;
        right: 15px;
    }
    
    .overlay-card {
        padding: 1rem;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .achievement-showcase {
        padding: 60px 0;
    }
    
    .achievement-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .achievement-description {
        text-align: center;
    }
    
    .metric-item {
        flex: 1;
        min-width: 100px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .icon-image {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .overlay-card {
        padding: 0.75rem;
        min-width: 130px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .card-value {
        font-size: 1.25rem;
    }
}

/* Block 3 */
.methodology-framework {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.methodology-framework::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.framework-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.methodology-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.methodology-visual:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.methodology-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

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

.synapse-indicator {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.synapse-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.synapse-indicator.active .synapse-pulse {
    background: #28a745;
}

.synapse-indicator.processing .synapse-pulse {
    background: #007bff;
    animation-delay: 0.5s;
}

.synapse-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

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

.phase-sequence {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.phase-details {
    flex: 1;
}

.phase-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.phase-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.phase-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.metric-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.science-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.science-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.science-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.science-icon {
    margin-bottom: 1.5rem;
}

.science-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

.science-text {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.science-stat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

.cta-framework {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-description {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-framework-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 992px) {
    .methodology-visual {
        transform: none;
        margin-bottom: 3rem;
    }
    
    .methodology-content {
        padding-left: 0;
    }
    
    .framework-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .methodology-framework {
        padding: 60px 0;
    }
    
    .framework-title {
        font-size: 1.8rem;
    }
    
    .framework-subtitle {
        font-size: 1.1rem;
    }
    
    .science-card {
        padding: 1.5rem;
    }
    
    .cta-framework {
        padding: 2rem 1.5rem;
    }
    
    .neural-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.header-icon {
    margin-bottom: 20px;
}

.consultation-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.2));
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.consultation-form {
    max-width: 400px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-size: 16px;
    color: #2d3748;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-bottom-color: #667eea;
}

.form-input:focus + .input-focus-line {
    width: 100%;
}

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

.form-input::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.form-actions {
    margin: 40px 0 30px;
}

.submit-button {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.3);
}

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

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

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

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

.privacy-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.shield-icon {
    width: 16px;
    height: 16px;
    filter: hue-rotate(220deg) saturate(1.5);
}

.privacy-text {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-container {
        margin: 0 20px;
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
    
    .privacy-notice {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .form-container {
        margin: 0 16px;
        padding: 32px 20px;
    }
    
    .consultation-form {
        max-width: 100%;
    }
}
