/* ==========================================================================
   Clarity DevTest — Web Development page (web-development.css)
   Depends on: base.css, home.css
   ========================================================================== */


/* ==========================================================================
   Page body
   ========================================================================== */

.web_development_page_body {
    position: relative;
    isolation: isolate;
    background-image:
        linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 35%),
        url('../images/our_services_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==========================================================================
   Benefits grid
   ========================================================================== */

.web_development_benefits-section {
    padding: 0 0 4rem;
}

.web_development_benefits-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.web_development_benefits-section__item {
    padding: 1.75rem 1.5rem;
    background-color: var(--color-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 18px rgba(0, 32, 49, 0.08);
}

@media (max-width: 900px) {
    .web_development_benefits-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .web_development_benefits-section__grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Approach
   ========================================================================== */

.web_development_approach-section,
.web_development_approach-section__arc {
    --web-development-approach-bg: #EEF7FF;
    --web-development-arc-height: clamp(2rem, 3.5vw, 3.5rem);
}

.web_development_approach-section__arc {
    line-height: 0;
    pointer-events: none;
}

.web_development_approach-section__arc svg {
    display: block;
    width: 100%;
    height: var(--web-development-arc-height);
}

.web_development_approach-section__arc--top {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--web-development-arc-height));
    background-color: transparent;
}

.web_development_approach-section__arc--top path {
    fill: var(--web-development-approach-bg);
}

.web_development_approach-section__arc--bottom {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--web-development-arc-height));
    background-color: var(--color-dark-blue);
}

.web_development_approach-section__arc--bottom path {
    fill: var(--web-development-approach-bg);
}

.web_development_approach-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(to bottom, var(--web-development-approach-bg) 0%, var(--web-development-approach-bg) 100%);
}

.web_development_approach-section__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}


/* ==========================================================================
   Longevity
   ========================================================================== */

.web_development_longevity-section {
    padding: 4rem 0 5rem;
    background-color: var(--color-dark-blue);
}

.web_development_longevity-section__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
