:root, .Colors {
  --bg: #FCFBF7;
  --bg-soft: #F3EFE6;
  --ink: #171717;
  --muted: #5D5D59;
  --line: rgba(23, 23, 23, .12);
  --line-strong: rgba(23, 23, 23, .22);
  --forest: #146243;
  --forest-dark: #0D4D34;
  --coral: #EC5C44;
  --yellow: #EEB724;
  --sand: #BDA686;
  --white: #fff;
  --header-height: 82px;
  --container: 1240px;
  --radius-video: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height, 82px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 40px;
}

nav {
    display: flex;
    align-items: center;
    margin: 0 auto; /* Centra el nav exactament al mig */
}

nav a {
    margin: 0 14px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 4px;
    position: relative;
    transition: color 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
    color:#16466f;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0D4D34;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    min-height: 44px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.03);
}

.btn:active {
    transform: scale(0.98);
}



.btn-hero {
    font-size: 18px;
    border-radius: 10px;
}



.hero {
    text-align: center;
    padding: 60px 5% 40px;
    max-width: 840px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    line-height: 1.18;
    color: #111;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #666;
    margin-bottom: 36px;
    line-height: 1.55;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

#why {
    background-color: #0d4d340a;
}

#process {
    background-color: #0d4d340a;
}

/* --- ESTILS ACCIONS DEL HEADER I IDIOMES --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.lang-selector a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    padding: 4px;
    min-width: 24px;
    text-align: center;
    transition: color 0.2s ease;
}

.lang-selector a:hover {
    color: #1a1a1a;
}

.lang-selector a.active {
    color: #16466f;
    font-weight: 700;
}

.lang-selector .separator {
    color: #dcdcdc;
    font-weight: 300;
}

/* --- BOTÓ HAMBURGUESA PER A MÒVIL --- */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    color: #1a1a1a;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid #0D4D34;
    outline-offset: 2px;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 18px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    width: 24px;
    height: 2.5px;
    background-color: #1a1a1a;
    border-radius: 4px;
    transition: transform 0.25s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -7px;
}

.hamburger-inner::after {
    bottom: -7px;
}

/* Estat obert de la hamburguesa */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
    background-color: #0D4D34;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    background-color: #0D4D34;
}

section {
    padding: 80px 5%;
}

.section-eyebrow {
    display: block;
    text-align: center;
    color: #0D4D34;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.25;
}

.section-subtitle {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .grid.grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .grid {
        gap: 40px;
    }
    .grid.grid-3 {
        gap: 32px;
    }
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-1px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); 
    border-color: #e0e0e0; 
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    font-size: 15px;
}

/* --- ESTILS SECCIÓ PROCÉS (PAS A PAS VERTICAL COMPACTE) --- */
.process-steps {
    max-width: 820px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-card {
    background: white;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-1px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); 
    border-color: #e0e0e0; 
}

.step-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #0D4D34;
    background: #E8F2EC;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 0.05em;
    margin: 0;
}

.process-card-body {
    flex: 1;
    min-width: 0;
}

.process-card-body h3 {
    font-size: 19px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.process-card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .process-card {
        padding: 18px 16px;
        gap: 14px;
    }
    .step-badge {
        font-size: 13px;
        padding: 5px 10px;
    }
    .process-card-body h3 {
        font-size: 17.5px;
        margin-bottom: 6px;
    }
}

/* --- ESTILS SECCIÓ SOLUCIONS (CUADRÍCULA 3x3 / 3 COLUMNES) --- */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.solution-card {
    background: #ffffff;
    padding: 28px 26px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-1px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); 
    border-color: #e0e0e0; 
}

.solution-card h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 16px;
}

.solution-card p {
    margin: 0;
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.solution-card p:last-child {
    margin-bottom: 0;
}

/* --- ESTILS SECCIÓ INTERMEDIATE-CTA --- */
#intermediate-CTA {
    background-color: #0D4D34;
    text-align: center;
    padding: 90px 5%;
}

#intermediate-CTA .section-title {
    color: #FCFBF7;
    margin-bottom: 16px;
}

#intermediate-CTA .section-subtitle {
    color: #FCFBF7;
    opacity: 0.92;
    margin-bottom: 0;
    max-width: 680px;
}

.cta-section {
    text-align: center;
    background-color: #1a1a1a;
    color: white;
    padding: 100px 5%;
}

.cta-section h2 {
    margin-bottom: 12px;
}

/* --- ESTILS FORMULARI DE CONTACTE (DISSENY INTEGRAT EN FOSC) --- */
.contact-form {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .contact-form {
        padding: 0;
    }
}

.hp-field {
    display: none !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #f3f4f6;
    font-weight: 500;
    font-size: 14.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #ffffff;
    background: #242424;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EEB724;
    background: #2a2a2a;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 10px;
    font-size: 13.5px;
    color: #d1d5db;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #fcfcfb;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group a {
    color: #EEB724;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.checkbox-group a:hover {
    color: #f4d88c;
}

.form-meta {
    font-size: 13px;
    color: #9ca3af;
    margin: 8px 0 0;
    line-height: 1.5;
}

.btn-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background-color: #EEB724;
    color: #0a1f16;
    border-radius: 10px;
    margin-top: 24px;
    letter-spacing: 0.2px;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease, color 0.2s ease;
}


.btn-submit:active {
    transform: scale(0.99);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-header{
    background-color: #16466f;

}



.form-alt-contact {
    text-align: center;
    margin-top: 20px;
    color: #9ca3af;
    font-size: 13.5px;
}

.form-alt-contact a {
    color: #EEB724;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.form-alt-contact a:hover {
    color: #e7cb7e;
}

.form-feedback {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14.5px;
    margin-top: 18px;
    text-align: center;
    line-height: 1.5;
}

.form-feedback.success {
    font-weight: 500;
}

.form-feedback.error {
    background-color: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-weight: 500;
}

/* --- ESTILS FOOTER (COMPATIBLE DESKTOP I MÒBIL) --- */
.site-footer {
    background: #fafafa;
    padding: 60px 5% 32px;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 36px;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: #999;
    font-style: italic;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 4px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #0D4D34;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid #eaeaea;
    color: #999;
    font-size: 13.5px;
}

/* Estils per a l'acordió de les Preguntes Freqüents */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

/* Amaguem la fletxa per defecte del navegador */
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 48px;
    cursor: pointer;
    list-style: none; 
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary strong {
    font-size: 17.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-item p {
    margin: 4px 0 16px 0;
    color: #666;
    line-height: 1.65;
    font-size: 15px;
}

/* Icona + animada */
.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* Quan està obert, el '+' gira 45 graus per semblar una 'x' */
details[open] .faq-icon {
    transform: rotate(45deg);
    color: #0D4D34;
}

/* --- ESTILS DEL VÍDEO DE CAS D'ÈXIT --- */
.hero-video-column {
    display: grid;
    min-width: 0;
    place-items: center;
    padding: 10px 5% 60px;
}

.video-frame {
    --video-radius: 12px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--video-radius);
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--video-radius);
}

/* Botó de so */
.sound-button {
    position: absolute;
    right: clamp(1rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.8rem, 4vw, 3.5rem);
    height: clamp(2.8rem, 4vw, 3.5rem);
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(0, 0, 0, .48);
    padding: 0;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 160ms ease, transform 160ms ease;
    z-index: 10;
}

.sound-button:hover {
    background: rgba(0, 0, 0, .66);
    transform: translateY(-1px);
}

.sound-icon {
    width: clamp(1.4rem, 2.4vw, 1.7rem);
    height: clamp(1.4rem, 2.4vw, 1.7rem);
}

.sound-slash { opacity: 0; transition: opacity 160ms ease; }
.sound-waves { opacity: 1; transition: opacity 160ms ease; }
.sound-button.is-muted .sound-slash { opacity: 1; }
.sound-button.is-muted .sound-waves { opacity: 0; }

/* Classe per ocultar text a nivell visual però mantenir-lo per a lectors de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.solutions-cta-banner {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto 30px;
    padding: 32px 24px;
    background-color: #0d4d3412; /* Ajusta al color del teu fons secundari */
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-sizing: border-box;
}

.solutions-cta-banner h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111827;
}

.solutions-cta-banner p {
    max-width: 650px;
    margin: 0 auto 20px auto;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}



/* ============================================================
   RESPONSIVE UX/UI BREAKPOINTS & MOBILE OPTIMIZATIONS
   ============================================================ */

/* --- TABLETS I MÒBILS (< 860px) --- */
@media (max-width: 860px) {
    :root {
        --header-height: 70px;
    }

    header {
        padding: 14px 5%;
    }

    /* Mostrar botó hamburguesa */
    .mobile-menu-toggle {
        display: inline-flex;
    }

    /* Panell desplegable de navegació mòbil */
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: calc(var(--header-height, 70px) + 30px) 24px 40px;
        gap: 32px;
        z-index: 999;
        margin-left: 0;
        flex: initial;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s var(--ease), opacity 0.3s ease, visibility 0.35s ease;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-container.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    nav a {
        font-size: 19px;
        font-weight: 600;
        color: #1a1a1a;
        padding: 14px 16px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        box-sizing: border-box;
    }

    nav a:active {
        background-color: #F3EFE6;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 24px;
        padding-top: 16px;
        border-top: 1px solid #eaeaea;
    }

    .lang-selector {
        gap: 16px;
        font-size: 16px;
    }

    .lang-selector a {
        padding: 8px 12px;
        font-size: 16px;
    }

    .btn-header {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 17px;
    }

    

    /* Ajustos de seccions */
    section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: clamp(24px, 4vw, 32px);
    }

    .section-subtitle {
        font-size: 15.5px;
        margin-bottom: 36px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        gap: 16px;
    }
}

/* --- MÒBILS PETITS I MITJANS (< 600px) --- */
@media (max-width: 600px) {
    header {
        padding: 12px 4%;
    }

    .hero {
        padding: 50px 4% 40px;
    }

    .hero h1 {
        font-size: 27px;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 28px;
    }

    .btn-hero {
        width: 100%;
        max-width: 340px;
        padding: 15px 20px;
        font-size: 17px;
    }

    .hero-video-column {
        padding: 0 4% 50px;
    }

    section {
        padding: 50px 4%;
    }

    .section-eyebrow {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 30px;
    }

    .card {
        padding: 22px 20px;
    }

    .card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .solution-card {
        padding: 22px 20px;
    }

    .solution-card h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .solution-card p {
        font-size: 14px;
    }

    .solutions-cta-banner {
        margin-top: 28px;
        padding: 24px 18px;
    }

    .solutions-cta-banner h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .solutions-cta-banner p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .solutions-cta-banner .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-section {
        padding: 60px 4%;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .contact-form {
        padding: 0;
        border-radius: 0;
    }

    /* Mínim 16px font-size per evitar auto-zoom a iOS Safari */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .btn-submit {
        padding: 16px 20px;
        font-size: 16.5px;
        border-radius: 10px;
    }

    .checkbox-group label {
        font-size: 13px;
    }

    .faq-item summary strong {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14.5px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Evitar scroll del body quan el menú està obert */
body.menu-open {
    overflow: hidden;
    touch-action: none;
}