/* Deep Cleaning Page Styles */

.deep-hero {
    background: #c0eafc;
    padding: 4rem 2rem;
}

.deep-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.deep-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-bottom-deep {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-features-deep {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-feature-deep {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #333;
}

.checkmark-deep {
    font-size: 1.1rem;
}

.cta-deep-hero {
    display: inline-block;
    background: #ffd93d;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cta-deep-hero:hover {
    background: #ffce00;
    transform: scale(1.05);
}

.intro-deep {
    padding: 3rem 2rem;
    background: #f5f5f5;
}

.intro-text-deep {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.tasks-deep {
    padding: 4rem 2rem;
    background: white;
}

.tasks-grid-deep {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.task-card-deep {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.task-img-deep {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-img-deep img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.task-card-deep h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.divider {
    display: block;
    color: #999;
    margin: 0.5rem 0;
}

.task-list-deep {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.85rem;
    color: #666;
}

.task-list-deep li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.task-list-deep li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #45b0e6;
    font-weight: bold;
}

.task-list-deep li.task-highlight {
    color: #5a8f00;
    font-weight: 600;
}

.logo-divider {
    text-align: center;
    margin-top: 3rem;
}

.logo-divider img {
    max-width: 400px;
    width: 100%;
}

.when-deep {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #bceaf5 0%, #e4cef0 100%);
}

.when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 2rem auto;
}

.when-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.when-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
}

.when-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.when-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.when-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.cta-when {
    text-align: center;
    margin-top: 2rem;
}

.cta-when-btn {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: 3px solid #a78bce;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-when-btn:hover {
    background: #a78bce;
    color: white;
    transform: scale(1.05);
}

.why-deep {
    padding: 4rem 2rem;
    background: white;
}

.why-grid-deep {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 3px solid #333;
    border-radius: 10px;
}

.why-card-deep {
    text-align: center;
    padding: 1rem;
}

.why-card-deep h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.why-card-deep p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.pricing-deep {
    padding: 4rem 2rem;
    background: white;
}

.pricing-grid-deep {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.price-card-deep {
    background: #fff9e6;
    border: 3px solid #e6d97a;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.price-card-deep h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.price-subtext-deep {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price-amount-deep {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.price-extra-deep {
    font-size: 0.95rem;
    color: #333;
    margin: 0.5rem 0;
}

.pricing-disclaimer {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.pricing-disclaimer p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.pricing-disclaimer strong {
    color: #664d03;
}

.cta-agent {
    text-align: center;
    margin-top: 2rem;
}

.cta-agent-btn {
    display: inline-block;
    background: #7c6fd6;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-agent-btn:hover {
    background: #6759c0;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .tasks-grid-deep {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .when-grid,
    .why-grid-deep {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-deep {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .deep-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-bottom-deep {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tasks-grid-deep,
    .when-grid,
    .why-grid-deep,
    .pricing-grid-deep {
        grid-template-columns: 1fr;
    }
    
    .why-grid-deep {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .deep-hero {
        padding: 3rem 1rem;
    }
    
    .deep-hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .task-card-deep,
    .when-card,
    .why-card-deep {
        padding: 1.5rem 1rem;
    }
}