/* Minimalist CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header Styles */
.header {
    background-color: #ffffff;
}

.home .header {
    background-color: #ffffff;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
}

.header__nav {
    width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.header__nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex: 1;
}

@media (min-width: 1024px) {
    .header__logo {
        flex: 1;
    }
}

.header__logo-link {
    display: inline-block;
    margin: -0.375rem;
    padding: 0.375rem;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 1.25rem;
}

.header__logo-link:hover {
    color: #374151;
}

.header__logo-image {
    display: block;
    height: 2rem;
    width: auto;
}

.header__menu {
    display: none;
    gap: 3rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .header__menu {
        display: flex;
    }
}

.header__menu-link {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home .header__menu-link {
    color: #000000;
}

.home .header__menu-link:hover {
    color: #374151;
}

.header__menu-link:hover {
    color: #374151;
}

.header__actions {
    display: none;
    flex: 1;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .header__actions {
        display: flex;
        gap: 1rem;
    }
}

.header__action-link {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home .header__action-link {
    color: #000000;
}

.home .header__action-link:hover {
    color: #374151;
}

.header__action-link:hover {
    color: #374151;
}

.header__action-link--linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__action-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.header__action-icon[src] {
    color: currentColor;
}

/* Mobile Menu Toggle Button */
.header__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin: -0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    transition: color 0.2s ease;
}

@media (min-width: 1024px) {
    .header__mobile-toggle {
        display: none;
    }
}

.header__mobile-toggle:hover {
    color: #374151;
}

.header__mobile-toggle:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.header__mobile-toggle-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.header__mobile-toggle[aria-expanded="true"] .header__mobile-toggle-icon {
    display: none;
}

/* Mobile Menu */
.header__mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.header__mobile-menu[aria-hidden="false"] {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.header__mobile-menu-content {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 24rem;
    background-color: #ffffff;
    padding: 1.5rem;
    overflow-y: auto;
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.header__mobile-menu[aria-hidden="false"] .header__mobile-menu-content {
    transform: translateX(0);
}

.header__mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header__mobile-menu-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header__mobile-menu-link:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.header__mobile-menu-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.header__mobile-menu-linkedin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header__mobile-menu-linkedin:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.header__mobile-menu-linkedin-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    color: currentColor;
}

/* Banner Styles */
.banner {
    background-color: #111827;
    background-image: url('images/company-5.png');
    background-size: cover;
    background-position: top 20% center;
    background-repeat: no-repeat;
}

.banner__header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
}

.banner__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .banner__nav {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.banner__logo {
    flex: 1;
}

.banner__logo-link {
    display: inline-block;
    margin: -0.375rem;
    padding: 0.375rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.banner__logo-image {
    display: block;
    height: 2rem;
    width: auto;
}

.banner__menu {
    display: none;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .banner__menu {
        display: flex;
    }
}

.banner__menu-link {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.banner__menu-link:hover {
    color: #d1d5db;
}

.banner__actions {
    display: none;
    flex: 1;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .banner__actions {
        display: flex;
    }
}

.banner__action-link {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.banner__action-link:hover {
    color: #d1d5db;
}

.banner__action-link--linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__action-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.banner__hero {
    position: relative;
    overflow: hidden;
    padding-top: 3.5rem;
    background-color: rgba(17, 24, 39, 0.8);
}

.banner__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: saturate(0%) brightness(0.7) contrast(1.1);
}

.banner__content {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 64rem;
    padding: 4rem 0 4rem;
}

@media (min-width: 640px) {
    .banner__content {
        padding: 5rem 0 5rem;
    }
}

@media (min-width: 1024px) {
    .banner__content {
        padding: 6rem 0 6rem;
    }
}

.banner__text {
    text-align: center;
}

.banner__title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-wrap: balance;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .banner__title {
        font-size: 4.5rem;
    }
}

.banner__description {
    margin-top: 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-wrap: pretty;
    color: rgb(218 218 218);
    line-height: 1.75;
}

@media (min-width: 640px) {
    .banner__description {
        font-size: 1.25rem;
        line-height: 2;
    }
}

.banner__cta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.banner__button {
    display: inline-block;
    border-radius: 0.375rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.banner__button--primary {
    background-color: #750101;
    color: #ffffff;
}

.banner__button--primary:hover {
    background-color: #8a0101;
}

.banner__button--primary:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

.banner__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.banner__button--secondary:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.banner__button-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    margin-bottom: 0.1rem;
}

/* Clients Section */
.clients {
    background-color: #ffffff;
    padding: 4rem 0 6rem;
}

@media (min-width: 640px) {
    .clients {
        padding: 4rem 0 8rem;
    }
}

.clients__container {
    margin: 0 auto;
    padding: 0 1.5rem;
}

.clients__container.container {
    max-width: unset;
}

@media (min-width: 1024px) {
    .clients__container {
        padding: 0 2rem;
    }
}

.clients__title {
    text-align: center;
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 600;
    color: #000000;
}

.clients__wrapper {
    margin-top: 2.5rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients__track {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: fit-content;
    will-change: transform;
    animation: scroll-left 30s linear infinite !important;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients__logo {
    object-fit: contain;
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 10rem;
    max-height: 3rem;
}

/* About Section */
.about {
    overflow: hidden;
    background-color: #ffffff;
    padding: 6rem 0;
}

@media (min-width: 640px) {
    .about {
        padding: 8rem 0;
    }
}

.about__container {
    max-width: 42rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .about__container {
        max-width: 1280px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.about__intro {
    max-width: 60rem;
}

.about__label {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #750101;
    margin: 0;
}

.about__title {
    margin-top: 0.5rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-wrap: pretty;
    color: #000000;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .about__title {
        font-size: 3rem;
    }
}

.about__description {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    line-height: 2;
    text-wrap: balance;
    color: #374151;
}

.about__content {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about__content {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: 4rem;
    }
}

.about__mission {
    padding-right: 0;
}

@media (min-width: 1024px) {
    .about__mission {
        padding-right: 2rem;
    }
}

.about__mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-wrap: pretty;
    color: #000000;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.about__mission-title:first-child {
    margin-top: 0;
}

.about__mission-text {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-top: 0;
}

.about__mission-text+.about__mission-text {
    margin-top: 1.5rem;
}

.about__gallery {
    padding-top: 4rem;
}

@media (min-width: 1024px) {
    .about__gallery {
        grid-row: span 2;
        margin-right: -4rem;
    }
}

@media (min-width: 1280px) {
    .about__gallery {
        margin-right: auto;
    }
}

.about__gallery-grid {
    margin-left: -2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .about__gallery-grid {
        margin-left: -4rem;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .about__gallery-grid {
        margin-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1280px) {
    .about__gallery-grid {
        gap: 2rem;
    }
}

.about__gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
}

.about__gallery-item--offset {
    margin-top: -2rem;
}

@media (min-width: 1024px) {
    .about__gallery-item--offset {
        margin-top: -10rem;
    }
}

.about__gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stats {
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .about__stats {
        margin-top: 0;
        grid-column: 1;
    }
}

.about__stats-label {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

.about__stats-divider {
    margin-top: 1.5rem;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

.about__stats-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 1rem;
}

@media (min-width: 640px) {
    .about__stats-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about__stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px dotted #e5e7eb;
    padding-bottom: 1rem;
}

.about__stat-item--last-mobile {
    border-bottom: 1px dotted #e5e7eb;
}

@media (min-width: 640px) {
    .about__stat-item--last-mobile {
        border-bottom: none;
    }
}

.about__stat-item:last-child {
    border-bottom: none;
}

.about__stat-label {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #4b5563;
    order: 2;
}

.about__stat-value {
    order: 1;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #000000;
}

/* Craftsmanship Section */
.craftsmanship {
    background-color: #ffffff;
    padding: 6rem 0;
}

@media (min-width: 640px) {
    .craftsmanship {
        padding: 8rem 0;
    }
}

.craftsmanship__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .craftsmanship__container {
        padding: 0 2rem;
    }
}

.craftsmanship__header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .craftsmanship__header {
        margin-bottom: 5rem;
    }
}

.craftsmanship__title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
}

@media (min-width: 640px) {
    .craftsmanship__title {
        font-size: 3rem;
    }
}

.craftsmanship__subtitle {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
}

.craftsmanship__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .craftsmanship__content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.craftsmanship__item {
    text-align: center;
}

.craftsmanship__item-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.craftsmanship__icon-svg {
    width: 2rem;
    height: 2rem;
    display: block;
}

.craftsmanship__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1rem;
}

.craftsmanship__item-text {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #4b5563;
}

.craftsmanship__cta {
    text-align: center;
    margin-top: 5rem;
}

@media (min-width: 1024px) {
    .craftsmanship__cta {
        margin-top: 6rem;
    }
}

.craftsmanship__cta-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .craftsmanship__cta-title {
        font-size: 2.25rem;
    }
}

.craftsmanship__button {
    display: inline-block;
    border-radius: 0.375rem;
    background-color: #750101;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.craftsmanship__button:hover {
    background-color: #8a0101;
}

.craftsmanship__button:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

/* Features Section */
.features {
    background-color: #ffffff;
    padding: 6rem 0;
}

@media (min-width: 640px) {
    .features {
        padding: 8rem 0;
    }
}

.features__container {
    max-width: 1280px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .features__container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.features__header {
    margin: 0 auto;
    max-width: 42rem;
}

@media (min-width: 1024px) {
    .features__header {
        margin-left: 0;
    }
}

.features__title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-wrap: pretty;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 640px) {
    .features__title {
        font-size: 3rem;
    }
}

.features__description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 2;
    color: #4b5563;
}

.features__content {
    margin: 0 auto;
    margin-top: 4rem;
    max-width: 42rem;
}

@media (min-width: 640px) {
    .features__content {
        margin-top: 5rem;
    }
}

@media (min-width: 1024px) {
    .features__content {
        margin-top: 6rem;
        max-width: none;
    }
}

.features__list {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 4rem;
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .features__list {
        max-width: none;
        grid-template-columns: repeat(3, 1fr);
    }
}

.features__item {
    display: flex;
    flex-direction: column;
}

.features__item-title {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.features__icon {
    margin-bottom: 1.5rem;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #750101;
}

.features__icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    display: block;
}

.features__icon-svg[src] {
    filter: brightness(0) invert(1);
}

.features__item-content {
    margin-top: 0.25rem;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-left: 0;
}

.features__item-text {
    flex: 1 1 auto;
    margin: 0;
}

.features__item-link-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.features__item-link {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #750101;
    text-decoration: none;
    transition: color 0.2s ease;
}

.features__item-link:hover {
    color: #750101;
}

.features__item-link:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Sectors Section */
.sectors {
    background-color: #ffffff;
    padding: 6rem 0;
}

@media (min-width: 640px) {
    .sectors {
        padding: 8rem 0;
    }
}

.sectors__container {
    max-width: 1280px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: grid;
    gap: 5rem;
}

@media (min-width: 1024px) {
    .sectors__container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .sectors__container {
        grid-template-columns: 1fr 2fr;
        gap: 5rem;
    }
}

.sectors__header {
    max-width: 36rem;
}

.sectors__title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-wrap: pretty;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 640px) {
    .sectors__title {
        font-size: 2.25rem;
    }
}

.sectors__description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 2;
    color: #4b5563;
}

.sectors__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    column-gap: 2rem;
    row-gap: 3rem;
}

@media (min-width: 640px) {
    .sectors__list {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 4rem;
    }
}


.sectors__item {
    margin: 0;
}

.sectors__item-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.sectors__icon {
    display: flex;
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #750101;
    flex-shrink: 0;
}

.sectors__icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    display: block;
}

.sectors__icon-svg[src] {
    filter: brightness(0) invert(1);
}

.sectors__item-title {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #000000;
    margin: 0;
}

.sectors__item-role {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #750101;
    margin: 0;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact {
    position: relative;
    background-color: #ffffff;
    padding: 6rem 1.5rem 3rem;
}

@media (min-width: 640px) {
    .contact {
        padding: 8rem 1.5rem 4rem;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .contact__header {
        margin-bottom: 5rem;
    }
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact__info-section-title {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #000000;
    margin: 0 0 1rem 0;
}

.contact__info-item {
    display: flex;
    gap: 1.5rem;
}

.contact__info-icon {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #750101;
    flex-shrink: 0;
}

.contact__info-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    display: block;
}

.contact__info-icon-svg[src] {
    filter: brightness(0) invert(1);
}

.contact__info-content {
    flex: 1;
}

.contact__info-title {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #000000;
    margin: 0 0 0.5rem 0;
}

.contact__info-link {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-top: 0.5rem;
}

.contact__info-link:hover {
    color: #750101;
}

.contact__info-link:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.contact__info-text {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #000000;
    margin: 0.5rem 0 0 0;
}

.contact__form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact__form-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 2rem;
}

.contact__title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
}

@media (min-width: 640px) {
    .contact__title {
        font-size: 3rem;
    }
}

.contact__description {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    line-height: 2;
    color: #4b5563;
}

.contact__form {
    margin-top: 2rem;
}

.contact__fields {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact__fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact__field {
    display: block;
}

.contact__field--full {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .contact__field--full {
        grid-column: span 2;
    }
}

.contact__label {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.contact__input-wrapper {
    margin-top: 0.625rem;
}

.contact__input,
.contact__textarea {
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    background-color: #ffffff;
    padding: 0.5rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    outline: 1px solid #d1d5db;
    outline-offset: -1px;
    border: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #9ca3af;
}

.contact__input:focus,
.contact__textarea:focus {
    outline: 2px solid #750101;
    outline-offset: -2px;
}

.contact__phone-wrapper {
    display: flex;
    border-radius: 0.375rem;
    background-color: #ffffff;
    outline: 1px solid #d1d5db;
    outline-offset: -1px;
}

.contact__phone-wrapper:has(input:focus-within) {
    outline: 2px solid #750101;
    outline-offset: -2px;
}

.contact__phone-select-wrapper {
    display: grid;
    flex-shrink: 0;
    grid-template-columns: 1fr;
    position: relative;
}

.contact__phone-select {
    grid-column-start: 1;
    grid-row-start: 1;
    width: 100%;
    appearance: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1.75rem 0.5rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #6b7280;
    border: none;
    background: transparent;
}

.contact__phone-select:focus {
    outline: 2px solid #750101;
    outline-offset: -2px;
}

@media (min-width: 640px) {
    .contact__phone-select {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}

.contact__phone-select-icon {
    pointer-events: none;
    grid-column-start: 1;
    grid-row-start: 1;
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    align-self: center;
    justify-self: end;
    color: #6b7280;
}

@media (min-width: 640px) {
    .contact__phone-select-icon {
        width: 1rem;
        height: 1rem;
    }
}

.contact__phone-input {
    display: block;
    min-width: 0;
    flex-grow: 1;
    padding: 0.375rem 0.75rem 0.375rem 0.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    border: none;
    background: transparent;
}

.contact__phone-input::placeholder {
    color: #9ca3af;
}

.contact__phone-input:focus {
    outline: none;
}

@media (min-width: 640px) {
    .contact__phone-input {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}

.contact__textarea {
    resize: vertical;
}

.contact__file {
    display: block;
    width: 100%;
    padding: 0.5rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
}

.contact__file:focus {
    outline: 2px solid #750101;
    outline-offset: -2px;
    border-color: #750101;
}

.contact__file::file-selector-button {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    background-color: transparent;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact__file::file-selector-button:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #000000;
}

.contact__file::file-selector-button:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

.contact__field--checkbox {
    display: flex;
    column-gap: 1rem;
}

.contact__checkbox-wrapper {
    display: flex;
    column-gap: 1rem;
    align-items: flex-start;
}

.contact__checkbox-toggle-wrapper {
    display: flex;
    height: 1.5rem;
    align-items: center;
}

.contact__checkbox-toggle {
    display: flex;
    width: 2rem;
    flex: none;
    cursor: pointer;
    border-radius: 9999px;
    background-color: #e5e7eb;
    padding: 1px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    outline: 1px solid rgba(17, 24, 39, 0.05);
    outline-offset: 0;
    transition: background-color 0.2s ease-in-out;
    border: none;
}

.contact__checkbox-toggle:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

.contact__checkbox-toggle-slider {
    display: block;
    width: 1rem;
    height: 1rem;
    transform: translateX(0);
    border-radius: 9999px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    outline: 1px solid rgba(17, 24, 39, 0.05);
    transition: transform 0.2s ease-in-out;
}

.contact__checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #4b5563;
}

.contact__checkbox-link {
    font-weight: 600;
    color: #750101;
    text-decoration: none;
}

.contact__submit-wrapper {
    margin-top: 2.5rem;
}

.contact__submit {
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    background-color: #750101;
    padding: 0.875rem 1.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact__submit:hover {
    background-color: #8a0101;
}

.contact__submit:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

/* Contact Form 7 Styling */
.contact__form-wrapper .wpcf7 {
    margin-top: 2rem;
}

.contact__form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
}

.contact__form-wrapper .wpcf7-form > p {
    margin: 0;
}

.contact__form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.625rem;
}

.contact__form-wrapper .wpcf7-form-control-wrap {
    display: block;
    margin-top: 0.625rem;
}

.contact__form-wrapper .wpcf7-form-control {
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    background-color: #ffffff;
    padding: 0.5rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    outline: 1px solid #d1d5db;
    outline-offset: -1px;
    border: none;
    box-sizing: border-box;
}

.contact__form-wrapper .wpcf7-form-control::placeholder {
    color: #9ca3af;
}

.contact__form-wrapper .wpcf7-form-control:focus {
    outline: 2px solid #750101;
    outline-offset: -2px;
}

.contact__form-wrapper .wpcf7-form-control.wpcf7-not-valid {
    outline-color: #dc2626;
    border-color: #dc2626;
}

.contact__form-wrapper .wpcf7-form-control.wpcf7-not-valid:focus {
    outline-color: #dc2626;
}

.contact__form-wrapper .wpcf7-textarea {
    resize: vertical;
    min-height: 6rem;
}

.contact__form-wrapper .wpcf7-file {
    display: block;
    width: 100%;
    padding: 0.5rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
}

.contact__form-wrapper .wpcf7-file:focus {
    outline: 2px solid #750101;
    outline-offset: -2px;
    border-color: #750101;
}

.contact__form-wrapper .wpcf7-file::file-selector-button {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    background-color: transparent;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact__form-wrapper .wpcf7-file::file-selector-button:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #000000;
}

.contact__form-wrapper .wpcf7-file::file-selector-button:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

.contact__form-wrapper .wpcf7-form > p:has(.wpcf7-submit) {
    position: relative;
    display: block;
}

.contact__form-wrapper .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    background-color: #750101;
    padding: 0.875rem 1.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 0.5rem;
}

.contact__form-wrapper .wpcf7-submit:hover {
    background-color: #8a0101;
}

.contact__form-wrapper .wpcf7-submit:focus-visible {
    outline: 2px solid #750101;
    outline-offset: 2px;
}

.contact__form-wrapper .wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Form 7 Error Messages */
.contact__form-wrapper .wpcf7-not-valid-tip {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #dc2626;
    font-weight: 500;
}

.contact__form-wrapper .wpcf7 form .wpcf7-response-output {
    margin: 0.25rem 0 0 0;
    padding: 1rem;
    border: 2px solid #00a0d2;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    background-color: #eff6ff;
    color: #1e40af;
    grid-column: span 2;
    width: 100%;
}

.contact__form-wrapper .wpcf7-response-output.wpcf7-validation-errors {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact__form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.contact__form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ng,
.contact__form-wrapper .wpcf7-response-output.wpcf7-aborted {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact__form-wrapper .wpcf7-response-output.wpcf7-spam {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.contact__form-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.contact__form-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.contact__form-wrapper .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    background-color: #fffbeb;
    grid-column: span 2;
    width: 100%;
}

.contact__form-wrapper .wpcf7 form.failed .wpcf7-response-output,
.contact__form-wrapper .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    background-color: #fef2f2;
    grid-column: span 2;
}

.contact__form-wrapper .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.contact__form-wrapper .wpcf7-spinner {
    display: none !important;
    position: absolute !important;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    background: transparent;
    flex-shrink: 0;
    pointer-events: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact__form-wrapper .wpcf7-spinner[style*="display: inline-block"] {
    display: inline-block !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Grid layout for Contact Form 7 fields */
@media (min-width: 640px) {
    .contact__form-wrapper .wpcf7-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: 0.5rem;
    }
    
    /* Full width fields - target by form control wrap data-name */
    .contact__form-wrapper .wpcf7-form > p:has([data-name="your-email"]),
    .contact__form-wrapper .wpcf7-form > p:has([data-name="your-phone"]),
    .contact__form-wrapper .wpcf7-form > p:has([data-name="cv"]),
    .contact__form-wrapper .wpcf7-form > p:has([data-name="your-message"]),
    .contact__form-wrapper .wpcf7-form > p:has(.wpcf7-submit) {
        grid-column: span 2;
    }
    
    /* Fallback for browsers that don't support :has() */
    .contact__form-wrapper .wpcf7-form > p:last-child {
        grid-column: span 2;
    }
}

/* Footer */
.footer {
    background-color: #ffffff;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .footer__container {
        padding: 6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer__container {
        padding: 8rem 2rem;
    }
}

.footer__nav {
    margin-bottom: -1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 3rem;
    row-gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.footer__nav-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__nav-link:hover {
    color: #000000;
}

.footer__bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__social {
    display: flex;
    column-gap: 1rem;
    order: 2;
}

@media (min-width: 768px) {
    .footer__social {
        order: 2;
    }
}

.footer__social-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__social-link:hover {
    color: #1f2937;
}

.footer__social-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.footer__social-icon[src] {
    color: currentColor;
}

.footer__copyright {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #4b5563;
    margin: 0;
    order: 1;
}

@media (min-width: 768px) {
    .footer__copyright {
        order: 1;
        margin: 0;
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}