
/* Block 1 */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

.hero-content {
    z-index: 2;
    padding: 4rem 0;
    color: white;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-additional-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-hero, .btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    color: white;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Block 2 */
.rental-process-guide {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.rental-process-guide::before {
    content: '';
    background: linear-gradient(45deg, rgba(63, 81, 181, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.rental-process-guide .container {
    position: relative;
    z-index: 2;
}

.process-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-description {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-additional {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 0;
}

.process-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

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

.process-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.process-image-container:hover .process-main-image {
    transform: scale(1.05);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 80px 0;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}

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

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

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-text {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

.process-benefits {
    margin: 80px 0;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(99, 102, 241, 0.12);
}

.benefit-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.benefit-content {
    padding: 2rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.process-cta::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary, .cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button-primary:hover {
    background: #f7fafc;
    color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .rental-process-guide {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 2.2rem;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 60px 0;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .process-benefits {
        margin: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary, .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 3 */
.client-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
}

.testimonials-hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.testimonials-stats {
    margin-bottom: 80px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    margin-bottom: 10px;
}

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

.testimonials-grid {
    margin-bottom: 80px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e2e8f0;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.client-location {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-badge i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.testimonials-video-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4f46e5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-content {
    padding-left: 40px;
}

.video-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.video-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

.testimonials-cta {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(124, 58, 237, 0.9));
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 60px 40px;
    width: 100%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn-primary, .cta-btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn-primary {
    background: white;
    color: #4f46e5;
}

.cta-btn-primary:hover {
    background: #f8fafc;
    color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.guarantee-item i {
    font-size: 1.2rem;
    color: #fbbf24;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .video-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Block 4 */
.pricing-packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.pricing-packages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
}

.pricing-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pricing-hero-image:hover {
    transform: translateY(-10px);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: #3b82f6;
}

.toggle-input:checked + .toggle-slider::before {
    transform: translateX(30px);
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pricing-grid {
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.basic-plan {
    border-color: #e2e8f0;
}

.premium-plan.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

.enterprise-plan {
    border-color: #8b5cf6;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.premium-badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.plan-icon i {
    font-size: 2rem;
    color: white;
}

.enterprise-plan .plan-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

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

.plan-pricing {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    position: relative;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.yearly-price {
    display: none;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.yearly-period {
    display: none;
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}

.discount {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    min-width: 20px;
}

.feature-item span {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-cta {
    text-align: center;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    width: 100%;
    justify-content: center;
}

.plan-button:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.premium-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.premium-button:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.enterprise-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.enterprise-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.pricing-comparison {
    margin-bottom: 60px;
    text-align: center;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}

.comparison-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-guarantees {
    margin-bottom: 60px;
}

.guarantee-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.guarantee-item:hover {
    transform: translateY(-8px);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.guarantee-icon i {
    font-size: 1.8rem;
    color: white;
}

.guarantee-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.guarantee-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-faq {
    margin-bottom: 80px;
}

.faq-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-content {
    padding-left: 40px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.faq-question i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.faq-answer {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 32px;
}

.pricing-cta {
    position: relative;
    background: #1e293b;
    border-radius: 30px;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.8));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cta-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    color: white;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #3b82f6;
}

.cta-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .toggle-wrapper {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .premium-plan.featured {
        transform: none;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
    }
    
    .plan-icon i {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .faq-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Toggle functionality */
.toggle-input:checked ~ .pricing-grid .monthly-price {
    display: none;
}

.toggle-input:checked ~ .pricing-grid .yearly-price {
    display: inline;
}

.toggle-input:checked ~ .pricing-grid .monthly-period {
    display: none;
}

.toggle-input:checked ~ .pricing-grid .yearly-period {
    display: inline;
}

/* Block 5 */
.contact-order-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.form-wrapper {
    position: relative;
    z-index: 10;
}

.form-content-grid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.form-info-section {
    padding: 60px 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header {
    margin-bottom: 40px;
}

.info-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: 24px;
}

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

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 400;
}

.info-benefits {
    flex: 1;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: #667eea;
}

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

.benefit-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.4;
    margin: 0;
}

.info-testimonial {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

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

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

.author-name {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.author-role {
    display: block;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.form-section {
    padding: 60px 50px;
    background: white;
    display: flex;
    align-items: center;
}

.form-container {
    width: 100%;
}

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

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.contact-form {
    max-width: 100%;
}

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

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

.field-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.field-label i {
    margin-right: 8px;
    color: #667eea;
    width: 16px;
}

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

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

.form-input:focus + .field-border {
    transform: scaleX(1);
}

.field-border {
    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-submit {
    margin-bottom: 32px;
}

.submit-button {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    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;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.button-text {
    margin-right: 12px;
}

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

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

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

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.privacy-notice i {
    margin-right: 8px;
    color: #667eea;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.trust-item i {
    margin-right: 6px;
    color: #10b981;
    font-size: 0.8rem;
}

.form-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.background-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .form-content-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .form-info-section,
    .form-section {
        padding: 40px 30px;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-order-form {
        padding: 60px 0;
    }
    
    .form-info-section,
    .form-section {
        padding: 30px 20px;
    }
    
    .info-title {
        font-size: 1.6rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .benefit-row {
        margin-bottom: 24px;
    }
    
    .field-group {
        margin-bottom: 24px;
    }
}
