﻿/* Home */
.featured {
    background:
        radial-gradient(circle at 10px 10px, rgba(1, 34, 65, 0.08) 1.5px, rgba(1, 34, 65, 0) 2.5px),
        var(--white);
    background-size: 32px 32px, auto;
    padding: 80px 20px;
    text-align: center;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.featured p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.services--intro {
    background:
        radial-gradient(circle at 16px 16px, rgba(1, 34, 65, 0.08) 1.5px, rgba(1, 34, 65, 0) 2.5px),
        linear-gradient(135deg, #fff6e5 0%, #f3c2c6 100%);
    background-size: 34px 34px, auto;
}

.services--intro .section-label {
    margin-bottom: 24px;
}

.services--intro .section-text {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 17px;
}

.services--intro .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.services--intro .service-item {
    margin-bottom: 0;
    background: rgba(255, 246, 229, 0.85);
    border-radius: 26px;
    padding: 26px;
    gap: 18px;
    box-shadow: 0 12px 28px rgba(1, 34, 65, 0.12);
    border: 1px solid rgba(1, 34, 65, 0.08);
    flex-direction: column;
    align-items: stretch;
}

.services--intro .service-item.reverse {
    flex-direction: column;
}

.services--intro .service-image {
    max-width: none;
    width: 100%;
    max-height: none;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
}

.services--intro .service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 229, 0.8);
    aspect-ratio: auto;
}

.services--intro .service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.services--intro .service-content {
    max-width: none;
    text-align: left;
    width: 100%;
}

.services--intro .service-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.services--intro .service-content p {
    font-size: 16px;
    line-height: 1.7;
}

.services--intro .service-content .service-cta {
    margin-top: 18px;
}

.differentials {
    background:
        radial-gradient(circle at 12px 12px, rgba(251, 125, 150, 0.12) 2px, rgba(251, 125, 150, 0) 3px),
        var(--white);
    background-size: 36px 36px, auto;
    padding: 90px 20px;
    text-align: center;
}

.differentials h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.differentials p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.differentials-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.differentials-list li {
    position: relative;
    background: var(--bg-light);
    border-radius: 28px 38px 30px 40px;
    padding: 20px 22px;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.differentials-list li:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.testimonials {
    background:
        radial-gradient(circle at 14px 14px, rgba(1, 34, 65, 0.06) 1.5px, rgba(1, 34, 65, 0) 2.5px),
        var(--white);
    background-size: 34px 34px, auto;
    padding: 80px 20px;
}

.map-section {
    background:
        radial-gradient(circle at 12px 12px, rgba(251, 125, 150, 0.12) 2px, rgba(251, 125, 150, 0) 3px),
        var(--white);
    background-size: 36px 36px, auto;
    padding: 80px 20px;
    text-align: center;
}

.map-embed {
    position: relative;
    width: 100%;
    padding-top: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(1, 34, 65, 0.12);
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.faq {
    background: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.faq p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services--intro .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .differentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featured h2 {
        font-size: 26px;
    }

    .featured p {
        font-size: 16px;
    }

    .services--intro .section-text {
        font-size: 16px;
    }

    .services--intro .service-content h2 {
        font-size: 22px;
    }

    .services--intro .service-content p {
        font-size: 15px;
    }

    .differentials h2 {
        font-size: 26px;
    }

    .differentials p {
        font-size: 16px;
    }

    .testimonials {
        padding: 60px 16px;
    }

    .map-section {
        padding: 60px 16px;
    }

    .faq {
        padding: 60px 16px;
    }

    .faq h2 {
        font-size: 26px;
    }

    .faq p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .featured h2 {
        font-size: 38px;
    }

    .services--intro .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .differentials-list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .differentials-list li:nth-child(1),
    .differentials-list li:nth-child(2),
    .differentials-list li:nth-child(6),
    .differentials-list li:nth-child(7) {
        grid-column: span 3;
    }

    .differentials-list li:nth-child(3),
    .differentials-list li:nth-child(4),
    .differentials-list li:nth-child(5) {
        grid-column: span 2;
    }
}
