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

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(40, 53, 147, 0.75) 50%, rgba(88, 86, 214, 0.65) 100%);
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-overlay,
    .hero-content {
        position: absolute;
    }

    .hero-content {
        z-index: 3;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .hero-text-wrapper {
        text-align: center;
        color: white;
        animation: heroFadeIn 1.2s ease-out;
    }

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

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        font-weight: 400;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .hero-btn {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hero-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
        color: white;
        text-decoration: none;
    }

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

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

    @media (max-width: 768px) {
        .hero-banner {
            min-height: 80vh;
        }
        
        .hero-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        
        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        
        .hero-btn {
            padding: 15px 30px;
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.9rem;
        }
        
        .hero-btn {
            padding: 14px 25px;
            font-size: 0.95rem;
        }
    }

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

.productivity-framework::before {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
}

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

.framework-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.framework-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.framework-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.framework-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.framework-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .framework-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .framework-subtitle {
        text-align: center;
    }
    
    .framework-stats {
        justify-content: center;
    }
    
    .framework-image {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .productivity-framework {
        padding: 60px 0;
    }
    
    .framework-title {
        font-size: 1.8rem;
    }
    
    .framework-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .framework-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .framework-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        align-self: center;
    }
}

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

.workspace-tools-showcase::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 99, 132, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

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

.tool-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    position: relative;
}

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

.tool-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.tool-card:hover .tool-image {
    transform: scale(1.1);
}

.tool-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    top: 15px;
    left: 15px;
}

.tool-badge.trending {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #2d3748;
}

.tool-badge.new {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.tool-content {
    padding: 25px;
}

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

.tool-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: #f6ad55;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.85rem;
    color: #718096;
}

.tool-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f7fafc;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
}

.feature-item i {
    color: #667eea;
    font-size: 0.75rem;
}

.tools-cta-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.tools-cta-wrapper::before {
    content: '';
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    z-index: 1;
}

.tools-cta-content {
    z-index: 2;
    position: relative;
}

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

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.tools-cta-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tools-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #5a67d8;
}

.tools-cta-image {
    z-index: 2;
    position: relative;
}

.cta-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .tools-main-title {
        font-size: 2.3rem;
    }
    
    .tools-cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .workspace-tools-showcase {
        padding: 60px 0;
    }
    
    .tools-main-title {
        font-size: 1.9rem;
    }
    
    .tools-subtitle {
        font-size: 1rem;
    }
    
    .tool-image-wrapper {
        height: 200px;
    }
    
    .tool-content {
        padding: 20px;
    }
    
    .tools-cta-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

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

.order-form-section::before {
    content: '';
    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="%23e0e7ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    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-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-icon i {
    font-size: 32px;
    color: white;
}

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

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

.form-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
}

.benefit-item i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.order-form {
    margin-top: 40px;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i {
    color: #667eea;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

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

.form-control::placeholder {
    color: #a0aec0;
}

.input-feedback {
    height: 20px;
    font-size: 0.85rem;
    color: #e53e3e;
    margin-top: 5px;
}

.form-checkbox-wrapper {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    background: white;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.checkbox-text {
    color: #4a5568;
}

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

.checkbox-text a:hover {
    text-decoration: underline;
}

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

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

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

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.form-security-note i {
    color: #38a169;
}

.testimonial-preview {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-content {
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 25px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

.author-title {
    font-size: 0.9rem;
    color: #718096;
    margin: 2px 0;
}

.author-rating {
    color: #f6ad55;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-benefits {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }
    
    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 50px 0;
    }
    
    .form-wrapper {
        margin: 0 10px;
        padding: 25px 15px;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
}
