:root {
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family, 'Montserrat', sans-serif);
    background: var(--color-body);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

h1, h2, h3 {
    font-weight: 600;
    font-family: var(--font-family, 'Montserrat', sans-serif);
}

button, input, textarea, select, option, a, .btn, .nav-links a {
    font-family: var(--font-family, 'Montserrat', sans-serif);
}

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

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

    .hero .container {
        padding: 0 1.5rem;
    }

    .hero__grid {
        padding: 3rem 0;
    }
}

.site-header {
    background: var(--color-header);
    color: var(--color-text-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 0.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.brand__logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.brand__eu-flag {
    height: 20px;
    width: auto;
    margin-left: 0.5rem;
}

.brand__logo--footer {
    height: 52px;
}

.brand__flags {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
}

.brand__flag {
    height: 20px;
    width: auto;
}

.logo-text {
    font-family: var(--font-family, 'Montserrat', sans-serif);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
}

.nav-links a {
    padding: 0.4rem 0.6rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta-mobile {
    display: none;
}

.lang-switcher a {
    color: var(--color-text-dark);
    padding: 0.25rem 0.4rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid transparent;
    min-width: 32px;
    text-align: center;
}

.lang-switcher a.active {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text-dark);
}

.section {
    padding: 2.25rem 0;
    background: var(--color-body);
}

.section--muted {
    background: var(--color-body);
}

.section--cta {
    background: var(--color-body);
    color: var(--color-text);
}

.section__header {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: left;
}

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

.section__header h2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section__footer {
    margin-top: 2rem;
}

.section--cta h2 {
    margin: 0 0 0.5rem;
}

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

.sectors-grid-wrap {
    background: #f3f4f6;
    padding: 2.25rem 3rem;
    border-radius: 0;
    box-shadow: none;
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.sectors-grid-wrap .section__header {
    text-align: center;
    margin: 0 auto 1.75rem;
    max-width: var(--max-width);
}

.sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.sector-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(42, 192, 189, 0.16);
    min-height: 360px;
    background: #0B0F1A;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.sector-card__media {
    position: absolute;
    inset: 0;
}

.sector-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sector-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.32) 0%, rgba(11, 15, 26, 0.8) 70%, rgba(11, 15, 26, 0.92) 100%);
}

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

.sector-card__text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
    z-index: 2;
    gap: 0.35rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.sector-card__text h3 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-size: 1.35rem;
}

.sector-card__text p {
    margin: 0 0 0.25rem;
    color: rgba(255,255,255,0.92);
}

.sector-card__text .link {
    color: #2AC0BD;
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .sector-card {
        min-height: 300px;
    }

    .sectors-grid-wrap {
        padding: 1.75rem 2rem;
    }
}

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

    .sectors-grid-wrap {
        padding: 1.25rem 1.5rem;
    }
}

.brand-cloud {
    padding: 2.25rem 0;
    background: var(--color-body);
}

.brand-cloud .container {
    width: 100%;
}

.brand-cloud__panel {
    position: relative;
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 2.25rem 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
    display: grid;
    gap: 1.4rem;
    justify-items: center;
}

.brand-cloud__header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 760px;
}

.brand-cloud__header .eyebrow {
    color: var(--color-accent);
}

.brand-cloud__header h2 {
    color: var(--color-text);
}

.brand-cloud__subtitle {
    max-width: 760px;
    margin: 0.25rem auto 0;
    color: var(--color-text-muted);
}

.brand-cloud__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.85rem 1rem;
    margin-top: 1.75rem;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: none;
    transform-origin: center;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.brand-chip:hover {
    background: rgba(42, 192, 189, 0.08);
    border-color: rgba(42, 192, 189, 0.4);
}

.brand-chip--4 {
    font-size: 1.05rem;
    padding: 0.75rem 1.15rem;
}

.brand-chip--3 {
    font-size: 1rem;
}

.brand-chip--2 {
    font-size: 0.95rem;
}

.brand-chip--1 {
    font-size: 0.9rem;
    opacity: 0.92;
}

.brand-chip--tone-1 {
    background: var(--color-surface);
}

.brand-chip--tone-2 {
    background: var(--color-surface);
}

.brand-chip--tone-3 {
    background: var(--color-surface);
}

.brand-chip--tone-4 {
    background: var(--color-surface);
}

.brand-chip--tone-5 {
    background: var(--color-surface);
}

@media (max-width: 960px) {
    .brand-cloud {
        padding: 1.75rem 0;
    }

    .brand-cloud__panel {
        padding: 2.25rem 0;
    }

    .brand-cloud__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 640px) {
    .brand-cloud__panel {
        padding: 1.5rem 0;
    }

    .brand-chip {
        justify-content: center;
        padding: 0.6rem 0.85rem;
    }
}

.brand-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0.25rem 0;
}

.brand-marquee__track {
    display: inline-flex;
    gap: 0.6rem;
    white-space: nowrap;
    animation: marquee-scroll 22s linear infinite;
}

.brand-marquee__track:hover {
    animation-play-state: paused;
}

.brand-marquee .brand-chip {
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


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

@media (max-width: 1024px) {
    .cards-3 {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 640px) {
    .cards-3 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.cards-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cards-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 0.25rem;
}

.card--link {
    color: inherit;
    text-decoration: none;
}

.card--link:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}


    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card--flat {
    box-shadow: none;
}

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

.card__badge {
    display: none;
}

.card__media {
    margin: -1.25rem -1.25rem 0.35rem;
    overflow: hidden;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.card__media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.card__media--placeholder {
    display: grid;
    place-items: center;
    height: 160px;
    background: linear-gradient(135deg, rgba(42,192,189,0.12), rgba(11,15,26,0.06));
    color: var(--color-text);
    font-weight: 700;
    text-align: center;
    padding: 0.5rem;
}

.card__title-tight {
    margin-top: 0;
    margin-bottom: 0.15rem;
}

.card p {
    margin: 0.15rem 0 0;
}


.industries-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.industry-mosaic {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    min-height: 220px;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.industry-mosaic:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.industry-mosaic__media {
    position: relative;
    overflow: hidden;
}

.industry-mosaic__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.industry-mosaic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0) 20%, rgba(11, 15, 26, 0.45) 80%);
}

.industry-mosaic__text {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    z-index: 2;
    color: #fff;
    background: linear-gradient(180deg, rgba(11,15,26,0) 0%, rgba(11,15,26,0.65) 100%);
}

.industry-mosaic__text h3 {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    color: #fff;
}

.industry-mosaic__text p {
    margin: 0 0 0.35rem;
    color: rgba(255,255,255,0.85);
}

.industry-mosaic .link {
    color: #fff;
    text-decoration: underline;
}

.industry-mosaic:hover .industry-mosaic__media img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .industry-mosaic__media img {
        height: 200px;
    }
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.6rem;
    gap: 0.5rem;
}

.card__footer--center {
    justify-content: center;
}

.chip {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(42, 192, 189, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.chip--ghost {
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(11, 15, 26, 0.25);
    color: #F5F7FA;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn.primary {
    background: var(--color-primary);
    color: #0B0F1A;
    box-shadow: none;
    border-color: transparent;
}

.btn.primary:hover {
    background: var(--color-primary-hover);
    color: #0B0F1A;
}

.btn.secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn.ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.btn.full {
    width: 100%;
}

.link {
    color: var(--color-primary);
    font-weight: 700;
}

.text-muted {
    color: var(--color-text-muted);
}

.lead {
    font-size: 1.1rem;
    color: var(--color-text);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-body);
    color: var(--color-text);
}

.hero--compact {
    background: var(--color-body);
}

.hero--overlay {
    position: relative;
    overflow: hidden;
    color: #fff;
}
.hero--overlay .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero--overlay .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    object-position: 65% center;
}
.hero--overlay .hero__bg .hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}
.hero--overlay .hero__content,
.hero--overlay .hero__actions {
    position: relative;
    z-index: 1;
}
.hero--overlay .text-light {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero--overlay .eyebrow--light {
    color: #7be3d4;
}
.hero--overlay .btn.secondary {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.hero--overlay .btn.secondary:hover {
    background: rgba(255,255,255,0.18);
}

.hero--overlay .hero__grid {
    min-height: 60vh;
}

.card__media--map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: var(--radius);
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 1100px) {
    .hero__grid {
        grid-template-columns: 1.25fr 0.85fr;
        gap: 2rem;
    }
}

.hero__content h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5rem;
    line-height: 1.15;
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.hero .lead {
    color: rgba(245, 247, 250, 0.92);
    font-size: 1.15rem;
    margin: 1rem 0 1.1rem;
    line-height: 1.5;
}

.hero__bullets {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.6rem;
    display: grid;
    gap: 0.65rem;
}

.hero__bullets li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(245, 247, 250, 0.9);
    line-height: 1.5;
    position: relative;
}

.hero__bullets li::before {
    content: "•";
    color: #2AC0BD;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.3rem 0 0.8rem;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 15, 26, 0.66), rgba(11, 15, 26, 0.3));
}

.hero__content {
    position: relative;
    z-index: 2;
    color: rgba(245, 247, 250, 0.9);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 15, 26, 0.5), rgba(11, 15, 26, 0));
    z-index: 1;
    pointer-events: none;
}

.hero__card .card {
    background: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);
}

.hero__card {
    max-width: 480px;
    justify-self: end;
}

.hero__card .card {
    padding: 1rem 1.25rem;
}

.mini-list {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.75rem;
    color: var(--color-text-muted);
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__actions {
    display: flex;
    gap: 0.75rem;
}

.contact-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.25rem;
    align-items: start;
}

.contact-card__intro {
    display: grid;
    gap: 0.75rem;
}

.contact-card__bullets {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0.2rem 0 0.6rem;
    color: var(--color-text-muted);
    display: grid;
    gap: 0.35rem;
}

.contact-card__image {
    margin-top: 0.5rem;
}

.contact-card__image img,
.contact-card__image-placeholder {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(42,192,189,0.08), rgba(11,15,26,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-card__form .form {
    box-shadow: none;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: start;
}

.timeline-step {
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.timeline-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #0B0F1A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.timeline-text {
    color: var(--color-text-muted);
}

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

.blog-card {
    display: grid;
    gap: 0.5rem;
}

.blog-card__meta {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.blog-post h1 {
    margin: 0.4rem 0;
}

.blog-post__meta {
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
}

.blog-post__content {
    display: grid;
    gap: 0.75rem;
    color: var(--color-text);
}

.blog-post__content p {
    margin: 0;
}

.blog-post__cta {
    margin-top: 1.5rem;
}

.trust-block {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.trust-subtitle {
    margin: 0.2rem 0 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
}

.check-list li::before {
    content: '✓';
    color: #00A859;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.trust-visual {
    background: linear-gradient(135deg, #e0f4ff 0%, #b8e4ff 100%);
    border-radius: 12px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369A1;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(42, 192, 189, 0.08);
    overflow: hidden;
}

.trust-visual__content {
    display: grid;
    gap: 0.25rem;
    font-weight: 600;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-final {
    background: linear-gradient(120deg, rgba(42,192,189,0.08), rgba(11,15,26,0.02));
}

.cta-final__box {
    background: var(--color-surface);
    border: 1px solid rgba(42, 192, 189, 0.18);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-final__box h2 {
    margin: 0 0 0.35rem;
}

.cta-final__box p {
    margin: 0 0 0.75rem;
    color: var(--color-text-muted);
}

.cta-final__contact {
    display: grid;
    gap: 0.45rem;
    color: var(--color-text);
    font-weight: 700;
    text-align: right;
}

.cta-final__contact a {
    color: var(--color-text);
}

.cta-final .cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cta-final__btn {
    background: #00A859;
    border-color: #008f4d;
    color: #ffffff;
    padding: 0.55rem 1.2rem;
    font-weight: 700;
}

.cta-final__btn:hover {
    background: #009350;
    border-color: #007f46;
    color: #ffffff;
}

.trust-note {
    display: none;
}

@media (max-width: 960px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .trust-visual {
        min-height: 240px;
    }

    .cta-final__box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-final__contact {
        text-align: left;
    }

    .cta-final .cta__actions {
        width: 100%;
    }

    .cta-final__btn {
        width: 100%;
        justify-content: center;
    }
}

#respaldo {
    background: #ffffff;
    padding: 4rem 0;
}

#respaldo .container {
    padding-top: 0;
    padding-bottom: 0;
}
.form .field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.form input,
.form textarea {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.75rem;
    font-size: 1rem;
    background: var(--color-surface);
    color: var(--color-text);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 192, 189, 0.2);
}

.form__status {
    margin-top: 0.75rem;
    font-weight: 600;
}

.form__status.success {
    color: var(--color-success);
}

.form__status.error {
    color: var(--color-error);
}

.honeypot {
    display: none;
}

.accordion details {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    background: var(--color-surface);
}

.accordion summary {
    cursor: pointer;
    font-weight: 700;
}

.accordion p {
    margin: 0.5rem 0 0;
    color: var(--color-text-muted);
}

.section--muted .card {
    background: var(--color-surface);
}

.section--muted .card--flat {
    border: 1px dashed var(--color-border);
}

.icon-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(42, 192, 189, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-footer {
    background: var(--color-footer);
    color: var(--color-text-dark);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 1rem;
}

.footer-text {
    margin: 0.25rem 0;
    color: rgba(248, 250, 252, 0.85);
}

.footer-links {
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-text-dark);
}

.social a {
    margin-right: 0.5rem;
    color: var(--color-text-dark);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.footer-social__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social__icon img {
    width: 18px;
    height: 18px;
    display: block;
    opacity: 0.9;
}

.footer-social__icon:hover img {
    opacity: 1;
}

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

.lang-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.lang-modal__content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    min-width: 280px;
    display: grid;
    gap: 0.75rem;
    text-align: center;
}

.lang-modal__options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-modal[hidden] {
    display: none !important;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--color-accent);
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.small {
    font-size: 0.9rem;
}

.layout-landing .nav-links a:not([href="#contacto"]) {
    display: none;
}

.blog-post__content ul {
    padding-left: 1.2rem;
    margin: 0;
}

.blog-post__content li {
    margin-bottom: 0.4rem;
}

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

.product-hero {
    position: relative;
    overflow: hidden;
    background: #0B0F1A;
    color: #fff;
    padding: 0;
}

.product-hero__bg {
    position: absolute;
    inset: 0;
}

.product-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,15,26,0.78), rgba(11,15,26,0.35));
}

.product-hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.product-hero__content h1 {
    margin: 0 0 0.5rem;
    font-size: 2.3rem;
    line-height: 1.1;
}

.product-hero .lead {
    color: rgba(245,247,250,0.92);
}

.product-text {
    display: grid;
    gap: 0.75rem;
}

.product-text--single {
    gap: 0;
}

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

.product-list {
    padding-left: 1.2rem;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.35rem;
    color: var(--color-text);
}

.product-list li {
    margin: 0;
}

.container.narrow {
    max-width: 960px;
}

.container.narrow-900 {
    max-width: 900px;
}

.product-slider {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.35rem;
}

.product-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0.5rem;
}

.product-slider__item {
    margin: 0;
    scroll-snap-align: center;
}

.product-slider__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-slider--wide .product-slider__item img {
    height: 320px;
}

.slider-btn {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    border-color: var(--color-primary);
}

.product-alt {
    background: #f6f8fa;
}

.product-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    padding: 0.75rem;
    display: grid;
    gap: 0.35rem;
}

.product-card__media img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.product-card__media--small img {
    height: 120px;
}

.product-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-strip__item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.product-strip--overlay .product-strip__item {
    position: relative;
    overflow: hidden;
}

.product-strip__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,15,26,0.05) 0%, rgba(11,15,26,0.7) 100%);
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.6rem;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
}

.product-list--columns {
    columns: 2;
    column-gap: 1.5rem;
}

.product-tipos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

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

@media (max-width: 640px) {
    .product-tipos {
        grid-template-columns: 1fr;
    }
}

.product-table {
    display: grid;
    gap: 0;
    margin-top: 0.5rem;
}

.product-table__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.35rem 0.1rem;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    font-size: 0.85rem;
}

.product-table__row--head {
    font-weight: 700;
    background: transparent;
    font-size: 0.82rem;
}

.product-table__row:last-child {
    border-bottom: 0;
}

.product-materials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.ventajas-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem;
    align-items: center;
}

.ventajas-left .ventajas-image img {
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    width: 100%;
    height: auto;
}

.ventajas-right h2 {
    margin: 0 0 0.35rem;
}

.ventajas-right p {
    margin: 0 0 1.5rem;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.ventaja-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    min-height: 118px;
}

.ventaja-card h3 {
    margin: 0 0 0.25rem;
}

.ventaja-card p {
    margin: 0;
}

.ventaja-icon {
    color: var(--color-primary);
    line-height: 1;
    display: inline-flex;
}

@media (max-width: 960px) {
    .ventajas-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
    }
}

.product-industrias-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: center;
}

.product-industrias-left .product-list {
    margin: 0;
}

.product-industrias-right h2 {
    text-align: right;
}

@media (max-width: 960px) {
    .product-industrias-wrap {
        grid-template-columns: 1fr;
    }

    .product-industrias-right h2 {
        text-align: left;
    }
}

.product-card--icon {
    align-items: start;
}

.product-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 720px) {
    .product-image img {
        height: 240px;
    }

    .product-card__media img {
        height: 120px;
    }

    .product-strip__item img {
        height: 110px;
    }

    .product-list--columns {
        columns: 1;
    }
}

/* App icons for metal applications */
.app-grid {
    align-items: stretch;
}

.app-card {
    display: grid;
    gap: 0.55rem;
    align-items: center;
    text-align: center;
    justify-items: center;
}

.app-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: transparent;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 78% 78%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 78% 78%;
}

/* Industrial silhouette icons (inline SVG masks) */
.app-card__icon--food {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 4h3v9a2.5 2.5 0 1 1-3 0V4zm6 0h2v6h2V4h2v6h1v2h-5v8h-2V4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 4h3v9a2.5 2.5 0 1 1-3 0V4zm6 0h2v6h2V4h2v6h1v2h-5v8h-2V4z'/%3E%3C/svg%3E");
}

.app-card__icon--pharma {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10 3h4v7h7v4h-7v7h-4v-7H3v-4h7V3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10 3h4v7h7v4h-7v7h-4v-7H3v-4h7V3z'/%3E%3C/svg%3E");
}

.app-card__icon--logistics {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M2 12h12v6h-1.4a2.6 2.6 0 0 0-5.2 0H6a2 2 0 0 1-2-2v-4zm12-5h5l3 4v5h-3v-3h-5V7zm-7.5 11a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0zm8 0a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M2 12h12v6h-1.4a2.6 2.6 0 0 0-5.2 0H6a2 2 0 0 1-2-2v-4zm12-5h5l3 4v5h-3v-3h-5V7zm-7.5 11a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0zm8 0a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0z'/%3E%3C/svg%3E");
}

.app-card__icon--mining {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 18 2.4 9.2 6 7l4 2 6-5 3 3-5 6 2 4-2 1-2-3-4 5H6.5L9 14l-3-2-2 6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 18 2.4 9.2 6 7l4 2 6-5 3 3-5 6 2 4-2 1-2-3-4 5H6.5L9 14l-3-2-2 6z'/%3E%3C/svg%3E");
}

.app-card__icon--package {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 7 12 3l8 4v10l-8 4-8-4V7zm8 1.2L7 6.1v1.9l5 2.6 5-2.6V6.1l-5 2.1zm0 4.1-5-2.6v5l5 2.6 5-2.6v-5l-5 2.6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 7 12 3l8 4v10l-8 4-8-4V7zm8 1.2L7 6.1v1.9l5 2.6 5-2.6V6.1l-5 2.1zm0 4.1-5-2.6v5l5 2.6 5-2.6v-5l-5 2.6z'/%3E%3C/svg%3E");
}

.app-card__icon--recycle {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 3 7 7l2 1 1-2 2 4H8l-2-3-3 5 2 1 2-3 2 3h6l2-4-3-5-3.5-1zm7 6 2 3 3-1-3 5h-4l1.5 2.5-1.5.9L9 15h6l2-3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 3 7 7l2 1 1-2 2 4H8l-2-3-3 5 2 1 2-3 2 3h6l2-4-3-5-3.5-1zm7 6 2 3 3-1-3 5h-4l1.5 2.5-1.5.9L9 15h6l2-3z'/%3E%3C/svg%3E");
}

.consent-banner {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: 520px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    z-index: 1100;
    color: var(--color-text);
}

.consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.consent-options {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.75rem;
    color: var(--color-text-muted);
}

.page-product h1,
.page-product h2,
.page-product h3 {
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .hero__overlay {
        background: linear-gradient(120deg, rgba(11, 15, 26, 0.72), rgba(11, 15, 26, 0.32));
    }

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
    background: var(--color-header);
    flex-direction: column;
    padding: 1rem;
    display: none;
}

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 0.6rem;
    }

    .nav-social--mobile {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .contact-card__image img,
    .contact-card__image-placeholder {
        height: 180px;
    }
}
