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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem 0;
}

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

.hero-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.hero-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

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

.hero-button:hover i {
    transform: translateX(4px);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
}

/* Block 2 */
.productivity-insights {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.insight-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.insight-icon {
    margin-bottom: 24px;
}

.insight-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.insight-header {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.insight-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.metric-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-insight {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.featured-text {
    flex: 1;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.featured-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-benefits li {
    color: #e2e8f0;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.featured-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.featured-visual {
    flex-shrink: 0;
}

.featured-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    opacity: 0.9;
}

.stats-card {
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
    border: 2px solid #e2e8f0;
}

.stats-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.stats-note {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.stats-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 12px;
}

.stats-note p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .featured-content {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .productivity-insights {
        padding: 60px 0;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .insight-card {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Block 3 */
.breakthrough-methods {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.breakthrough-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #0ea5e9 50%, transparent 100%);
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.methods-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.methods-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.methods-grid {
    display: grid;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.method-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.primary-method {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    grid-column: 1 / -1;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    padding-bottom: 0;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.method-category {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-name {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 8px;
    line-height: 1.2;
}

.method-content {
    padding: 0 40px 40px;
}

.method-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

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

.feature-text {
    font-weight: 600;
    font-size: 0.9rem;
}

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

.result-metric {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.method-card:not(.primary-method):not(.technology-showcase):not(.impact-summary) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.method-visual {
    padding: 40px;
}

.visual-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.method-info {
    padding: 40px;
}

.method-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.method-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
}

.method-specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-label {
    font-weight: 600;
    color: #334155;
}

.spec-value {
    font-weight: 700;
    color: #3b82f6;
    font-size: 1.1rem;
}

.method-benefits {
    margin-top: 24px;
}

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

.benefit-item {
    padding: 12px 0;
    color: #475569;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.benefit-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

.technology-showcase {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 0;
    margin-bottom: 32px;
}

.showcase-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.technology-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

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

.tech-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 40px 40px;
}

.description-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.technology-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-metric {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.metric-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-summary {
    grid-column: 1 / -1;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 40px 0;
    margin-bottom: 40px;
}

.summary-icon {
    width: 48px;
    height: 48px;
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 40px;
    margin-bottom: 40px;
}

.impact-category {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    text-align: center;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-name {
    font-weight: 600;
    color: #475569;
}

.stat-value {
    font-weight: 800;
    font-size: 1.25rem;
    color: #059669;
}

.stat-value:contains('-') {
    color: #dc2626;
}

.summary-footer {
    padding: 0 40px 40px;
    text-align: center;
}

.summary-note {
    color: #64748b;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .methods-title {
        font-size: 2.5rem;
    }
    
    .method-card:not(.primary-method):not(.technology-showcase):not(.impact-summary) {
        grid-template-columns: 1fr;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .breakthrough-methods {
        padding: 80px 0;
    }
    
    .methods-title {
        font-size: 2rem;
    }
    
    .method-header {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px 0;
    }
    
    .method-content {
        padding: 0 24px 32px;
    }
    
    .method-info,
    .method-visual {
        padding: 24px;
    }
    
    .showcase-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 32px 24px 0;
    }
    
    .showcase-content {
        padding: 0 24px 32px;
    }
    
    .summary-header {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px 0;
    }
    
    .impact-grid {
        padding: 0 24px;
    }
    
    .summary-footer {
        padding: 0 24px 32px;
    }
}

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

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

.form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.consultation-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 10px 25px rgba(13, 110, 253, 0.15));
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.transformation-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

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

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    z-index: 3;
    opacity: 0.6;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input:focus {
    outline: none;
    border-color: #0d6efd;
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #adb5bd;
}

.form-benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.submit-section {
    text-align: center;
}

.submit-button {
    background: linear-gradient(135deg, #0d6efd 0%, #0056d3 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;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    margin-bottom: 16px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

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

.privacy-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.consultation-preview {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.consultant-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.preview-content {
    padding: 25px;
}

.preview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

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

.preview-item {
    padding: 8px 0;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 3px solid #0d6efd;
    padding-left: 12px;
    margin-bottom: 8px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.rating-stars {
    width: 100px;
    height: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: #6c757d;
}

@media (max-width: 992px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .transformation-form {
        padding: 30px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .transformation-form {
        padding: 25px;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 16px 30px;
    }
}
