@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700&display=swap');

html {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Red Hat Display', sans-serif;
    background: #fff;
    color: #111827;
}

img {
    max-width: 100%;
    display: block;
}

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

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

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

.h2 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

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

.h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .h3 {
        font-size: 1.875rem;
    }
}

.lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.muted {
    color: #4b5563;
}

.small-muted {
    color: #d1d5db;
    font-size: .875rem;
    line-height: 1.35;
}

.text-center {
    text-align: center;
}

.text-left-md {
    text-align: center;
}

@media(min-width:768px) {
    .text-left-md {
        text-align: left;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    padding: .75rem 1.5rem;
    border-radius: 0.75rem;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

.btn-primary {
    background: #013d7d;
    color: #fff;
}

    .btn-primary:hover {
        background: #012d5d;
    }

.btn-blue {
    background: #2563eb;
    color: #fff;
}

    .btn-blue:hover {
        background: #1d4ed8;
    }

.btn-green {
    background: #16a34a;
    color: #fff;
}

    .btn-green:hover {
        background: #15803d;
    }

.link-brand {
    color: #013d7d;
    text-decoration: none;
}

    .link-brand:hover {
        color: #025aa5;
    }

.link-muted {
    color: #d1d5db;
    text-decoration: none;
}

    .link-muted:hover {
        color: #fff;
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
}

.topbar {
    background: #013d7d;
    color: #fff;
    padding: .75rem 0;
    overflow: hidden;
}

.topbar__inner {
    position: relative;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.topbar__text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
}

@media(min-width:768px) {
    .topbar__text {
        font-size: 1rem;
    }
}

.navbar {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.navbar__row {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 3rem;
    width: auto;
}

.logo-link {
    display: inline-flex;
}

    .logo-link:hover {
        opacity: .85;
    }

.menu {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: 2.5rem;
}

@media(min-width:768px) {
    .menu {
        display: flex;
    }
}

.menu__link,
.menu__button {
    background: none;
    border: 0;
    padding: .5rem .75rem;
    font: inherit;
    color: #1f2937;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    transition: color .2s ease, background-color .2s ease;
}

    .menu__link:hover,
    .menu__button:hover {
        color: #2563eb;
    }

.menu__item {
    position: relative;
}

    .menu__item:hover .dropdown,
    .menu__item.is-open .dropdown {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu__item:hover .chevron,
    .menu__item.is-open .chevron {
        transform: rotate(180deg);
    }

    .menu__item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
        display: none;
    }

    .menu__item:hover::after,
    .menu__item.is-open::after {
        display: block;
    }

.chevron {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0;
    width: 16rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 40;
}

    .dropdown a {
        display: block;
        padding: .75rem 1rem;
        font-size: .875rem;
        color: #374151;
        text-decoration: none;
        transition: background-color .2s ease, color .2s ease;
    }

        .dropdown a:hover {
            background: #eff6ff;
            color: #2563eb;
        }

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: 0;
    background: none;
    cursor: pointer;
    color: #1f2937;
}

    .mobile-toggle:hover {
        color: #2563eb;
    }

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

.mobile-panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    border-top: 1px solid #e5e7eb;
    transition: max-height .3s ease, opacity .3s ease;
}

    .mobile-panel.is-open {
        max-height: 720px;
        opacity: 1;
    }

.mobile-panel__inner {
    padding: .5rem .5rem .75rem;
}

.mobile-item {
    margin: .25rem 0;
}

.mobile-link,
.mobile-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem .75rem;
    font: inherit;
    background: none;
    border: 0;
    text-decoration: none;
    color: #1f2937;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}

    .mobile-link:hover,
    .mobile-button:hover {
        color: #2563eb;
    }

.mobile-dropdown {
    background: #f9fafb;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .2s ease, opacity .2s ease;
}

    .mobile-dropdown.is-open {
        max-height: 360px;
        opacity: 1;
    }

    .mobile-dropdown a {
        display: block;
        padding: .5rem 1.5rem;
        font-size: .875rem;
        color: #374151;
        text-decoration: none;
    }

        .mobile-dropdown a:hover {
            color: #2563eb;
        }

.mobile-chevron {
    transition: transform .2s ease;
}

.mobile-button[aria-expanded="true"] .mobile-chevron {
    transform: rotate(180deg);
}

.main {
    padding-top: 6rem;
}

@media(min-width:768px) {
    .main {
        padding-top: 6.5rem;
    }
}

.section {
    padding: 4rem 0;
}

.section--py-20 {
    padding: 5rem 0;
}

.section--white {
    background: #fff;
}

.section--gray-50 {
    background: #f9fafb;
}

.section--gray-100 {
    background: #f3f4f6;
}

.section--blue-50 {
    background: #eff6ff;
}

.grid {
    display: grid;
    gap: 2rem;
}

@media(min-width:768px) {
    .grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
        align-items: center;
    }

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

@media(min-width:1024px) {
    .grid--footer {
        grid-template-columns: 1fr auto auto 1fr;
    }
}

.card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    padding: 1.5rem;
    transition: box-shadow .3s ease;
}

    .card:hover {
        box-shadow: 0 12px 28px rgba(0,0,0,.14);
    }

.card--rounded-2xl {
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 0;
}

.card__body {
    padding: 2rem;
}

.card__media {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

    .card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.card:hover .card__media img {
    transform: scale(1.05);
}

.card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.4), rgba(0,0,0,0));
}

.media-16-9 {
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.media-square {
    aspect-ratio: 1 / 1;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

    .media-16-9 img,
    .media-square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
}

@media(min-width:768px) {
    .slider {
        height: 70vh;
    }
}

.slider__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.40);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider__overlay-inner {
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.slider__title {
    font-size: 1.875rem;
    font-weight: 500;
    margin: 0 0 1rem;
}

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

.slider__desc {
    font-size: 1.125rem;
    margin: 0;
}

@media(min-width:768px) {
    .slider__desc {
        font-size: 1.25rem;
    }
}

.slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,.8);
    border: 0;
    border-radius: 999px;
    padding: .5rem;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

    .slider__arrow:hover {
        background: rgba(255,255,255,1);
    }

.slider__arrow--left {
    left: 1rem;
}

.slider__arrow--right {
    right: 1rem;
}

.slider__dots {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: .5rem;
}

.slider__dot {
    width: .75rem;
    height: .75rem;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.5);
    transition: transform .2s ease, background-color .2s ease;
}

    .slider__dot.is-active {
        background: rgba(255,255,255,1);
    }

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-circle--blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-circle--green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-circle--dark {
    background: #111827;
    color: #fff;
}

.icon-circle--wa {
    background: #22c55e;
    color: #fff;
}

    .icon-circle--wa:hover {
        background: #16a34a;
    }

.icon-circle svg {
    width: 32px;
    height: 32px;
}

.icon-box svg {
    width: 32px;
    height: 32px;
}

.icon-box svg,
.icon-circle svg,
.social svg,
.chevron,
.mobile-chevron,
.mobile-toggle svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.contact-actions {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.site-footer {
    background: #013d7d;
    color: #fff;
}

.footer-top {
    padding: 3rem 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

@media(min-width:1024px) {
    .footer-cols {
        grid-template-columns: 1fr auto auto 1fr;
    }
}

.footer h3 {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: .875rem;
    line-height: 1.35;
    color: #d1d5db;
}

    .footer-list a {
        color: #d1d5db;
        text-decoration: none;
    }

        .footer-list a:hover {
            color: #fff;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.22);
    padding: 2rem 0;
}

.footer-bottom__row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: #9ca3af;
    font-size: .875rem;
}

@media(min-width:768px) {
    .footer-bottom__row {
        flex-direction: row;
    }
}

.social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .social a {
        color: #9ca3af;
        text-decoration: none;
        transition: color .2s ease;
    }

        .social a:hover {
            color: #fff;
        }

    .social svg {
        width: 24px;
        height: 24px;
    }

.footer-credit a {
    color: #60a5fa;
    text-decoration: none;
}

    .footer-credit a:hover {
        color: #93c5fd;
    }

.animate {
    opacity: 1;
    transform: none;
}

.js .animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

    .js .animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        body::-webkit-scrollbar {
            display: none;
        }

    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        *::-webkit-scrollbar {
            display: none;
        }
}

[hidden] {
    display: none !important;
}

.content-narrow {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(90deg, #1e3a8a, #1d4ed8);
    color: #fff;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .2;
}

.hero-banner__inner {
    text-align: center;
}

    .hero-banner__inner .animate {
        margin-left: auto;
        margin-right: auto;
    }

.hero-banner__title {
    margin: 0 0 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    font-size: 2.25rem;
}

@media(min-width:768px) {
    .hero-banner__title {
        font-size: 3.75rem;
    }
}

.hero-banner__subtitle {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width:768px) {
    .hero-banner__subtitle {
        font-size: 1.5rem;
    }
}

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

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

@media(min-width:1024px) {
    .gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gallery__item {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 16rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.10);
}

.gallery__item:hover .gallery__overlay {
    opacity: .30;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox__figure {
    margin: 0;
    max-width: min(1100px, 100%);
    max-height: min(80vh, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}

.lightbox__img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
}

.lightbox__caption {
    color: rgba(255,255,255,.9);
    font-size: .95rem;
    text-align: center;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    opacity: .9;
    transition: opacity .2s ease;
}

    .lightbox__close:hover {
        opacity: 1;
    }

.lightbox__nav {
    position: absolute;
    bottom: 1rem;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    opacity: .9;
    transition: opacity .2s ease;
}

    .lightbox__nav:hover {
        opacity: 1;
    }

.lightbox__nav--left {
    left: 1rem;
}

.lightbox__nav--right {
    right: 1rem;
}

@media(min-width:768px) {
    .lightbox__nav {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 500;
}

.badge--blue {
    background: rgba(37,99,235,.12);
    color: #1d4ed8;
}

.news-grid {
    align-items: stretch;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .875rem;
    color: #4b5563;
    margin-bottom: .75rem;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
}

.news-date__icon {
    display: inline-flex;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 .75rem;
}

.news-excerpt {
    margin: 0 0 1rem;
    color: #374151;
    line-height: 1.55;
}

.news-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #2563eb;
    font-weight: 500;
}

    .news-readmore:hover {
        color: #1d4ed8;
    }

.news-card.is-selected {
    outline: 2px solid #2563eb;
    outline-offset: 0;
}

.news-full {
    border-top: 4px solid #2563eb;
}

.container-article {
    max-width: 56rem;
}

.news-article-header {
    margin-bottom: 2rem;
}

.news-meta--lg {
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-article-title {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

@media(min-width:768px) {
    .news-article-title {
        font-size: 3rem;
    }
}

.news-article-excerpt {
    margin: 0;
    font-size: 1.25rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
}

.news-article-image {
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

    .news-article-image img {
        width: 100%;
        height: 24rem;
        object-fit: cover;
    }

@media(min-width:768px) {
    .news-article-image img {
        height: 28rem;
    }
}

.prose {
    color: #374151;
}

    .prose h3 {
        margin: 2rem 0 1rem;
        font-size: 1.5rem;
        font-weight: 500;
        color: #111827;
    }

    .prose p {
        margin: 0 0 1rem;
        line-height: 1.75;
    }

    .prose ul {
        margin: 0 0 1rem 1.25rem;
        padding: 0;
    }

    .prose li {
        margin: .5rem 0;
    }

    .prose strong {
        font-weight: 600;
        color: #111827;
    }

.news-links {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.news-links__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.news-links__list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.news-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

    .news-link:hover {
        color: #1d4ed8;
    }

.news-link__ext {
    margin-left: auto;
    color: #4b5563;
}

.news-article-actions {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-top {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: none;
    border: 0;
    padding: .5rem 0;
    cursor: pointer;
    color: #2563eb;
    font-weight: 500;
}

    .news-top:hover {
        color: #1d4ed8;
    }

.newsletter {
    max-width: 32rem;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter__input {
    flex: 1 1 16rem;
    min-width: 16rem;
    padding: .75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    outline: none;
}

    .newsletter__input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
    }

.hero-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner__overlay--strong {
    position: absolute;
    inset: 0;
    opacity: 1;
    background: linear-gradient(90deg, rgba(20,83,45,.90), rgba(21,128,61,.85));
}

.hero-banner--sostenibilita {
    background: linear-gradient(90deg, #14532d, #15803d);
}

    .hero-banner--sostenibilita .hero-banner__inner {
        text-align: center;
    }

.hero-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #86efac;
}

    .hero-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.sustain-intro {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
}

    .sustain-intro p {
        margin: 0 0 1.5rem;
    }

        .sustain-intro p:last-child {
            margin-bottom: 0;
        }

    .sustain-intro strong {
        font-weight: 600;
        color: #111827;
    }

.section--sustain-numbers {
    background: linear-gradient(135deg, rgba(240,253,244,1), rgba(239,246,255,1));
}

.kpi-grid {
    max-width: 64rem;
    margin: 0 auto;
}

.kpi-card {
    text-align: center;
    padding: 2rem;
}

.kpi-value {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 500;
    color: #16a34a;
    margin-bottom: .75rem;
}

.kpi-text {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

.sustain-info-grid {
    align-items: stretch;
}

.info-box {
    height: 100%;
    padding: 2rem;
}

.info-box__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-box__icon {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
}

    .info-box__icon svg {
        width: 28px;
        height: 28px;
        display: block;
    }

.info-box__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    color: #111827;
}

@media(min-width:768px) {
    .info-box__title {
        font-size: 1.75rem;
    }
}

.info-box__body {
    color: #374151;
}

    .info-box__body p {
        margin: 0 0 1rem;
        line-height: 1.75;
    }

        .info-box__body p:last-child {
            margin-bottom: 0;
        }

.info-box--green {
    background: linear-gradient(135deg, rgba(220,252,231,1), rgba(255,255,255,1));
    border: 1px solid rgba(34,197,94,.22);
}

.info-box__icon--green {
    background: #16a34a;
}

.info-box--blue {
    background: linear-gradient(135deg, rgba(219,234,254,1), rgba(255,255,255,1));
    border: 1px solid rgba(59,130,246,.22);
}

.info-box__icon--blue {
    background: #2563eb;
}

.info-box--yellow {
    background: linear-gradient(135deg, rgba(254,249,195,1), rgba(255,255,255,1));
    border: 1px solid rgba(202,138,4,.22);
}

.info-box__icon--yellow {
    background: #ca8a04;
}

.info-box--purple {
    background: linear-gradient(135deg, rgba(243,232,255,1), rgba(255,255,255,1));
    border: 1px solid rgba(168,85,247,.22);
}

.info-box__icon--purple {
    background: #7c3aed;
}

.sustain-callout {
    margin-top: 2rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
    padding: 2rem;
}

.sustain-callout__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sustain-callout__icon {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #16a34a;
    flex: 0 0 auto;
}

    .sustain-callout__icon svg {
        width: 28px;
        height: 28px;
        display: block;
    }

.sustain-callout__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
}

.sustain-callout__body {
    color: rgba(240,253,244,.95);
}

    .sustain-callout__body p {
        margin: 0 0 1rem;
        line-height: 1.75;
    }

        .sustain-callout__body p:last-child {
            margin-bottom: 0;
        }

.sustain-callout__strong {
    color: #fff;
    font-weight: 600;
}

.sustain-gallery {
    gap: 1.5rem;
}

.gallery-tile {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    height: 16rem;
    margin: 0;
}

    .gallery-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gallery-tile__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,0));
    font-weight: 500;
}

.product-stack {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media(min-width:768px) {
    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.5rem;
    }

    .product-row--reverse .product-row__text {
        order: 2;
    }

    .product-row--reverse .product-row__media {
        order: 1;
    }
}

.product-row__text .btn {
    margin-top: 1.25rem;
}

.media-4-3 {
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #f3f4f6;
}

    .media-4-3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

    .media-4-3:hover img {
        transform: scale(1.05);
    }

.cta-gradient {
    background: linear-gradient(90deg, #013d7d 0%, #025aa5 100%);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.cta-gradient__grid {
    display: grid;
    grid-template-columns: 1fr;
}

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

.cta-gradient__content {
    padding: 3rem;
}

@media(min-width:768px) {
    .cta-gradient__content {
        padding: 4rem;
    }
}

.h2--white {
    color: #fff;
}

.p-lead--white {
    color: rgba(255,255,255,.9);
}

.btn-invert {
    background: #fff;
    color: #013d7d;
}

    .btn-invert:hover {
        background: rgba(255,255,255,.92);
    }

.media-16-9--flat {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-gradient--brown {
    background: linear-gradient(90deg, #8b4513 0%, #a0522d 100%);
}

    .cta-gradient--brown .btn-invert {
        color: #8b4513;
    }

.hero {
    padding: 5rem 0;
}

.hero__inner--center {
    text-align: center;
}

.hero__title {
    font-size: 2.25rem;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 1.25rem;
}

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

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 48rem;
    margin: 0 auto;
    opacity: .95;
}

.hero--contact {
    color: #fff;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    padding-top: 8rem;
}

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

@media(min-width:1024px) {
    .grid--contact {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

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

.stack--lg {
    gap: 1.5rem;
}

.contact-card {
    border: 1px solid #e5e7eb;
}

.contact-card__row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card__title {
    margin: 0 0 .25rem;
    font-weight: 600;
    color: #111827;
}

.contact-card__text {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.contact-card__link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

    .contact-card__link:hover {
        color: #1d4ed8;
    }

.contact-card__link--green {
    color: #16a34a;
}

    .contact-card__link--green:hover {
        color: #15803d;
    }

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
}

.icon-box--blue {
    background: #1e40af;
}

.icon-box--green {
    background: #16a34a;
}

.map-card__frame {
    position: relative;
    width: 100%;
    height: 22rem;
    background: #f3f4f6;
}

    .map-card__frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.map-card__meta {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-start;
}

.cta-surface {
    background: #f3f4f6;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
}

@media(min-width:768px) {
    .cta-surface {
        padding: 3rem;
    }
}

.cta-surface__head {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-surface__title {
    margin-bottom: 1rem;
}

.cta-surface__subtitle {
    color: #4b5563;
    max-width: 50rem;
    margin: 0 auto;
}

.grid--cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 62rem;
    margin: 0 auto;
}

@media(min-width:768px) {
    .grid--cta {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-card {
    text-align: center;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

    .cta-card .btn {
        margin-top: .5rem;
    }

.cta-card__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .25rem;
}

.cta-card__icon--blue {
    background: rgba(37, 99, 235, .12);
    color: #2563eb;
}

.cta-card__icon--green {
    background: rgba(22, 163, 74, .12);
    color: #16a34a;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    padding: 0.75rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-marquee__track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: partners-scroll 20s linear infinite;
}

.partners-marquee__group {
    display: flex;
    gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.partners-marquee__item {
    flex: 0 0 auto;
    width: 10rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partners-marquee__item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

        .partners-marquee__item img:hover {
            opacity: 1;
        }

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .partners-marquee__track {
        animation: none;
    }
}

.h1 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 2rem;
    color: #111827;
}

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

.sartoria-km {
    background: linear-gradient(135deg, #013d7d 0%, #025aa5 100%);
    color: #fff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-xl);
}

@media(min-width:768px) {
    .sartoria-km {
        padding: 3.5rem 3rem;
    }
}

.sartoria-km__title {
    margin: 0 0 2rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.15;
    font-size: 1.875rem;
}

@media(min-width:768px) {
    .sartoria-km__title {
        font-size: 2.25rem;
    }
}

.sartoria-km__grid {
    display: grid;
    gap: 1.25rem 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.sartoria-feature {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.sartoria-feature__icon {
    flex: 0 0 auto;
    margin-top: .15rem;
}

.sartoria-feature__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.65;
}

.sartoria-km__note {
    margin: 2.25rem auto 0;
    max-width: 56rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.65;
    opacity: .95;
}

.client-card {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
}

.client-card__title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.25;
}

.client-card__desc {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.atelier-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.atelier-logo {
    height: 5rem;
    width: auto;
}

.atelier-intro {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75;
    color: #374151;
}

.atelier-why-grid {
    max-width: 72rem;
    margin: 0 auto;
}

.atelier-card {
    padding: 2rem;
}

.atelier-card__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
}

.atelier-card__text {
    margin: 0;
    color: #374151;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: #374151;
}

    .check-list li {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
    }

.check-badge {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    line-height: 1;
    background: #16a34a;
    color: #fff;
    flex-shrink: 0;
    margin-top: .2rem;
}

.check-badge--blue {
    background: #2563eb;
}

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

.solution {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
}

@media(min-width:768px) {
    .solution {
        padding: 3rem;
    }
}

.solution__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.solution__num {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solution__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.25;
}

@media(min-width:768px) {
    .solution__title {
        font-size: 1.875rem;
    }
}

.solution__desc {
    margin: 0 0 1.5rem;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

.solution__plus {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.solution__plus-title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
}

.solution__cta {
    margin-top: 1.5rem;
}

.icon {
    width: 24px;
    height: 24px;
}

.icon--sm {
    width: 20px;
    height: 20px;
}

.gallery--3 {
    grid-template-columns: 1fr;
}

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

@media(min-width:1024px) {
    .gallery--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero--mottura {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #1f2937 0%, #4b5563 100%);
    padding-top: 6rem;
}

    .hero--mottura .hero__title {
        color: #fff;
    }

    .hero--mottura .hero__subtitle {
        color: #fff;
        opacity: .95;
    }

.hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .30;
}

.hero__title--light {
    color: #fff;
}

.hero__subtitle--light {
    color: #fff;
}

.mottura-intro {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.mottura-logo {
    display: flex;
    justify-content: center;
    margin: 0 0 2rem;
}

.mottura-logo__img {
    height: 5rem;
    width: auto;
    max-width: 100%;
}

.mottura-intro__p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #374151;
    margin: 0 0 1.5rem;
}

.mottura-lead {
    max-width: 48rem;
    margin: 0 auto 0;
}

.card--gray {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

    .card--gray:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,.10);
    }

.mottura-card__title {
    margin: 0 0 .75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
}

.mottura-solution__details {
    margin: 0 0 1.5rem;
    color: #374151;
    line-height: 1.75;
}

.mottura-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

    .mottura-link:hover {
        color: #1d4ed8;
    }

.gallery__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery__item:hover .gallery__label {
    opacity: 1;
}