/* ==========================================
   CLEAN SERVICE PAGE STYLES
   Modern, Simple, Professional Layout
   ========================================== */

/* Service Overview Section */
.service-overview {
    padding: 5rem 0;
    background: #ffffff;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.overview-title .text-brand {
    color: #14B8A6;
}

.overview-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0;
}

.overview-description p {
    margin-bottom: 1rem;
}

.overview-description p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.features-title .text-brand {
    color: #14B8A6;
}

.features-subtitle {
    font-size: 1.0625rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Item */
.feature-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #14B8A6;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #14B8A6, #2DD4BF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke: currentColor;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-content h2 .text-brand {
    color: #14B8A6;
}

.why-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.why-content p:last-of-type {
    margin-bottom: 0;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #374151;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list svg {
    width: 20px;
    height: 20px;
    color: #14B8A6;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Visual */
.why-visual {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-stat {
    text-align: center;
}

.why-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section (Service Pages) */
.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-white {
    background: white;
    color: #14B8A6;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons .btn-white:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons .btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .overview-title {
        font-size: 2.5rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .why-content h2 {
        font-size: 2.25rem;
    }

    .cta-inner h2 {
        font-size: 2.5rem;
    }

    .why-visual {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (min-width: 1024px) {
    .service-overview {
        padding: 6rem 0;
    }

    .features-section {
        padding: 6rem 0;
    }

    .why-section {
        padding: 6rem 0;
    }

    .service-cta {
        padding: 6rem 0;
    }
}
