
/* Block 1 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    
    .hero-banner {
        min-height: 100vh;
        display: flex;
        align-items: center;
        font-family: 'Inter', sans-serif;
        overflow: hidden;
    }
    
    .hero-background {
        position: relative;
        width: 100%;
        height: 100vh;
        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.4) 50%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 2;
    }
    
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 3;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 4.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        font-weight: 400;
        color: #e8f5e8;
        margin-bottom: 2rem;
        line-height: 1.3;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .hero-description {
        font-size: 1.25rem;
        color: #f0f9f0;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-weight: 400;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }
    
    .hero-description-secondary {
        font-size: 1.1rem;
        color: #e0f0e0;
        line-height: 1.5;
        margin-bottom: 3rem;
        font-weight: 300;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }
    
    .hero-features {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #ffffff;
        font-weight: 500;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .feature-icon {
        color: #4ade80;
        font-size: 1.3rem;
    }
    
    .hero-cta {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }
    
    .cta-button {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 60px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        border: 2px solid transparent;
        min-width: 220px;
        justify-content: center;
        text-shadow: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .cta-button.primary {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        color: #ffffff;
    }
    
    .cta-button.primary:hover {
        background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
        color: #ffffff;
    }
    
    .cta-button.secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
        color: #ffffff;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 4rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        color: #ffffff;
    }
    
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #4ade80;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        color: #e0f0e0;
        margin-top: 0.5rem;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }
    
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.75rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
        }
        
        .hero-description-secondary {
            font-size: 1rem;
        }
        
        .hero-features {
            gap: 1rem;
        }
        
        .feature-item {
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
        }
        
        .hero-cta {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-button {
            width: 100%;
            max-width: 300px;
        }
        
        .hero-stats {
            gap: 2rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .hero-features {
            flex-direction: column;
            align-items: center;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }
    }

/* Block 2 */
.success-stories-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8fdfa 0%, #e8f7f0 100%);
}

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

.header-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, #28a745, #20c997);
color: white;
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.section-title {
font-size: 2.8rem;
font-weight: 700;
color: #1a5f3f;
margin-bottom: 16px;
line-height: 1.2;
}

.section-subtitle {
font-size: 1.2rem;
color: #5a6c57;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

.success-story-card {
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(26, 95, 63, 0.08);
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
}

.success-story-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 60px rgba(26, 95, 63, 0.12);
}

.story-image-wrapper {
position: relative;
height: 280px;
overflow: hidden;
}

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

.success-story-card:hover .story-image {
transform: scale(1.05);
}

.story-badge {
position: absolute;
top: 16px;
right: 16px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 8px 16px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
color: #28a745;
display: flex;
align-items: center;
gap: 6px;
}

.story-content {
padding: 30px;
}

.story-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.story-location {
display: flex;
align-items: center;
gap: 6px;
color: #6c757d;
font-size: 14px;
font-weight: 500;
}

.stars {
color: #ffc107;
font-size: 14px;
}

.story-title {
font-size: 1.4rem;
font-weight: 700;
color: #1a5f3f;
margin-bottom: 20px;
line-height: 1.3;
}

.story-quote {
font-style: italic;
font-size: 1rem;
line-height: 1.7;
color: #495057;
margin-bottom: 25px;
padding-left: 20px;
border-left: 3px solid #28a745;
background: rgba(40, 167, 69, 0.05);
padding: 20px;
border-radius: 10px;
}

.story-author {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 25px;
}

.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
}

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

.author-name {
font-weight: 600;
color: #1a5f3f;
font-size: 15px;
}

.author-title {
font-size: 13px;
color: #6c757d;
}

.story-achievements {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}

.achievement-item {
text-align: center;
padding: 15px;
background: #f8f9fa;
border-radius: 12px;
}

.achievement-number {
font-size: 1.3rem;
font-weight: 700;
color: #28a745;
}

.achievement-label {
font-size: 12px;
font-weight: 600;
color: #6c757d;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.community-metrics {
margin: 60px 0;
}

.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.metric-item {
background: white;
padding: 40px 30px;
border-radius: 16px;
text-align: center;
box-shadow: 0 8px 30px rgba(26, 95, 63, 0.08);
transition: transform 0.3s ease;
}

.metric-item:hover {
transform: translateY(-3px);
}

.metric-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #28a745, #20c997);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 24px;
}

.metric-number {
font-size: 2.2rem;
font-weight: 700;
color: #1a5f3f;
margin-bottom: 8px;
}

.metric-label {
font-size: 1.1rem;
font-weight: 600;
color: #28a745;
margin-bottom: 8px;
}

.metric-description {
font-size: 14px;
color: #6c757d;
line-height: 1.5;
}

.testimonial-carousel-section {
margin: 50px 0;
}

.mini-testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.mini-testimonial {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(26, 95, 63, 0.06);
border-left: 4px solid #28a745;
}

.mini-quote {
font-style: italic;
color: #495057;
margin-bottom: 10px;
line-height: 1.6;
}

.mini-author {
font-size: 13px;
font-weight: 600;
color: #28a745;
}

.cta-section {
background: linear-gradient(135deg, #1a5f3f, #28a745);
border-radius: 20px;
padding: 50px 40px;
text-align: center;
margin-top: 60px;
}

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

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

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

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

.cta-btn.primary {
background: white;
color: #1a5f3f;
}

.cta-btn.primary:hover {
background: #f8f9fa;
color: #1a5f3f;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.cta-btn.secondary:hover {
background: white;
color: #1a5f3f;
}

@media (max-width: 768px) {
.success-stories-section {
padding: 60px 0;
}

.section-title {
font-size: 2.2rem;
}

.story-content {
padding: 25px;
}

.story-achievements {
grid-template-columns: 1fr;
gap: 10px;
}

.metrics-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}

.metric-item {
padding: 30px 20px;
}

.mini-testimonials-grid {
grid-template-columns: 1fr;
gap: 15px;
}

.cta-section {
padding: 40px 20px;
}

.cta-title {
font-size: 1.6rem;
}

.cta-buttons {
flex-direction: column;
align-items: center;
}

.cta-btn {
width: 100%;
max-width: 300px;
justify-content: center;
}
}

/* Block 3 */
.plant-selection-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f5 100%);
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.plant-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.plant-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

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

.category-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.plant-category-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.plant-count {
    background: rgba(255, 255, 255, 0.95);
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.category-content {
    padding: 25px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.category-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #059669;
    font-size: 14px;
    font-weight: 500;
}

.benefit-item i {
    width: 16px;
}

.difficulty-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.difficulty-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 14px;
}

.difficulty-stars {
    display: flex;
    gap: 2px;
}

.difficulty-stars i {
    color: #d1d5db;
    font-size: 14px;
}

.difficulty-stars i.active {
    color: #fbbf24;
}

.difficulty-text {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.plant-finder-tool {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border: 1px solid #f1f5f9;
}

.tool-header {
    text-align: center;
    margin-bottom: 35px;
}

.tool-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tool-subtitle {
    color: #6b7280;
    font-size: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.radio-option label i {
    color: #9ca3af;
    width: 18px;
}

.radio-option input[type="radio"]:checked + label {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #16a34a;
}

.radio-option input[type="radio"]:checked + label i {
    color: #22c55e;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.find-plants-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.find-plants-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.expert-tips-section {
    margin-bottom: 60px;
}

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

.tips-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease;
}

.tip-card:hover {
    transform: translateY(-2px);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tip-icon i {
    color: white;
    font-size: 20px;
}

.tip-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tip-text {
    color: #6b7280;
    line-height: 1.5;
    font-size: 14px;
}

.cta-section {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-btn.primary {
    background: white;
    color: #1e40af;
}

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

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-btn.primary:hover {
    color: #1e40af;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .plant-selection-guide {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .plant-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plant-finder-tool {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 4 */
.process-methodology-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, rgba(25, 135, 84, 0.03) 0%, rgba(40, 167, 69, 0.05) 100%);
    z-index: 1;
}

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

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #198754, #28a745);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.process-overview {
    margin-bottom: 4rem;
}

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

.stat-bubble {
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 135, 84, 0.2);
    border-color: #198754;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #198754;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-top: 0.5rem;
}

.process-phases {
    margin-bottom: 5rem;
}

.phase-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(25, 135, 84, 0.15);
}

.phase-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #198754, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
}

.phase-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.phase-visual {
    position: relative;
}

.phase-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.phase-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(25, 135, 84, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phase-details {
    padding-left: 1rem;
}

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

.phase-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.phase-checklist {
    margin-bottom: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #495057;
}

.checklist-item i {
    color: #198754;
    font-size: 1.1rem;
}

.phase-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tools-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.tool-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tool-tag {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #90caf9;
}

.methodology-benefits {
    margin-bottom: 4rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefits-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 135, 84, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #198754, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

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

.benefit-text {
    color: #6c757d;
    line-height: 1.6;
}

.success-guarantee {
    background: linear-gradient(135deg, #198754, #28a745);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(25, 135, 84, 0.3);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

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

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.guarantee-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.guarantee-stat .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

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

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #198754, #28a745);
    color: white;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(25, 135, 84, 0.4);
    color: white;
}

.cta-btn.secondary {
    background: white;
    color: #198754;
    border-color: #198754;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.secondary:hover {
    background: #198754;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .phase-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .phase-content {
        grid-template-columns: 1fr;
    }
    
    .phase-details {
        padding-left: 0;
    }
    
    .overview-stats {
        gap: 1.5rem;
    }
    
    .guarantee-stats {
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

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

.form-benefits {
    padding-right: 40px;
}

.benefit-highlight {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.highlight-description {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    color: #475569;
    line-height: 1.5;
    font-size: 15px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.trust-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.trust-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.trust-stars {
    color: #fbbf24;
    margin-top: 4px;
    font-size: 14px;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #64748b;
    line-height: 1.5;
}

.garden-order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    z-index: 2;
    color: #9ca3af;
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #fafafa;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: #22c55e;
    background: white;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #22c55e;
}

.checkbox-label {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

.submit-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 20px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.button-subtitle {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 16px;
}

.security-note,
.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.testimonial-preview {
    margin-top: 60px;
}

.preview-content {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card-mini {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    flex-shrink: 0;
}

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

.testimonial-text p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.urgency-banner {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    border: 1px solid #f59e0b;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.banner-icon {
    width: 48px;
    height: 48px;
    background: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.banner-description {
    color: #a16207;
    font-size: 14px;
}

.banner-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-item {
    text-align: center;
    padding: 8px 12px;
    background: #f59e0b;
    border-radius: 8px;
    color: white;
}

.timer-number {
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.timer-label {
    font-size: 10px;
    opacity: 0.9;
}

.timer-separator {
    font-weight: 700;
    color: #92400e;
    font-size: 18px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .form-benefits {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .form-wrapper {
        padding: 32px 24px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .preview-content {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card-mini {
        max-width: 100%;
    }
}
