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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8) 0%, rgba(74, 144, 226, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 2rem;
}

.hero-container {
    max-width: 800px;
    text-align: center;
    color: white;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
    }
}

/* Block 2 */
.advanced-features-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-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;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-metrics {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.metric-item i {
    font-size: 0.8rem;
}

.features-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

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

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

@media (max-width: 768px) {
    .advanced-features-showcase {
        padding: 3rem 0;
    }
    
    .features-container {
        padding: 0 1rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .features-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-metrics {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metric-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Block 3 */
.productivity-analytics {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.productivity-analytics::before {
    content: '';
    background: url('analytics-pattern.png') repeat;
    opacity: 0.03;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.analytics-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.analytics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 144, 226, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.badge-icon {
    width: 20px;
    height: 20px;
}

.badge-text {
    color: #4a90e2;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.analytics-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-card.primary {
    border-left: 5px solid #4a90e2;
}

.stat-card.secondary {
    border-left: 5px solid #3498db;
}

.stat-card.accent {
    border-left: 5px solid #2ecc71;
}

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

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

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.stat-trend {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat-trend.positive {
    color: #2ecc71;
}

.stat-trend.neutral {
    color: #f39c12;
}

.insights-panel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ai-icon {
    width: 32px;
    height: 32px;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.recommendation-item:last-child {
    border-bottom: none;
}

.rec-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.high-priority .rec-indicator {
    background-color: #e74c3c;
}

.medium-priority .rec-indicator {
    background-color: #f39c12;
}

.low-priority .rec-indicator {
    background-color: #3498db;
}

.rec-content {
    flex: 1;
}

.rec-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.3rem 0;
}

.rec-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.rec-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.rec-action:hover {
    transform: scale(1.05);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-timeline,
.performance-meter {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-header,
.meter-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-icon,
.meter-icon {
    width: 24px;
    height: 24px;
}

.timeline-title,
.meter-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    min-width: 50px;
}

.timeline-event {
    flex: 1;
}

.event-type {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.event-type.productivity {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.event-type.warning {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.event-type.success {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.event-type.info {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.event-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.score-display {
    text-align: center;
}

.score-circle {
    margin-bottom: 1.5rem;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2ecc71;
}

.score-label {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.breakdown-label {
    font-size: 0.9rem;
    color: #666;
    min-width: 80px;
    text-align: left;
}

.breakdown-bar {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 1s ease;
}

.bar-fill[data-score="94"] {
    width: 94%;
}

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

.bar-fill[data-score="95"] {
    width: 95%;
}

.breakdown-score {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    min-width: 25px;
}

.analytics-footer {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.achievement-badges {
    display: flex;
    gap: 1rem;
}

.achievement-badge {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.achievement-badge:hover {
    transform: scale(1.1);
}

.footer-text {
    flex: 1;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.footer-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.analytics-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.analytics-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 1200px) {
    .analytics-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .productivity-analytics {
        padding: 3rem 1rem;
    }
    
    .analytics-title {
        font-size: 2.2rem;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .analytics-footer {
        padding: 2rem;
    }
    
    .analytics-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Block 4 */
.order-form-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
            padding: 6rem 0;
            margin-top: 4rem;
        }

        .form-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .form-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .header-icon {
            margin-bottom: 2rem;
        }

        .consultation-icon {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .form-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 4rem;
        }

        .form-benefits {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .benefits-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .benefit-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .benefit-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .benefit-content p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.5;
        }

        .form-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
        }

        .form-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e9ecef;
        }

        .security-icon {
            width: 20px;
            height: 20px;
        }

        .security-text {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .consultation-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1rem;
        }

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

        .input-icon {
            position: absolute;
            left: 1rem;
            width: 18px;
            height: 18px;
            z-index: 2;
        }

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

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: white;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

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

        .form-footer {
            margin-top: 1rem;
        }

        .privacy-notice {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 10px;
        }

        .privacy-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .privacy-text {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.4;
        }

        .submit-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            width: 100%;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        }

        .button-icon {
            width: 20px;
            height: 20px;
        }

        .button-text {
            flex: 1;
        }

        .button-arrow {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

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

        .testimonial-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .testimonial-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

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

        .testimonial-content {
            flex: 1;
        }

        .testimonial-quote {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .testimonial-author {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .order-form-section {
                padding: 4rem 0;
            }

            .form-container {
                padding: 0 1rem;
            }

            .form-title {
                font-size: 2rem;
            }

            .form-subtitle {
                font-size: 1.1rem;
            }

            .form-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-benefits,
            .form-card {
                padding: 2rem;
            }

            .testimonial-strip {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem;
            }

            .testimonial-item {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .form-benefits,
            .form-card {
                padding: 1.5rem;
            }

            .form-input {
                padding: 0.875rem 0.875rem 0.875rem 2.75rem;
            }

            .submit-button {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
        }
