:root {
    --wecoop-bg: #f8f7f2;
    --wecoop-surface: #ffffff;
    --wecoop-ink: #112235;
    --wecoop-muted: #4f5e6a;
    --wecoop-accent: #0d8a72;
    --wecoop-accent-2: #f5a623;
    --wecoop-border: #d8dee4;
    --wecoop-shadow: 0 14px 34px rgba(17, 34, 53, 0.08);
    --wecoop-radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--wecoop-ink);
    background: radial-gradient(circle at 0 0, #eef5e9 0%, var(--wecoop-bg) 40%);
}

h1,
h2,
h3,
h4 {
    font-family: "Inter", sans-serif;
    line-height: 1.2;
    margin-top: 0;
}

a {
    color: var(--wecoop-ink);
}

.wecoop-site-content {
    min-height: calc(100vh - 240px);
}

.wecoop-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 247, 242, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--wecoop-border);
}

.wecoop-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.wecoop-brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wecoop-brand__name {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--wecoop-accent);
}

.wecoop-brand__tagline {
    font-size: 0.8rem;
    color: var(--wecoop-muted);
}

.wecoop-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.wecoop-nav__list a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.97rem;
}

.wecoop-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wecoop-lang {
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--wecoop-border);
    border-radius: 999px;
    padding: 6px 10px;
}

.wecoop-lang.is-active {
    background: var(--wecoop-accent);
    border-color: var(--wecoop-accent);
    color: #fff;
}

.wecoop-contact-btn,
.wecoop-btn,
.wecoop-newsletter-form button,
.wecoop-contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    background: var(--wecoop-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.wecoop-contact-btn:hover,
.wecoop-btn:hover,
.wecoop-newsletter-form button:hover,
.wecoop-contact-form button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.wecoop-btn-outline {
    background: transparent;
    color: var(--wecoop-accent);
    border: 2px solid var(--wecoop-accent);
}

.wecoop-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    padding: 0;
}

.wecoop-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: var(--wecoop-ink);
}

.wecoop-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 20px 68px;
}

.wecoop-page-content .wecoop-section {
    background: var(--wecoop-surface);
    border: 1px solid var(--wecoop-border);
    border-radius: var(--wecoop-radius);
    padding: 30px;
    margin: 0 0 18px;
    box-shadow: var(--wecoop-shadow);
}

.wecoop-page-content .hero {
    background: linear-gradient(115deg, #0f5161 0%, #0d8a72 48%, #d7efe9 100%);
    color: #fff;
}

.wecoop-page-content .hero h1 {
    font-size: clamp(1.9rem, 4.8vw, 3rem);
    max-width: 15ch;
}

.wecoop-page-content .wecoop-cta {
    border: 2px solid var(--wecoop-accent-2);
    background: linear-gradient(180deg, #fff9ec, #fff);
}

.wecoop-news-preview,
.wecoop-archive-head {
    margin-top: 34px;
}

.wecoop-refactor-visuals {
    margin-top: 34px;
}

.wecoop-refactor-visuals__grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wecoop-refactor-visuals__grid figure {
    margin: 0;
    border-radius: var(--wecoop-radius);
    overflow: hidden;
    border: 1px solid var(--wecoop-border);
    box-shadow: var(--wecoop-shadow);
    background: var(--wecoop-surface);
}

.wecoop-refactor-visuals__grid img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.wecoop-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.wecoop-news-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wecoop-news-card {
    border-radius: var(--wecoop-radius);
    background: var(--wecoop-surface);
    border: 1px solid var(--wecoop-border);
    box-shadow: var(--wecoop-shadow);
    overflow: hidden;
    padding: 16px;
}

.wecoop-news-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
}

.wecoop-news-card h2,
.wecoop-news-card h3 {
    margin: 12px 0 8px;
    font-size: 1.2rem;
}

.wecoop-link {
    font-weight: 700;
    color: var(--wecoop-accent);
    text-decoration: none;
}

.wecoop-pagination {
    margin-top: 24px;
}

.wecoop-footer {
    border-top: 1px solid var(--wecoop-border);
    background: #ffffff;
}

.wecoop-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.wecoop-footer__inner h3,
.wecoop-footer__inner h4 {
    margin: 0 0 10px;
}

.wecoop-footer__brand-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.wecoop-footer__brand-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.wecoop-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wecoop-footer__menu li {
    margin-bottom: 8px;
    color: var(--wecoop-muted);
}

.wecoop-footer__menu a {
    text-decoration: none;
}

.wecoop-footer__menu a:hover {
    color: var(--wecoop-accent);
}

.wecoop-newsletter-form,
.wecoop-contact-form {
    display: grid;
    gap: 10px;
}

.wecoop-newsletter-form input,
.wecoop-contact-form input,
.wecoop-contact-form textarea {
    border: 1px solid var(--wecoop-border);
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
}

.wecoop-footer__social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

.wecoop-footer__bottom {
    border-top: 1px solid var(--wecoop-border);
    text-align: center;
    padding: 14px 20px;
    color: var(--wecoop-muted);
}

.wecoop-whatsapp-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: var(--wecoop-shadow);
    z-index: 999;
}

@media (max-width: 980px) {
    .wecoop-header__inner {
        grid-template-columns: auto auto 1fr;
    }

    .wecoop-menu-toggle {
        display: block;
        justify-self: end;
    }

    .wecoop-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--wecoop-surface);
        border-bottom: 1px solid var(--wecoop-border);
        padding: 14px 20px;
    }

    .wecoop-nav.is-open {
        display: block;
    }

    .wecoop-nav__list {
        flex-direction: column;
        align-items: flex-start;
    }

    .wecoop-header__actions {
        justify-content: flex-end;
    }

    .wecoop-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wecoop-refactor-visuals__grid {
        grid-template-columns: 1fr 1fr;
    }

    .wecoop-footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wecoop-main {
        padding-top: 24px;
    }

    .wecoop-page-content .wecoop-section {
        padding: 22px;
    }

    .wecoop-news-grid {
        grid-template-columns: 1fr;
    }

    .wecoop-refactor-visuals__grid {
        grid-template-columns: 1fr;
    }

    .wecoop-header__actions .wecoop-contact-btn {
        display: none;
    }
}

.wecoop-figma-home {
    --wf-brand: #1282a8;
    --wf-brand-2: #379ac4;
    --wf-accent: #59b575;
    --wf-pink: #e6266b;
    --wf-text: #2f3d46;
    --wf-soft: #f5f8fb;
}

.wecoop-figma-home :where(a, button):focus-visible {
    outline: 2px solid var(--wf-brand-2);
    outline-offset: 2px;
}

.wecoop-figma-home .wf-section,
.wecoop-figma-home .wf-hero {
    border: 1px solid var(--wecoop-border);
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--wecoop-shadow);
    padding: 34px;
    margin-bottom: 20px;
    scroll-margin-top: 96px;
}

.wecoop-figma-home .wf-eyebrow {
    margin: 0 0 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7c8788;
}

.wecoop-figma-home h1,
.wecoop-figma-home h2,
.wecoop-figma-home h3 {
    font-family: "Inter", sans-serif;
    color: var(--wf-text);
}

.wecoop-figma-home h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    margin-bottom: 10px;
}

.wecoop-figma-home h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    margin-bottom: 8px;
}

.wecoop-figma-home .wf-lead {
    margin: 0 0 18px;
    font-size: 1.03rem;
    color: #4d4c4c;
    max-width: 76ch;
}

.wecoop-figma-home .wf-hero {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.08fr 0.92fr;
    background: linear-gradient(120deg, #eef7fb 0%, #ffffff 48%, #eef8f2 100%);
}

.wecoop-figma-home .wf-hero__content {
    max-width: 66ch;
}

.wecoop-figma-home .wf-hero__content p {
    margin-top: 0;
}

.wecoop-figma-home .wf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.wecoop-figma-home .wf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wecoop-figma-home .wf-btn--primary {
    background: var(--wf-brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(18, 130, 168, 0.28);
}

.wecoop-figma-home .wf-btn--ghost {
    background: #fff;
    border-color: var(--wf-brand);
    color: var(--wf-brand);
}

.wecoop-figma-home .wf-btn:hover {
    transform: translateY(-1px);
}

.wecoop-figma-home .wf-kpi {
    display: inline-block;
    border-radius: 999px;
    background: #eaf5fb;
    color: var(--wf-brand);
    font-weight: 700;
    padding: 7px 14px;
}

.wecoop-figma-home .wf-hero__media img,
.wecoop-figma-home .wf-wide-image img,
.wecoop-figma-home .wf-media-card img,
.wecoop-figma-home .wf-cta-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.wecoop-figma-home .wf-hero__media {
    margin: 0;
    min-height: 380px;
}

.wecoop-figma-home .wf-grid {
    display: grid;
    gap: 14px;
}

.wecoop-figma-home .wf-linkbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 0;
}

.wecoop-figma-home .wf-linkbar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid var(--wecoop-border);
    background: #fff;
    color: #4d4c4c;
    padding: 7px 12px;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wecoop-figma-home .wf-linkbar a:hover,
.wecoop-figma-home .wf-linkbar a:focus-visible {
    color: var(--wf-brand);
    border-color: var(--wf-brand);
    box-shadow: 0 8px 18px rgba(18, 130, 168, 0.15);
    transform: translateY(-1px);
}

.wecoop-figma-home .wf-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.wecoop-figma-home .wf-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wecoop-figma-home .wf-grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.wecoop-figma-home .wf-card,
.wecoop-figma-home .wf-stat,
.wecoop-figma-home .wf-pill {
    border: 1px solid var(--wecoop-border);
    border-radius: 16px;
    background: var(--wf-soft);
    padding: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wecoop-figma-home .wf-card {
    height: 100%;
}

.wecoop-figma-home .wf-card:hover,
.wecoop-figma-home .wf-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 34, 53, 0.1);
}

.wecoop-figma-home .wf-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.wecoop-figma-home .wf-card p {
    margin: 0;
    color: #4d4c4c;
    line-height: 1.55;
}

.wecoop-figma-home .wf-band {
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.wecoop-figma-home .wf-pill {
    text-align: center;
    font-weight: 700;
    background: #f2f8fc;
    color: var(--wf-brand);
}

.wecoop-figma-home .wf-inline-logo {
    margin: 16px 0 0;
}

.wecoop-figma-home .wf-inline-logo img {
    width: 160px;
    height: auto;
}

.wecoop-figma-home .wf-wide-image {
    margin: 0 0 14px;
    height: 280px;
}

.wecoop-figma-home .wf-media-card {
    margin: 0;
    height: 280px;
}

.wecoop-figma-home .wf-subtitle {
    margin: 18px 0 10px;
    font-size: 1.2rem;
}

.wecoop-figma-home .wf-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: wf-steps;
}

.wecoop-figma-home .wf-steps li {
    counter-increment: wf-steps;
    border: 1px solid var(--wecoop-border);
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #4d4c4c;
}

.wecoop-figma-home .wf-steps li::before {
    content: counter(wf-steps);
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    margin: 0 auto 6px;
    background: var(--wf-brand-2);
    color: #fff;
    font-size: 0.8rem;
}

.wecoop-figma-home .wf-stat {
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
    min-height: 116px;
    display: grid;
    place-items: center;
}

.wecoop-figma-home .wf-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--wf-brand);
}

.wecoop-figma-home .wf-partners {
    margin-top: 18px;
}

.wecoop-figma-home .wf-partners h3 {
    margin: 0 0 12px;
}

.wecoop-figma-home .wf-partners__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.wecoop-figma-home .wf-partners__logos img {
    width: 100%;
    max-height: 58px;
    object-fit: contain;
    border: 1px solid var(--wecoop-border);
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wecoop-figma-home .wf-partners__logos img:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 34, 53, 0.08);
}

.wecoop-figma-home .wf-cta-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}

.wecoop-figma-home .wf-cta-row img {
    height: 170px;
}

.wecoop-figma-home .wf-contact__grid {
    align-items: start;
}

.wecoop-figma-home .wf-contact__info img {
    margin-top: 10px;
    width: 180px;
    height: auto;
}

.wecoop-figma-home .wf-contact .wecoop-contact-form {
    background: #fff;
    border: 1px solid var(--wecoop-border);
    border-radius: 14px;
    padding: 14px;
}

.wecoop-figma-home .wf-contact .wecoop-contact-form :where(input, textarea, select) {
    width: 100%;
    border: 1px solid var(--wecoop-border);
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
}

.wecoop-figma-home .wf-contact .wecoop-contact-form :where(input, textarea, select):focus {
    border-color: var(--wf-brand-2);
    box-shadow: 0 0 0 3px rgba(55, 154, 196, 0.14);
    outline: none;
}

.wecoop-figma-home .wf-contact .wecoop-contact-form button {
    background: var(--wf-brand);
    border-radius: 999px;
    padding: 10px 16px;
}

.wecoop-figma-home .wf-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wecoop-figma-home .wf-mini-footer .wf-links__list {
    flex-direction: column;
    align-items: flex-start;
}

.wecoop-figma-home .wf-mini-footer h3 {
    margin-bottom: 10px;
}

.wecoop-figma-home .wf-mini-footer .wf-lead {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 0.94rem;
}

.wecoop-figma-home .wf-links__list a {
    text-decoration: none;
    border: 1px solid var(--wecoop-border);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 600;
    color: #4d4c4c;
    background: #fff;
}

.wecoop-figma-home .wf-links__list a:hover {
    color: var(--wf-brand);
    border-color: var(--wf-brand);
}

@media (prefers-reduced-motion: no-preference) {
    .wecoop-figma-home .wf-hero,
    .wecoop-figma-home .wf-section {
        animation: wf-fade-up 0.55s ease both;
    }

    .wecoop-figma-home .wf-section:nth-of-type(2) {
        animation-delay: 0.04s;
    }

    .wecoop-figma-home .wf-section:nth-of-type(3) {
        animation-delay: 0.08s;
    }

    .wecoop-figma-home .wf-section:nth-of-type(4) {
        animation-delay: 0.12s;
    }

    .wecoop-figma-home .wf-section:nth-of-type(5) {
        animation-delay: 0.16s;
    }

    .wecoop-figma-home .wf-section:nth-of-type(6) {
        animation-delay: 0.2s;
    }

    .wecoop-figma-home .wf-section:nth-of-type(7) {
        animation-delay: 0.24s;
    }

    .wecoop-figma-home .wf-section:nth-of-type(8) {
        animation-delay: 0.28s;
    }
}

@keyframes wf-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .wecoop-figma-home .wf-hero,
    .wecoop-figma-home .wf-grid--4,
    .wecoop-figma-home .wf-grid--3,
    .wecoop-figma-home .wf-grid--6,
    .wecoop-figma-home .wf-steps,
    .wecoop-figma-home .wf-partners__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wecoop-figma-home .wf-grid--2,
    .wecoop-figma-home .wf-contact__grid {
        grid-template-columns: 1fr;
    }

    .wecoop-figma-home .wf-hero__media {
        min-height: 300px;
    }

    .wecoop-figma-home .wf-cta-row {
        grid-template-columns: 1fr;
    }

    .wecoop-figma-home .wf-linkbar {
        padding-bottom: 4px;
    }
}

@media (max-width: 1024px) {
    .wecoop-main {
        max-width: 980px;
        padding-top: 28px;
    }

    .wecoop-figma-home .wf-section,
    .wecoop-figma-home .wf-hero {
        padding: 28px;
        border-radius: 20px;
    }

    .wecoop-figma-home h1 {
        font-size: clamp(1.8rem, 4vw, 2.55rem);
    }

    .wecoop-figma-home h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }
}

@media (max-width: 768px) {
    .wecoop-header {
        background: rgba(255, 255, 255, 0.97);
    }

    .wecoop-header__inner {
        padding: 10px 16px;
        gap: 12px;
    }

    .wecoop-brand__name {
        font-size: 1.2rem;
    }

    .wecoop-main {
        padding: 20px 14px 52px;
    }

    .wecoop-figma-home .wf-section,
    .wecoop-figma-home .wf-hero {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 14px;
        scroll-margin-top: 76px;
    }

    .wecoop-figma-home .wf-hero {
        gap: 16px;
    }

    .wecoop-figma-home .wf-hero__media {
        min-height: 240px;
    }

    .wecoop-figma-home .wf-wide-image,
    .wecoop-figma-home .wf-media-card {
        height: 220px;
    }

    .wecoop-figma-home .wf-kpi {
        font-size: 0.88rem;
        padding: 6px 11px;
    }

    .wecoop-figma-home .wf-btn {
        padding: 9px 13px;
        font-size: 0.92rem;
    }

    .wecoop-figma-home .wf-actions .wf-btn {
        flex: 1 1 48%;
    }

    .wecoop-figma-home .wf-card,
    .wecoop-figma-home .wf-stat,
    .wecoop-figma-home .wf-pill {
        padding: 12px;
    }

    .wecoop-figma-home .wf-stat strong {
        font-size: 1.75rem;
    }

    .wecoop-footer__inner {
        padding: 26px 16px;
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .wecoop-figma-home .wf-section,
    .wecoop-figma-home .wf-hero {
        padding: 18px;
        border-radius: 16px;
        scroll-margin-top: 84px;
    }

    .wecoop-figma-home .wf-grid--4,
    .wecoop-figma-home .wf-grid--3,
    .wecoop-figma-home .wf-grid--6,
    .wecoop-figma-home .wf-steps,
    .wecoop-figma-home .wf-partners__logos {
        grid-template-columns: 1fr;
    }

    .wecoop-figma-home .wf-linkbar a {
        width: 100%;
    }

    .wecoop-figma-home .wf-actions .wf-btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .wecoop-header__inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .wecoop-main {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 46px;
    }

    .wecoop-figma-home .wf-section,
    .wecoop-figma-home .wf-hero {
        padding: 14px;
        border-radius: 14px;
        scroll-margin-top: 74px;
    }

    .wecoop-figma-home h1 {
        font-size: 1.62rem;
        line-height: 1.16;
    }

    .wecoop-figma-home h2 {
        font-size: 1.34rem;
        line-height: 1.2;
    }

    .wecoop-figma-home .wf-lead {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .wecoop-figma-home .wf-hero__media,
    .wecoop-figma-home .wf-wide-image,
    .wecoop-figma-home .wf-media-card {
        min-height: 190px;
        height: 190px;
    }

    .wecoop-figma-home .wf-steps li {
        font-size: 0.86rem;
        padding: 8px;
    }

    .wecoop-footer__inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .wecoop-whatsapp-button {
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
        font-size: 0.88rem;
    }
}

@media (min-width: 1440px) {
    .wecoop-main {
        max-width: 1280px;
    }

    .wecoop-figma-home .wf-section,
    .wecoop-figma-home .wf-hero {
        padding: 38px;
    }

    .wecoop-figma-home .wf-hero {
        grid-template-columns: 1.06fr 0.94fr;
    }

    .wecoop-figma-home .wf-hero__media {
        min-height: 430px;
    }
}

body.home .wecoop-header,
body.home .wecoop-footer,
body.home .wecoop-whatsapp-button {
    display: none !important;
}

.ws-site {
    --ws-blue: #1282a8;
    --ws-blue-2: #379ac4;
    --ws-green: #59b575;
    --ws-lime: #8cc163;
    --ws-pink: #e6266b;
    --ws-text: #4d4c4c;
    --ws-muted: #7c8788;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: var(--ws-text);
    background: #fff;
    overflow-x: hidden;
}

body.home {
    overflow-x: hidden;
}

.ws-container {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
}

.ws-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ws-nav__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ws-brand img {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: contain;
}

.ws-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ws-brand span {
    color: var(--ws-text);
    font-size: 1.62rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.ws-links {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.ws-links a {
    text-decoration: none;
    color: var(--ws-text);
    font-weight: 600;
    font-size: 1rem;
}

.ws-links a:hover {
    color: var(--ws-blue);
}

.ws-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 4px;
}

.ws-lang-switcher a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: var(--ws-text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: #fff;
}

.ws-lang-switcher a:hover {
    border-color: var(--ws-blue);
    color: var(--ws-blue);
}

.ws-lang-switcher a.is-active {
    background: var(--ws-blue);
    border-color: var(--ws-blue);
    color: #fff;
}

.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 700;
    padding: 12px 22px;
}

.ws-btn--primary {
    background: var(--ws-blue);
    color: #fff;
}

.ws-btn--ghost {
    color: var(--ws-blue);
    border-color: var(--ws-blue);
    background: #fff;
}

.ws-btn--light {
    margin-top: 20px;
    background: #fff;
    color: var(--ws-blue);
}

.ws-grid-2,
.ws-grid-3,
.ws-grid-4 {
    display: grid;
    gap: 22px;
}

.ws-grid-2 > *,
.ws-grid-3 > *,
.ws-grid-4 > * {
    min-width: 0;
}

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

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

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

.ws-section {
    padding: 96px 0;
}

.ws-section h2,
.ws-hero h1 {
    font-family: "Inter", sans-serif;
    margin: 0 0 14px;
    color: var(--ws-text);
}

.ws-section h2 {
    font-size: clamp(2.05rem, 3.8vw, 3rem);
    line-height: 1.12;
}

.ws-site h3 {
    font-size: 1.23rem;
    line-height: 1.25;
}

.ws-site p {
    font-size: 1rem;
}

.ws-hero {
    padding: 84px 0;
    background:
        radial-gradient(980px 460px at 12% 20%, rgba(18, 130, 168, 0.2), transparent 64%),
        radial-gradient(920px 420px at 92% 78%, rgba(89, 181, 117, 0.2), transparent 62%),
        linear-gradient(120deg, #d8ecf6 0%, #f3fafc 48%, #e7f4ea 100%);
}

.ws-hero h1 {
    font-size: clamp(2.7rem, 5.4vw, 4.2rem);
    line-height: 1.05;
}

.ws-hero h1 .ws-grad {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.ws-hero h1 .ws-grad--green {
    background-image: linear-gradient(130deg, #4fa968, #9ecf57);
}

.ws-hero h1 .ws-grad--blue {
    background-image: linear-gradient(130deg, #0e7fa7, #38a7d8);
}

.ws-hero h1 .ws-grad--orange {
    background-image: linear-gradient(130deg, #f0832a, #f6b73a);
}

.ws-hero p,
.ws-lead {
    color: var(--ws-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 72ch;
}

#que-es > .ws-container > h2,
#que-es > .ws-container > .ws-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#modello-sistema .ws-model-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

#modello-sistema .ws-model-intro h2,
#modello-sistema .ws-model-intro .ws-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#modello-sistema .ws-model-intro .ws-lead {
    max-width: 72ch;
    margin-bottom: 0;
}

#modello-sistema .ws-model-grid {
    margin-top: 26px;
}

#modello-sistema .ws-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 24px rgba(17, 34, 53, 0.12);
}

#modello-sistema .ws-tile__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.15rem;
    margin-bottom: 0;
}

#modello-sistema .ws-tile__content h3 {
    margin: 0 0 4px;
}

#modello-sistema .ws-tile__content p {
    margin: 0;
}

#modello-sistema .ws-model-grid .ws-tile:nth-child(1) .ws-tile__icon,
#modello-sistema .ws-model-grid .ws-tile:nth-child(6) .ws-tile__icon {
    background: rgba(18, 130, 168, 0.12);
    color: var(--ws-blue);
}

#modello-sistema .ws-model-grid .ws-tile:nth-child(2) .ws-tile__icon,
#modello-sistema .ws-model-grid .ws-tile:nth-child(4) .ws-tile__icon {
    background: rgba(89, 181, 117, 0.14);
    color: var(--ws-green);
}

#modello-sistema .ws-model-grid .ws-tile:nth-child(3) .ws-tile__icon {
    background: rgba(230, 38, 107, 0.12);
    color: var(--ws-pink);
}

#modello-sistema .ws-model-grid .ws-tile:nth-child(5) .ws-tile__icon {
    background: rgba(236, 107, 92, 0.14);
    color: #ec6b5c;
}

@media (max-width: 760px) {
    #modello-sistema .ws-model-intro {
        text-align: center;
    }

    #modello-sistema .ws-model-intro h2,
    #modello-sistema .ws-model-intro .ws-lead {
        text-align: center;
    }
}

.ws-hero .ws-btn--primary {
    background: linear-gradient(135deg, #0f7ea6, #1a8fbc);
    box-shadow: 0 10px 24px rgba(15, 126, 166, 0.28);
}

.ws-hero .ws-btn--success {
    background: linear-gradient(135deg, #1ebb60, #33ce74);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(30, 187, 96, 0.28);
}

.ws-hero__microcopy {
    margin-top: 14px;
    font-size: 0.96rem;
    color: #7c858d;
    font-style: italic;
}

.ws-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ws-kpi {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 11px 16px;
}

.ws-kpi strong {
    color: var(--ws-green);
    font-size: 1.32rem;
}

.ws-img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.ws-hero__media {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    border-radius: 16px;
    position: relative;
}

.ws-hero__media img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 420px;
}

.ws-kpi-card {
    position: absolute;
    left: -22px;
    bottom: -20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.ws-kpi-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(89, 181, 117, 0.14);
    color: #53ae70;
}

.ws-kpi-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #4d4c4c;
}

.ws-kpi-card small {
    display: block;
    font-size: 1rem;
    color: #7c8788;
}

.ws-card,
.ws-tile,
.ws-mini,
.ws-glass,
.ws-stat {
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(17, 34, 53, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ws-icon,
.ws-tile__icon,
.ws-mini__icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ws-icon i,
.ws-tile__icon i,
.ws-mini__icon i {
    line-height: 1;
}

.ws-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.ws-icon--blue {
    background: var(--ws-blue);
}

.ws-icon--blue i {
    color: #fff;
}

.ws-icon--green {
    background: var(--ws-green);
}

.ws-icon--green i {
    color: #fff;
}

.ws-icon--pink {
    background: var(--ws-pink);
}

.ws-icon--pink i {
    color: #fff;
}

.ws-icon--lime {
    background: #6f9630;
}

.ws-icon--lime i {
    color: #fff;
}

.ws-tile {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    row-gap: 2px;
    align-items: start;
}

.ws-tile__icon {
    background: #f2f7fa;
    margin-bottom: 0;
    width: 28px;
    height: 28px;
    font-size: 0.74rem;
    color: #64808d;
}

.ws-tile h3,
.ws-tile p {
    grid-column: 2;
}

.ws-tile h3 {
    margin: 0 0 2px;
}

.ws-tile p {
    margin: 0;
}

.ws-grid-3 .ws-tile:nth-child(1) .ws-tile__icon,
.ws-grid-3 .ws-tile:nth-child(6) .ws-tile__icon {
    color: var(--ws-blue);
}

.ws-grid-3 .ws-tile:nth-child(2) .ws-tile__icon {
    color: var(--ws-green);
}

.ws-grid-3 .ws-tile:nth-child(3) .ws-tile__icon,
.ws-grid-3 .ws-tile:nth-child(5) .ws-tile__icon {
    color: #5f6368;
}

.ws-grid-3 .ws-tile:nth-child(4) .ws-tile__icon {
    color: var(--ws-pink);
}

.ws-mini__icon {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
}

.ws-mini--pink .ws-mini__icon i {
    color: var(--ws-pink);
}

.ws-mini--blue .ws-mini__icon i {
    color: var(--ws-blue);
}

.ws-mini--green .ws-mini__icon i {
    color: var(--ws-green);
}

.ws-mini--lime .ws-mini__icon i {
    color: #6f9630;
}

.ws-card h3,
.ws-tile h3,
.ws-mini h3,
.ws-glass h3,
.ws-stat strong {
    margin-top: 0;
}

.ws-card--blue {
    background: linear-gradient(145deg, rgba(18, 130, 168, 0.08), rgba(55, 154, 196, 0.13));
}

.ws-card--green {
    background: linear-gradient(145deg, rgba(89, 181, 117, 0.08), rgba(140, 193, 99, 0.13));
}

.ws-card--pink {
    background: linear-gradient(145deg, rgba(230, 38, 107, 0.08), rgba(236, 107, 92, 0.13));
}

.ws-card--lime {
    background: linear-gradient(145deg, rgba(140, 193, 99, 0.1), rgba(182, 214, 122, 0.16));
}

.ws-section--soft {
    background: linear-gradient(140deg, rgba(18, 130, 168, 0.06), rgba(89, 181, 117, 0.06));
}

#come-funziona .ws-grid-3 {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: visible;
    padding-bottom: 0;
}

#come-funziona .ws-grid-3 .ws-tile {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

#come-funziona .ws-grid-3 .ws-tile:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ws-blue);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(17, 34, 53, 0.14);
    z-index: 2;
}

@media (max-width: 1100px) {
    #come-funziona .ws-grid-3 {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    #come-funziona .ws-grid-3 .ws-tile {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

.ws-tile {
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 34, 53, 0.1);
}

.ws-logo-app {
    max-height: 76px;
    width: auto;
    margin-bottom: 10px;
}

.ws-mini {
    box-shadow: 0 10px 22px rgba(17, 34, 53, 0.1);
}

.ws-mini--pink {
    background: rgba(230, 38, 107, 0.07);
}

.ws-mini--blue {
    background: rgba(18, 130, 168, 0.07);
}

.ws-mini--green {
    background: rgba(89, 181, 117, 0.07);
}

.ws-mini--lime {
    background: rgba(140, 193, 99, 0.1);
}

.ws-section--soft-blue {
    background: linear-gradient(140deg, rgba(55, 154, 196, 0.08), rgba(18, 130, 168, 0.07));
}

#sistema-fisico-digitale > .ws-container > h2,
#sistema-fisico-digitale > .ws-container > .ws-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#sistema-fisico-digitale .ws-phygital-grid {
    margin-top: 26px;
}

.ws-phygital-card {
    border-radius: 22px;
    padding: 42px;
}

.ws-phygital-card--physical {
    background: #dbe8ee;
}

.ws-phygital-card--digital {
    background: #eee3e8;
}

.ws-phygital-card__icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2.1rem;
    color: #fff;
}

.ws-phygital-card--physical .ws-phygital-card__icon {
    background: var(--ws-blue);
}

.ws-phygital-card--digital .ws-phygital-card__icon {
    background: var(--ws-pink);
}

.ws-phygital-card h3 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.ws-phygital-card p {
    margin: 0 0 18px;
    color: #6d7a81;
    font-size: 1.15rem;
}

.ws-phygital-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.ws-phygital-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #68757d;
    font-size: 1.08rem;
}

.ws-phygital-card--physical .ws-phygital-list i {
    color: var(--ws-blue);
}

.ws-phygital-card--digital .ws-phygital-list i {
    color: var(--ws-pink);
}

#servizi-modulari .ws-services-stack {
    display: grid;
    gap: 26px;
}

.ws-service-band {
    background: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 14px 30px rgba(17, 34, 53, 0.12);
    padding: 18px 18px 16px;
}

.ws-service-band h3 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.ws-service-band__list {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 20px;
}

.ws-service-band__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #66757d;
    font-size: 1rem;
}

.ws-service-band__cta {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 10px 14px;
}

.ws-service-band__cta i {
    color: #fff;
}

.ws-service-band__cta--green {
    background: linear-gradient(135deg, #1ebb60, #33ce74);
    border-color: transparent;
    color: #fff;
}

.ws-service-band__cta--blue {
    background: linear-gradient(135deg, #0f7ea6, #1a8fbc);
    border-color: transparent;
    color: #fff;
}

.ws-service-band--blue .ws-service-band__list i {
    color: var(--ws-blue);
}

.ws-service-band--green .ws-service-band__list i,
.ws-service-band--lime .ws-service-band__list i {
    color: var(--ws-green);
}

.ws-service-band--pink .ws-service-band__list i {
    color: var(--ws-pink);
}

@media (max-width: 1024px) {
    .ws-service-band__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ws-service-band__list {
        grid-template-columns: 1fr;
    }

    .ws-service-band__cta {
        width: 100%;
        justify-content: center;
    }
}

.ws-checks {
    margin: 18px 0 0;
    padding-left: 0;
    color: var(--ws-text);
    list-style: none;
}

.ws-checks li {
    margin: 8px 0;
    padding-left: 28px;
    position: relative;
}

.ws-checks li::before {
    content: "v";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 130, 168, 0.12);
    color: var(--ws-blue);
    font-size: 0.8rem;
    font-weight: 700;
}

.ws-media-grid .ws-img--wide {
    grid-column: span 2;
}

.ws-stat {
    background: linear-gradient(180deg, #fff, #f7fbfd);
    border: none;
    box-shadow: 0 12px 28px rgba(17, 34, 53, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
}

.ws-stat .ws-stat__icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    text-align: center;
}

.ws-stat .ws-stat__icon::before {
    margin: 0;
    line-height: 1;
}

.ws-stat--users .ws-stat__icon {
    background: rgba(18, 130, 168, 0.14);
    color: var(--ws-blue);
}

.ws-stat--learn .ws-stat__icon {
    background: rgba(89, 181, 117, 0.16);
    color: var(--ws-green);
}

.ws-stat--work .ws-stat__icon {
    background: rgba(230, 38, 107, 0.14);
    color: var(--ws-pink);
}

.ws-stat--app .ws-stat__icon {
    background: rgba(55, 154, 196, 0.14);
    color: var(--ws-blue-2);
}

.ws-stat strong {
    display: block;
    font-size: 2.3rem;
    color: var(--ws-blue);
}

.ws-stat span {
    color: var(--ws-muted);
    font-size: 0.95rem;
}

.ws-pass {
    align-items: center;
}

.ws-section--gray {
    background: linear-gradient(180deg, #f8fafc, #fff);
}

.ws-partners-box {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    border: none;
    box-shadow: 0 12px 28px rgba(17, 34, 53, 0.1);
    padding: 24px;
}

.ws-partner-tech {
    text-align: center;
}

.ws-partner-tech img {
    max-height: 40px;
    margin-top: 8px;
}

.ws-partner-placeholder {
    min-height: 90px;
    border-radius: 12px;
    background: #eff3f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-partner-placeholder span {
    opacity: 0.38;
    font-size: 1.1rem;
    color: #7a8490;
}

.ws-section--cta {
    background: linear-gradient(140deg, var(--ws-blue), var(--ws-blue-2));
    color: #fff;
}

.ws-lead--light,
.ws-section--cta .ws-glass p {
    color: rgba(255, 255, 255, 0.85);
}

.ws-section--cta h2,
.ws-section--cta h3 {
    color: #fff;
}

.ws-glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ws-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.ws-contact-list li {
    background: #f6f9fc;
    border-radius: 12px;
    padding: 12px 14px;
    display: grid;
    gap: 2px;
}

.ws-form-shell {
    background: #f6f8fb;
    border-radius: 16px;
    padding: 22px;
}

.ws-form-shell .wecoop-contact-form {
    background: transparent;
    border: 0;
    padding: 0;
}

.ws-footer {
    background: #4d4c4c;
    color: #fff;
    padding: 58px 0 34px;
}

.ws-footer-logo {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.ws-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ws-footer-brand span {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.ws-footer h4 {
    margin: 0 0 10px;
}

.ws-footer a,
.ws-footer span,
.ws-footer p {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    margin: 6px 0;
    font-size: 0.95rem;
}

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

.ws-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ws-footer-brands {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ws-footer-brands img:first-child {
    max-height: 56px;
    filter: brightness(0) invert(1);
}

.ws-footer-brands img:last-child {
    max-height: 36px;
    opacity: 0.78;
}

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

    .ws-grid-4,
    .ws-partners-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ws-links {
        display: none;
    }

    .ws-lang-switcher {
        margin-left: auto;
    }

    .ws-nav__inner {
        min-height: 80px;
    }

    .ws-brand img {
        width: 36px;
        height: 36px;
    }

    .ws-brand span {
        font-size: 1.18rem;
    }

    .ws-grid-2,
    .ws-grid-3,
    .ws-grid-4,
    .ws-partners-box {
        grid-template-columns: 1fr;
    }

    .ws-hero {
        padding: 46px 0;
    }

    .ws-section {
        padding: 68px 0;
    }

    .ws-btn {
        width: 100%;
    }

    .ws-actions {
        flex-direction: column;
    }

    .ws-media-grid .ws-img--wide {
        grid-column: auto;
    }

    .ws-kpi-card {
        position: static;
        margin-top: 12px;
        left: auto;
        bottom: auto;
    }
}

