.single-sector {
    min-height: 100vh;
    background-color: #ffffff;
}

.single-sector__container,
.single-sector__hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* HERO */
.single-sector__hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--sector-color) 65%, #111827 35%), #111827);
}

.single-sector__hero-bg {
    position: absolute;
    inset: 0;
}

.single-sector__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.single-sector__hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.single-sector__hero-container {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 80px;
}

.single-sector__hero-content {
    max-width: 768px;
}

.single-sector__back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.single-sector__back-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.single-sector__hero-title {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
}

.single-sector__hero-text {
    max-width: 672px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    line-height: 1.65;
}

.single-sector__hero-text p {
    margin: 0;
}

.single-sector__hero-buttons,
.single-sector__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.single-sector__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.single-sector__button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.single-sector__button--primary {
    border: 0;
    background-color: #61A229;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.single-sector__button--primary:hover {
    background-color: #4f8821;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.single-sector__button--outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: #ffffff;
}

.single-sector__button--outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.single-sector__button--dark {
    border: 2px solid #111827;
    background-color: transparent;
    color: #111827;
}

.single-sector__button--dark:hover {
    background-color: #111827;
    color: #ffffff;
}

.single-sector__button--phone {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    color: #ffffff;
}

.single-sector__button--phone:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* SERVICES */
.single-sector__services {
    padding: 80px 0;
    background-color: #f9fafb;
}

.single-sector__section-heading {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.single-sector__section-title {
    margin: 0 0 16px;
    color: #111827;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.single-sector__section-subtitle {
    max-width: 672px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
}

.single-sector__services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.single-sector__service-card {
    padding: 32px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.single-sector__service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 42px rgba(17, 24, 39, 0.12);
    transform: translateY(-4px);
}

.single-sector__service-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 12px;
    background-color: #61A229;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(97, 162, 41, 0.25);
}

.single-sector__service-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.single-sector__service-title {
    margin: 0 0 12px;
    color: #111827;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.single-sector__service-text {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
}

.single-sector__service-text p {
    margin: 0;
}

/* CAPABILITIES */
.single-sector__capabilities {
    padding: 80px 0;
    background-color: #ffffff;
}

.single-sector__capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

.single-sector__capabilities-title {
    margin: 0 0 24px;
    color: #111827;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.single-sector__capabilities-text {
    margin-bottom: 32px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.65;
}

.single-sector__capabilities-text p {
    margin: 0;
}

.single-sector__capabilities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.single-sector__capability-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
}

.single-sector__capability-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #61A229;
}

.single-sector__capabilities-media {
    position: relative;
}

.single-sector__capabilities-image {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(17, 24, 39, 0.25);
}

.single-sector__capabilities-badge {
    position: absolute;
    left: -24px;
    bottom: -24px;
    padding: 20px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.16);
}

.single-sector__capabilities-badge-number {
    margin: 0 0 4px;
    color: #61A229;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.single-sector__capabilities-badge-text {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

/* PROJECTS */
.single-sector__projects {
    padding: 80px 0;
    background-color: #f9fafb;
}

.single-sector__projects-slider {
    position: relative;
}

.single-sector__projects-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 4px 12px;
}

.single-sector__projects-track::-webkit-scrollbar {
    display: none;
}

.single-sector__project-card {
    flex: 0 0 calc((100% - 64px) / 3);
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background-color: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.single-sector__project-card:hover {
    color: inherit;
    text-decoration: none;
    box-shadow: 0 20px 42px rgba(17, 24, 39, 0.16);
    transform: translateY(-4px);
}

.single-sector__project-image-wrap {
    position: relative;
    height: 208px;
    overflow: hidden;
}

.single-sector__project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-sector__project-card:hover .single-sector__project-image {
    transform: scale(1.1);
}

.single-sector__project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.single-sector__project-content {
    padding: 20px;
}

.single-sector__project-title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.25s ease;
}

.single-sector__project-card:hover .single-sector__project-title {
    color: #61A229;
}

.single-sector__project-text {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.single-sector__slider-button {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background-color: #ffffff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
    transform: translateY(-50%);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.single-sector__slider-button:hover {
    background-color: #61A229;
    color: #ffffff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.24);
}

.single-sector__slider-button--prev {
    left: -24px;
}

.single-sector__slider-button--next {
    right: -24px;
}

.single-sector__slider-button.is-hidden {
    display: none;
}

.single-sector__projects-more {
    margin-top: 40px;
    text-align: center;
}

/* CTA */
.single-sector__cta {
    padding: 80px 0;
    background-color: #111827;
}

.single-sector__cta-container {
    width: 100%;
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.single-sector__cta-title {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.single-sector__cta-text {
    max-width: 672px;
    margin: 0 auto 32px;
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.65;
}

.single-sector__cta-buttons {
    justify-content: center;
    margin-bottom: 0;
}

.single-sector__cta-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
    color: #ffffff;
}

.single-sector__cta-stat {
    text-align: center;
}

.single-sector__cta-stat-number {
    margin: 0 0 8px;
    color: #61A229;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
}

.single-sector__cta-stat-text {
    margin: 0;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (min-width: 640px) {
    .single-sector__container,
    .single-sector__hero-container,
    .single-sector__cta-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .single-sector__hero-buttons,
    .single-sector__cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .single-sector__hero-title {
        font-size: 60px;
    }

    .single-sector__section-title,
    .single-sector__capabilities-title,
    .single-sector__cta-title {
        font-size: 36px;
    }

    .single-sector__services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .single-sector__capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-sector__cta-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .single-sector__container,
    .single-sector__hero-container,
    .single-sector__cta-container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 1023px) {
    .single-sector__project-card {
        flex-basis: calc((100% - 32px) / 2);
    }

    .single-sector__slider-button--prev {
        left: -12px;
    }

    .single-sector__slider-button--next {
        right: -12px;
    }
}

@media (max-width: 767px) {
    .single-sector__hero {
        min-height: auto;
    }

    .single-sector__hero-container {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 72px;
    }

    .single-sector__hero-title {
        font-size: 38px;
    }

    .single-sector__hero-text {
        font-size: 18px;
    }

    .single-sector__hero-buttons,
    .single-sector__cta-buttons {
        flex-direction: column;
    }

    .single-sector__button {
        width: 100%;
    }

    .single-sector__services,
    .single-sector__capabilities,
    .single-sector__projects,
    .single-sector__cta {
        padding: 64px 0;
    }

    .single-sector__section-heading {
        margin-bottom: 40px;
    }

    .single-sector__capabilities-badge {
        position: relative;
        left: auto;
        bottom: auto;
        width: calc(100% - 32px);
        margin: -40px auto 0;
    }

    .single-sector__projects-track {
        gap: 20px;
        padding-bottom: 8px;
    }

    .single-sector__project-card {
        flex-basis: 86%;
    }

    .single-sector__slider-button {
        width: 42px;
        height: 42px;
    }

    .single-sector__slider-button--prev {
        left: 4px;
    }

    .single-sector__slider-button--next {
        right: 4px;
    }

    .single-sector__cta-stats {
        margin-top: 40px;
        gap: 24px;
    }

    .single-sector__cta-stat-number {
        font-size: 36px;
    }
}