/**
 * Del Ande - Premium Stylesheet
 * Architectural & Advanced Design (Awwwards Style)
 */

:root {
    /* === Colors (paleta oficial Del Ande extraída del logo) === */
    --color-primary: #112720;        /* verde-negro corporativo */
    --color-secondary: #ec1c24;      /* ROJO brand (antes era dorado) */
    --color-secondary-soft: #f04a51;
    --color-secondary-deep: #c0151c;
    --color-accent-green: #036738;   /* verde oscuro Del Ande */
    --color-accent-green-mid: #119344;
    --color-light: #F8F5EE;
    --color-white: #FFFFFF;
    --color-text: #2A3530;
    --color-text-muted: #6B7773;
    --color-red: #ec1c24;
    --color-green: #036738;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing Scale */
    --space-xs: 10px;
    --space-sm: 20px;
    --space-md: 40px;
    --space-lg: 80px;
    --space-xl: 120px;

    /* Sizing */
    --container-max: 1440px;
    --container-pad: 5%;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-round: 50%;

    /* Logo sizes */
    --logo-height: 70px;
    --logo-height-scrolled: 55px;
    --logo-name-size: 26px;
    --logo-name-scrolled: 20px;
    --logo-slogan-size: 12px;
    --logo-slogan-scrolled: 10px;
    --logo-large-height: 120px;
    --logo-large-name: 38px;
    --logo-large-slogan: 16px;

    /* Helpers */
    --transition-smooth: cubic-bezier(0.85, 0, 0.15, 1);
}

html[lang="ko"] {
    --font-heading: 'Inter', 'Noto Sans KR', sans-serif;
    --font-body: 'Inter', 'Noto Sans KR', sans-serif;
}

html[lang="ja"] {
    --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;
}

/* ================= RESET & SETUP ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
.brand-logo {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 400;
}

.italic {
    font-style: normal;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ================= CUSTOM CURSOR (Simplified) ================= */
/* DEPRECATED v1 — ver bloque CURSOR FINAL al final del archivo */

/* ================= PRELOADER ================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Fallback: si JS no lo quita, después de 4s se desvanece y desaparece */
    animation: preloader-safety-fade 0.6s ease 4s forwards;
}

/* Skip preloader cuando el usuario ya lo vio en esta sesión
   (cambio de idioma, click en "Inicio", etc.) — evita pasar por la animación cada vez */
html[data-no-preloader] .preloader {
    display: none !important;
    animation: none !important;
}

html[data-no-preloader] body.loading {
    overflow: auto !important;
}

@keyframes preloader-safety-fade {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* Si body ya no está en loading, ocultar preloader */
body:not(.loading) .preloader {
    display: none;
}

.preloader-logo {
    margin-bottom: 30px;
}

.preloader-logo-img {
    display: none;
}

.logo-combo--large .logo-icon {
    height: var(--logo-large-height);
}

.logo-combo--large .logo-name {
    font-size: var(--logo-large-name);
    line-height: 0.9;
}

.logo-combo--large .logo-slogan {
    font-size: var(--logo-large-slogan);
    margin-top: 4px;
}

.preloader-tagline {
    color: var(--color-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 20px;
    opacity: 0.7;
}

.progress-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
}

/* ================= BUTTONS ================= */
.btn-outline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--color-white);
    transition: background 0.4s, color 0.4s;
}

.navbar.scrolled .btn-outline {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.navbar.scrolled .btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-solid {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.4s var(--transition-smooth);
}

.btn-solid:hover {
    transform: scale(1.05);
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    transition: padding 0.5s var(--transition-smooth), background 0.5s, border-color 0.5s;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(244, 242, 238, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.brand-logo {
    display: flex;
    align-items: center;
}

/* --- NEW LOGO COMBO --- */
.logo-combo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-combo .logo-icon {
    height: var(--logo-height);
    max-height: var(--logo-height);
    width: auto;
    transition: all 0.4s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    object-fit: contain;
}

/* Logo SIEMPRE visible (en home, hero scroll, e interiores) */
.navbar .brand-logo .logo-combo,
.navbar.scrolled .brand-logo .logo-combo,
body.interior .navbar .brand-logo .logo-combo {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Sombra extra para que el logo se lea bien sobre el video del hero */
.navbar:not(.scrolled) .brand-logo .logo-combo .logo-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.logo-combo .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-transform: none;
}

.logo-combo .logo-name {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--color-red);
    font-size: var(--logo-name-size);
    line-height: 0.9;
    letter-spacing: -0.5px;
    text-transform: none;
    transition: color 0.5s;
}

.logo-combo .logo-slogan {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    color: var(--color-green);
    font-size: var(--logo-slogan-size);
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: color 0.5s;
}

.navbar:not(.scrolled) .logo-combo .logo-name {
    color: var(--color-white);
}

.navbar:not(.scrolled) .logo-combo .logo-slogan {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .logo-combo .logo-icon {
    height: var(--logo-height-scrolled);
    max-height: var(--logo-height-scrolled);
}

.navbar.scrolled .logo-combo .logo-name {
    font-size: var(--logo-name-scrolled);
}

.navbar.scrolled .logo-combo .logo-slogan {
    font-size: var(--logo-slogan-scrolled);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    position: relative;
    transition: color 0.25s var(--transition-smooth);
}

.navbar.scrolled .nav-links a {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 26, 21, 0.4) 0%, rgba(18, 26, 21, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    padding: 0 5%;
    margin-top: 50px;
}

.hero-text-wrap {
    max-width: 900px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 40px;
}

.line-wrap {
    overflow: hidden;
    padding-bottom: 4px;
}

.line {
    display: block;
    transform: translateY(100%);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0;
}

.scroll-down {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.line-indicator {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.line-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    left: -100%;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    to {
        left: 100%;
    }
}

/* ================= MARQUEE ================= */
.marquee-section {
    padding: 40px 0;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.cert-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 10px 2vw;
    transition: transform 0.3s var(--transition-smooth), opacity 0.3s;
}

.cert-item:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.cert-logo-small {
    height: 40px;
    width: auto;
    max-width: 68px;
    padding: 4px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    object-fit: contain;
}

.cert-dot {
    opacity: 0.5;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ================= ABOUT / ORIGEN ================= */
.about {
    padding: 150px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    max-width: 500px;
}

.stats-row {
    display: flex;
    gap: 60px;
}

.stat h3 {
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat h3::after {
    content: '+';
    color: var(--color-secondary);
    font-size: 3rem;
}

.stat span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.badge-logo {
    width: 75%;
    height: auto;
    object-fit: contain;
    filter: saturate(1.3);
}

/* ================= PRODUCTS SWIPER ================= */
.products-premium {
    padding: 100px 0 150px;
    background: var(--color-primary);
    color: var(--color-white);
}

.products-premium .section-title {
    color: var(--color-white);
    margin-bottom: 0;
}

.products-premium .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.swiper-container-wrap {
    position: relative;
}

.slider-controls {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 15px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s, border-color 0.4s;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-white);
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
    color: var(--color-primary);
}

.products-swiper {
    padding-bottom: 50px;
    padding-left: 5%;
    overflow: hidden;
}

.product-item {
    padding-right: 40px;
}

.prod-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-bottom: 30px;
}

.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.prod-item:hover .prod-img-wrap img {
    transform: scale(1.05);
}

.prod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-reveal:hover .prod-overlay {
    opacity: 1;
}

.btn-circle {
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.4s var(--transition-smooth);
}

.hover-reveal:hover .btn-circle {
    transform: scale(1);
}

.prod-category {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 10px;
    display: block;
}

.prod-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.prod-desc {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-size: 1.05rem;
}

/* ================= PARALLAX BANNER ================= */
.parallax-banner {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.banner-img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.parallax-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 26, 21, 0.6);
    z-index: -1;
}

.banner-content {
    max-width: 800px;
    padding: 0 5%;
}

.banner-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-white);
    margin-bottom: 30px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ================= FOOTER COMPLEX ================= */
.footer-complex {
    background: var(--color-white);
    padding: 100px 0 30px;
    color: var(--color-primary);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.footer-cta-text {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 0;
}

.huge-link {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-family: var(--font-heading);
    font-style: italic;
    border-bottom: 2px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: color 0.4s;
}

.huge-link:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.logo-combo--footer .logo-icon {
    height: 80px;
}

.logo-combo--footer .logo-name {
    font-size: 28px;
}

.logo-combo--footer .logo-slogan {
    font-size: 13px;
}

.footer-addr {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ================= WHY CHOOSE US ================= */
.why-us {
    padding: 120px 0;
    background: var(--color-bg);
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--color-white);
    padding: 50px 35px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.why-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ================= PROCESS TIMELINE ================= */
.process {
    padding: 120px 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-title {
    color: var(--color-white);
}

.process-header .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 78px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-secondary);
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.process-step:hover .step-icon {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.process-step:hover .step-icon i {
    color: var(--color-primary);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ================= GLOBAL PRESENCE ================= */
.global-presence {
    padding: 120px 0;
    background: var(--color-bg);
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
}

.global-intro {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: var(--color-primary);
    border-radius: 20px;
    text-align: center;
}

.global-stat h3 {
    font-size: 3.5rem;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.global-stat span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.region-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.region-card i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: block;
}

.region-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.region-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ================= CLIENTS SECTION ================= */
/* ================= CLIENTS SECTION - LOGOS ================= */
.clients-section {
    padding: 100px 0;
    background: #f9f8f5;
    overflow: hidden;
}

.clients-section .section-tag {
    color: var(--color-secondary);
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-block {
    margin-bottom: 50px;
}

.clients-block:last-child {
    margin-bottom: 0;
}

.clients-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(26, 46, 26, 0.1);
}

.clients-subtitle i {
    font-size: 1.4rem;
    color: var(--color-secondary);
}

/* --- Clients: Logo Marquee (shared) --- */
.clients-logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    padding: 10px 0;
}

.clients-logo-marquee-track {
    display: flex;
    gap: 0;
    animation: clientsLogoScroll 35s linear infinite;
    will-change: transform;
    width: max-content;
}

/* International: more items, proportionally slower to match visual speed */
.clients-international-track {
    animation-duration: 100s;
}

.clients-logo-marquee:hover .clients-logo-marquee-track {
    animation-play-state: paused;
}

.client-logo-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 44px;
    background: #fff;
    border-radius: 10px;
    margin: 0 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 260px;
    min-height: 120px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-logo-marquee-item img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.85);
    mix-blend-mode: multiply;
    transition: filter 0.3s ease;
}

.client-logo-marquee-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 164, 105, 0.3);
}

.client-logo-marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
}

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

/* ================= CONTACT FORM ================= */
.contact-section {
    padding: 120px 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item>i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0;
}

.contact-item p a {
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.contact-item p a:hover {
    color: var(--color-secondary);
}

.contact-form-wrap {
    background: var(--color-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .btn-solid {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .btn-solid:hover {
    transform: scale(1.02);
}

.contact-form .g-recaptcha {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* ================= DEV SIGNATURE ================= */
.dev-signature {
    text-align: center;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dev-signature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.dev-signature a {
    color: var(--color-secondary);
    font-weight: 600;
    transition: opacity 0.3s;
}

.dev-signature a:hover {
    opacity: 0.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .process-timeline::before {
        display: none;
    }

    .global-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    margin-bottom: 6px;
    transition: all 0.4s var(--transition-smooth);
    border-radius: 2px;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.navbar.scrolled .menu-toggle span {
    background: var(--color-primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* When the overlay is open, the X sits on the light cream menu — keep it dark */
.menu-toggle.active span,
.navbar .menu-toggle.active span {
    background: var(--c-ink) !important;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--c-green-soft);
    outline-offset: 5px;
    border-radius: 4px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--c-cream);
    z-index: 99;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 680px;
    padding: 118px clamp(28px, 7vw, 72px) 48px;
    gap: clamp(18px, 3.4vh, 30px);
}

.mobile-link {
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 2.6rem);
    font-weight: 600;
    color: var(--c-ink);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.05;
    text-align: left;
    transition: color 0.25s var(--transition-smooth), transform 0.4s var(--transition-smooth);
    transform: translateY(16px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.26s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.30s; }

.mobile-link:hover {
    color: var(--color-secondary);
}

/* Product subcategories are not shown in the mobile menu */
.mobile-sublinks {
    display: none !important;
}

@media (max-width: 768px) {
    /* --- Navbar --- */
    .nav-links {
        display: none;
    }

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

    .menu-toggle {
        display: block;
    }

    /* --- Hero --- */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero-content {
        margin-top: 0;
    }

    /* --- About / Origen --- */
    .about {
        padding: 80px 0;
    }

    .floating-badge {
        width: 90px;
        height: 90px;
        bottom: -15px;
        left: 10px;
    }

    .stat h3 {
        font-size: 3rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 25px;
    }

    /* --- Why Us --- */
    .why-us {
        padding: 80px 0;
    }

    .why-header {
        margin-bottom: 40px;
    }

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

    .why-card {
        padding: 35px 25px;
    }

    /* --- Process --- */
    .process {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* --- Products --- */
    .products-premium {
        padding: 80px 0 100px;
    }

    .products-header {
        margin-bottom: 40px;
    }

    .slider-controls {
        top: 30%;
        padding: 0 8px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .swiper-button-prev i,
    .swiper-button-next i {
        font-size: 1.2rem;
    }

    .product-item {
        padding-right: 15px;
    }

    .prod-title {
        font-size: 1.5rem;
    }

    /* --- Parallax Banner --- */
    .parallax-banner {
        height: 60vh;
    }

    .banner-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .banner-content p {
        font-size: 1rem;
    }

    /* --- Global Presence --- */
    .global-presence {
        padding: 80px 0;
    }

    .global-header {
        margin-bottom: 40px;
    }

    .global-intro {
        font-size: 1rem;
    }

    .global-stats {
        grid-template-columns: 1fr 1fr;
        padding: 30px 20px;
        gap: 25px;
        margin-bottom: 40px;
    }

    .global-stat h3 {
        font-size: 2rem;
    }

    .global-stat span {
        font-size: 0.7rem;
    }

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

    .region-card {
        padding: 30px 25px;
    }

    /* --- Clients --- */
    .clients-section {
        padding: 80px 0;
    }

    .clients-subtitle {
        font-size: 1.1rem;
    }

    .client-logo-marquee-item {
        padding: 22px 28px;
        min-width: 200px;
        min-height: 95px;
        margin: 0 8px;
    }

    .client-logo-marquee-item img {
        max-width: 165px;
        max-height: 65px;
    }

    /* --- Contact --- */
    .contact-section {
        padding: 80px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 25px;
    }

    .contact-form .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }

    /* --- Footer --- */
    .footer-complex {
        padding: 60px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* --- Marquee --- */
    .marquee-section {
        padding: 25px 0;
    }

    .marquee-inner {
        font-size: 1.1rem;
    }

    .cert-logo-small {
        height: 28px;
        max-width: 48px;
    }

    /* --- Banner image mobile --- */
    .banner-img {
        background-image: url('../img/pallarax_banner-mobile.webp') !important;
    }
}

/* ================= EXTRA SMALL SCREENS ================= */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .global-stats {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .global-stat h3 {
        font-size: 2.5rem;
    }

    .contact-form-wrap {
        padding: 20px 15px;
    }

    .contact-form .g-recaptcha {
        transform: scale(0.82);
        transform-origin: center;
    }

    .btn-solid {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .mobile-link {
        font-size: 1.8rem;
    }

    .cert-modal-content {
        padding: 35px 25px;
    }

    .cert-modal-img {
        height: 80px;
    }

    .cert-modal-content h3 {
        font-size: 1.4rem;
    }

    .client-logo-marquee-item {
        padding: 18px 22px;
        min-width: 180px;
        min-height: 80px;
        margin: 0 6px;
    }

    .client-logo-marquee-item img {
        max-width: 140px;
        max-height: 55px;
    }

    .slider-controls {
        top: 28%;
        padding: 0 5px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

/* ================= CERTIFICATION MODALS ================= */
.cert-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.cert-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cert-modal-content {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cert-modal-overlay.active .cert-modal-content {
    transform: translateY(0);
}

.cert-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.cert-modal-close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.cert-modal-img {
    height: 120px;
    margin-bottom: 25px;
    object-fit: contain;
}

.cert-modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.cert-modal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(60, 60, 60, 0.8);
}

/* ================= PICTURE ELEMENTS ================= */
.prod-img-wrap picture,
.img-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.prod-img-wrap picture img,
.img-wrapper picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner mobile optimization is inside the main 768px media query */


/* ============================================================
   ⬇⬇⬇ MULTI-PAGE: NUEVOS COMPONENTES (v2)
   Dropdown nav, WhatsApp float, breadcrumb, page-hero, catálogo,
   ficha de producto, calidad cards, MVV, contacto-cta, etc.
   ============================================================ */

/* ---------- Dropdown del menú "Productos" ---------- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.95em;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 14px 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--color-primary) !important;
    font-size: 0.93rem;
    font-weight: 400;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--color-light);
    color: var(--color-secondary) !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-head {
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 6px;
    padding-bottom: 12px !important;
}

.nav-dropdown-label {
    display: block;
    padding: 12px 16px 4px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Estado activo del menú */
.nav-links a.active,
.nav-links .nav-dropdown-toggle.active {
    color: var(--color-secondary) !important;
}

.nav-links a.active::after,
.nav-links .nav-dropdown-toggle.active::after {
    width: 100% !important;
}

/* ---------- Submenu mobile ---------- */
.mobile-sublinks {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 8px 10px;
    max-width: 520px;
    padding: 2px 0 4px;
    margin: 4px 0 2px;
    opacity: 1;
}

.mobile-sublink {
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 7px 15px !important;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    transition: color 0.25s var(--transition-smooth),
                background 0.25s var(--transition-smooth),
                border-color 0.25s var(--transition-smooth),
                transform 0.25s var(--transition-smooth);
}

.mobile-sublink:hover {
    color: #fff !important;
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
    }
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
    position: relative;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    color: var(--color-white);
    text-align: center;
}

.page-hero--products {
    background-image: linear-gradient(rgba(18,26,21,0.6), rgba(18,26,21,0.7)), url('../assets/img/seccion_origen.webp');
}

.page-hero--quality {
    background-image: linear-gradient(rgba(18,26,21,0.6), rgba(18,26,21,0.7)), url('../assets/img/pallarax_banner.webp');
}

.page-hero--contact {
    background-image: linear-gradient(rgba(18,26,21,0.6), rgba(18,26,21,0.7)), url('../assets/img/hero-poster.webp');
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-white);
    margin: 14px 0 18px;
    line-height: 1.1;
}

.page-hero-title i {
    font-style: normal;
}

.page-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.92;
    color: rgba(255, 255, 255, 0.88);
}

.section-tag.light {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 60px;
    }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    background: var(--color-white);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-secondary);
}

.breadcrumb .sep {
    margin: 0 10px;
    color: var(--color-text-muted);
}

.breadcrumb .current {
    color: var(--color-primary);
    font-weight: 500;
}

/* ---------- Content sections ---------- */
.content-section {
    padding: 90px 0;
    background: var(--color-white);
}

.content-section.bg-light {
    background: var(--color-light);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col .img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.two-col .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-intro {
    max-width: 720px;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.section-title.centered {
    text-align: center;
}

.centered-text {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
    color: var(--color-text-muted);
}

.centered-cta {
    text-align: center;
    margin-top: 30px;
}

.note {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---------- Botón link (flecha) ---------- */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 4px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-link:hover {
    gap: 14px;
    color: var(--color-secondary);
}

/* ---------- Grid de productos (catálogo + destacados) ---------- */
.products-grid-section {
    background: var(--color-white);
    padding: 100px 0;
}

.products-grid-section .products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-grid-section .section-intro {
    margin: 12px auto 0;
}

/* DEPRECATED v1 — products grid + card + info — sustituido por bloque H-001 al final del archivo */

.products-cta {
    text-align: center;
    margin-top: 20px;
}

/* ---------- Filtros del catálogo ---------- */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.catalog-filter {
    background: transparent;
    border: 1px solid rgba(18, 26, 21, 0.18);
    color: var(--color-primary);
    padding: 10px 22px;
    border-radius: 24px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.catalog-filter:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.catalog-filter.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.product-card.filter-hidden {
    display: none;
}

/* ---------- Ficha de producto (página) ---------- */
.product-hero {
    padding: 70px 0 50px;
    background: var(--color-white);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

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

.product-hero-info .prod-category {
    display: inline-block;
    background: var(--color-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.product-hero-info h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--color-primary);
    margin: 0 0 12px;
    line-height: 1.15;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 18px;
}

.product-desc-long {
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 28px;
}

.product-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---------- Tabla de especificaciones ---------- */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.specs-table th,
.specs-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
}

.specs-table th {
    color: var(--color-primary);
    font-weight: 600;
    width: 38%;
    background: rgba(244, 242, 238, 0.4);
}

.specs-table td {
    color: var(--color-text);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

/* ---------- Misión / Visión / Valores ---------- */
.mvv-section {
    background: var(--color-white);
    padding: 90px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-4px);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.mvv-card p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.mvv-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--color-text);
    font-size: 0.95rem;
}

.mvv-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

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

/* ---------- Calidad: cards de certificaciones ---------- */
.cert-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cert-card {
    background: var(--color-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cert-card-img {
    width: 180px;
    flex-shrink: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cert-card-img img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.cert-card-info {
    padding: 26px 30px;
    flex: 1;
}

.cert-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.cert-entity {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 14px;
}

.cert-card-info p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.93rem;
    margin: 0;
}

@media (max-width: 768px) {
    .cert-cards-grid {
        grid-template-columns: 1fr;
    }
    .cert-card {
        flex-direction: column;
    }
    .cert-card-img {
        width: 100%;
        padding: 30px 20px;
    }
}

/* ---------- Calidad pillars ---------- */
.quality-pillars {
    text-align: center;
}

.quality-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quality-pillar {
    text-align: center;
    padding: 26px 18px;
}

.quality-pillar i {
    font-size: 2.6rem;
    color: var(--color-secondary);
    margin-bottom: 14px;
    display: block;
}

.quality-pillar h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.quality-pillar p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .quality-pillars-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ---------- Calidad CTA bloque (home) ---------- */
.quality-cta {
    background: var(--color-light);
    padding: 90px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
}

.quality-logos img {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
}

.quality-logos img:hover {
    transform: scale(1.06);
}

.quality-logos.centered-logos {
    grid-template-columns: repeat(4, 1fr);
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .quality-logos.centered-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

/* ---------- Global simple section ---------- */
.global-simple {
    padding: 100px 0;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.global-simple-content {
    max-width: 760px;
    margin: 0 auto;
}

.global-simple .section-tag {
    color: var(--color-secondary);
}

.global-simple .section-title {
    color: var(--color-white);
    margin: 14px 0 24px;
}

.global-simple p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.global-simple .btn-outline {
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.global-simple .btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* ---------- Contact CTA ---------- */
.contact-cta {
    padding: 70px 0;
    background: var(--color-secondary);
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--color-primary);
    margin: 0 0 8px;
    line-height: 1.15;
}

.contact-cta-inner p {
    color: var(--color-primary);
    opacity: 0.85;
    margin: 0;
    max-width: 540px;
}

.contact-cta-inner .btn-solid {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-cta-inner .btn-solid:hover {
    background: #000;
}

@media (max-width: 768px) {
    .contact-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        text-align: left;
    }
}

/* ---------- Mapa ---------- */
.map-section {
    line-height: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* ---------- Footer extra column (Contacto) ---------- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--color-secondary);
    font-size: 1rem;
}

/* ---------- Pillars header (nosotros) ---------- */
.pillars-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ---------- About: four editorial image pillars ---------- */
.about-pillars {
    background: #fbf7f0;
    overflow: hidden;
}

.about-pillars .pillars-header {
    max-width: 760px;
    margin: 0 0 34px;
    text-align: left;
}

.about-pillars .pillars-header .section-tag {
    margin: 0 0 12px;
    color: var(--c-red);
    font-weight: 700;
}

.about-pillars .pillars-header .section-title {
    margin: 0 0 12px;
    font-size: clamp(2.35rem, 4vw, 4.35rem);
    line-height: 1.04;
    color: var(--c-ink);
}

.about-pillars .pillars-header p {
    margin: 0;
    color: var(--c-text-soft);
    font-size: clamp(0.95rem, 1.25vw, 1.12rem);
    line-height: 1.6;
}

.pillars-accent {
    display: block;
    position: relative;
    width: 58px;
    height: 2px;
    margin-top: 23px;
    background: var(--c-red);
}

.pillars-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-red);
    transform: translateY(-50%);
}

.pillar-rows {
    border-top: 1px solid rgba(255, 255, 255, 0.95);
}

.pillar-row {
    position: relative;
    min-height: 138px;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr) 52px;
    align-items: center;
    overflow: hidden;
    background: #fbf7f0;
    border-bottom: 2px solid #fff;
}

.pillar-row-media {
    position: relative;
    align-self: stretch;
    min-width: 0;
    overflow: hidden;
}

.pillar-row-media::after {
    content: '';
    position: absolute;
    inset: 0 -1px 0 auto;
    width: 28%;
    background: linear-gradient(90deg, rgba(251, 247, 240, 0), #fbf7f0 94%);
    pointer-events: none;
}

.pillar-row-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 138px;
    object-fit: cover;
}

.pillar-row-copy {
    position: relative;
    z-index: 1;
    padding: 20px 30px 20px 18px;
}

.pillar-row-copy h3 {
    margin: 0 0 7px;
    color: var(--c-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 400;
    line-height: 1.15;
}

.pillar-row-copy p {
    max-width: 590px;
    margin: 0;
    color: var(--c-text-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pillar-row-arrow {
    position: relative;
    z-index: 1;
    color: var(--c-red);
    font-size: 1.45rem;
    transition: transform 0.3s var(--ease-out);
}

.pillar-row:hover .pillar-row-arrow {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .pillar-row {
        grid-template-columns: minmax(0, 0.9fr) minmax(310px, 1.1fr) 38px;
    }

    .pillar-row-copy {
        padding-left: 8px;
        padding-right: 18px;
    }
}

@media (max-width: 680px) {
    .about-pillars .pillars-header .section-title {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .about-pillars .pillars-header p br {
        display: none;
    }

    .pillar-rows {
        display: grid;
        gap: 14px;
        border: 0;
    }

    .pillar-row {
        display: block;
        min-height: 0;
        border: 1px solid rgba(9, 48, 41, 0.1);
        background: #fff;
    }

    .pillar-row-media {
        height: 180px;
    }

    .pillar-row-media::after {
        inset: auto 0 -1px;
        width: 100%;
        height: 32%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 96%);
    }

    .pillar-row-media img {
        min-height: 0;
        object-position: center;
    }

    .pillar-row-copy {
        padding: 18px 52px 22px 20px;
    }

    .pillar-row-arrow {
        position: absolute;
        right: 20px;
        bottom: 25px;
    }
}

/* ---------- Form: opcional label ---------- */
.opt {
    color: var(--color-text-muted);
    font-size: 0.78em;
    font-weight: 400;
}

/* ---------- Form error ---------- */
.form-error {
    color: #e31837;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* ---------- Ajustes responsivos del navbar ---------- */
@media (max-width: 1100px) {
    .nav-links {
        gap: 22px;
    }
    .nav-links a,
    .nav-dropdown-toggle {
        font-size: 0.82rem;
        letter-spacing: 0.5px;
    }
    .nav-cta-desktop {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

/* ============================================================
   ⬇⬇⬇ FIXES RESPONSIVE Y SUPERPOSICIONES (v2.1)
   ============================================================ */

/* ---------- BODY INTERIOR: navbar siempre con estado "scrolled"
              (no hay hero gigante con video, navbar siempre encima de contenido) ---------- */
body.interior .navbar {
    background: rgba(244, 242, 238, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

body.interior .navbar .brand-logo .logo-combo {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

body.interior .navbar .nav-links a {
    color: var(--color-primary);
}

body.interior .navbar .nav-cta-desktop {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

body.interior .menu-toggle span {
    background: var(--color-primary);
}

/* En interior, el primer elemento del main debe compensar el navbar fixed.
   Page-hero ya tiene padding-top: 180px (no necesita más).
   Breadcrumb (en fichas de producto) NO tiene padding propio — lo agregamos. */
body.interior main > .page-hero:first-child {
    margin-top: 0;
}

body.interior main > .breadcrumb:first-child,
body.interior main > nav.breadcrumb:first-child {
    margin-top: 100px;
}

@media (max-width: 768px) {
    body.interior main > .breadcrumb:first-child,
    body.interior main > nav.breadcrumb:first-child {
        margin-top: 80px;
    }
}

/* ---------- FOOTER: ahora son 4 columnas (Brand + Productos + Empresa + Contacto) ---------- */
.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

/* ---------- HERO TITLE: el título tiene 2 líneas largas, ajustar para mobile ---------- */
.hero-title {
    line-height: 1.05;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2rem, 5.5vw, 3.4rem);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.8rem, 7.5vw, 2.6rem);
        line-height: 1.12;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .hero-cta .btn-solid,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.65rem;
    }
}

/* ---------- PAGE HERO: superposición con navbar ---------- */
.page-hero {
    padding: 160px 0 90px;
}

@media (max-width: 1024px) {
    .page-hero {
        padding: 130px 0 70px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 50px;
    }
    .page-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
    .page-hero-sub {
        font-size: 0.95rem;
    }
}

/* ---------- SECTION TITLES: control de overflow en títulos largos ---------- */
.section-title,
.page-hero-title,
.hero-title,
.product-hero-info h1,
.product-card-info h3,
.mvv-card h3,
.cert-card-info h3,
.contact-cta-inner h2 {
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
}

/* ---------- PRODUCT CARDS: mejor en pantallas estrechas ---------- */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card-info {
        padding: 20px;
    }
    .product-card-info h3 {
        font-size: 1.2rem;
    }
}

/* (product-hero-info h1 regulado arriba en bloque común) */

@media (max-width: 768px) {
    .product-hero {
        padding: 50px 0 40px;
    }
    .product-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .product-cta-row .btn-solid,
    .product-cta-row .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ---------- ESPECIFICACIONES: tabla en mobile ---------- */
@media (max-width: 540px) {
    .specs-table th,
    .specs-table td {
        display: block;
        width: 100%;
        padding: 10px 16px;
    }
    .specs-table th {
        background: rgba(244, 242, 238, 0.8);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-bottom: 4px;
        padding-top: 14px;
    }
    .specs-table td {
        padding-top: 4px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

/* ---------- CATALOG FILTERS: scroll horizontal en mobile ---------- */
@media (max-width: 600px) {
    .catalog-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-left: -5%;
        margin-right: -5%;
        padding-left: 5%;
        padding-right: 5%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .catalog-filters::-webkit-scrollbar {
        display: none;
    }
    .catalog-filter {
        flex-shrink: 0;
        font-size: 0.82rem;
        padding: 8px 18px;
    }
}

/* ---------- CONTACT CTA: superposición de botón largo ---------- */
.contact-cta-inner h2 {
    line-height: 1.2;
}

/* ---------- DROPDOWN: en pantallas medianas, posicionar mejor ---------- */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-dropdown-menu {
        min-width: 240px;
        left: auto;
        right: 0;
        transform: translateX(0) translateY(10px);
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        transform: translateX(0) translateY(0);
    }
}

/* ---------- WHATSAPP FLOAT: que no quede tapado por el form en mobile ---------- */
@media (max-width: 768px) {
    .contact-form-wrap {
        padding-bottom: 80px;
    }
}

/* ---------- TWO-COL: imagen no se aplasta ---------- */
.two-col .img-wrapper {
    min-height: 280px;
}

@media (max-width: 768px) {
    .two-col .img-wrapper {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
}

/* ---------- CONTENT-SECTION padding consistente ---------- */
@media (max-width: 480px) {
    .content-section {
        padding: 50px 0;
    }
    .mvv-section,
    .quality-cta,
    .global-simple {
        padding: 60px 0;
    }
}

/* ---------- QUALITY-LOGOS centered: evita compresión ---------- */
.quality-logos.centered-logos img {
    max-width: 130px;
    max-height: 80px;
    object-fit: contain;
}

/* ---------- FORMULARIO: form-row en mobile ---------- */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
}

/* ---------- BREADCRUMB en mobile: que no haga overflow ---------- */
@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.78rem;
    }
    .breadcrumb .current {
        display: block;
        margin-top: 4px;
    }
}

/* (mvv-card h3 ahora regulado en bloque común de títulos) */

/* ---------- WHY-CARD ajuste en mobile ---------- */
@media (max-width: 480px) {
    .why-card {
        padding: 30px 24px;
    }
    .why-card h3 {
        font-size: 1.15rem;
    }
}

/* ============================================================
   ⬇⬇⬇ DESIGN SYSTEM v3.0 — REDISEÑO PREMIUM
   Aplicando UI/UX Senior: jerarquía, espaciado, tipografía,
   text-wrap balance, micro-interacciones, accesibilidad WCAG AA.
   Inspiración: Camposol · Danper · Olmué (B2B agro-exportación).
   ============================================================ */

/* ---------- Design Tokens v3.1 — paleta oficial Del Ande ---------- */
:root {
    /* Spacing scale (4-base) */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    --s-9: 96px;
    --s-10: 128px;
    --s-11: 160px;

    /* Type scale (modular 1.25 minor third) */
    --t-xs: 0.75rem;
    --t-sm: 0.875rem;
    --t-base: 1rem;
    --t-lg: 1.125rem;
    --t-xl: 1.375rem;
    --t-2xl: 1.75rem;
    --t-3xl: 2.25rem;
    --t-4xl: 3rem;
    --t-5xl: 3.75rem;
    --t-6xl: 4.5rem;

    /* === Paleta oficial Del Ande (extraída del logo .ai) === */
    /* Verdes: del logo del cerro y "Para el mundo" */
    --c-green-deep: #003411;     /* verde casi negro (sombra cerro) */
    --c-green-dark: #036738;     /* verde oscuro corporativo */
    --c-green: #119344;          /* verde brand (slogan "Para el mundo") */
    --c-green-mid: #41654b;      /* verde oliva del cerro */
    --c-green-soft: #72b74b;     /* verde lima del cerro claro */
    --c-green-pale: #b3d680;     /* verde pálido decorativo */

    /* Rojo brand del texto "Del Ande" */
    --c-red: #ec1c24;            /* rojo brand */
    --c-red-deep: #c0151c;       /* rojo hover/pressed */
    --c-red-soft: #f04a51;       /* rojo claro */

    /* Acentos del logo */
    --c-yellow: #fff100;         /* borde amarillo del icono */
    --c-sky: #00adee;            /* azul cielo del icono */
    --c-earth: #8a5d3b;          /* marrón montaña */
    --c-earth-deep: #3b2314;     /* marrón oscuro */

    /* Sistema neutral (fondos y textos) */
    --c-deep: #0a1f12;           /* casi negro con tinte verde para hero overlay */
    --c-ink: #112720;            /* texto principal oscuro (verde-negro) */
    --c-cream: #F8F5EE;          /* fondo crema cálido */
    --c-bone: #EDE7D9;           /* fondo crema más oscuro */
    --c-line: rgba(10, 31, 18, 0.10);
    --c-line-soft: rgba(10, 31, 18, 0.05);
    --c-text: #2A3530;           /* texto cuerpo */
    --c-text-soft: #6B7773;      /* texto secundario */
    --c-text-mute: #9AA5A0;      /* texto de apoyo */

    /* === Tokens semánticos (qué usa cada cosa) === */
    --c-brand-primary: var(--c-green-dark);     /* CTAs principales y dark backgrounds */
    --c-brand-accent: var(--c-red);             /* highlights, eyebrows, líneas decorativas */
    --c-brand-soft: var(--c-green);             /* hover, secundario */

    /* Aliases legacy (para no romper estilos viejos) */
    --c-gold: var(--c-red);
    --c-gold-soft: var(--c-red-soft);
    --c-gold-deep: var(--c-red-deep);

    /* Shadow scale */
    --sh-1: 0 1px 2px rgba(15, 23, 20, 0.04);
    --sh-2: 0 4px 12px rgba(15, 23, 20, 0.06);
    --sh-3: 0 10px 30px rgba(15, 23, 20, 0.08);
    --sh-4: 0 20px 60px rgba(15, 23, 20, 0.12);

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layer */
    --z-base: 1;
    --z-overlay: 10;
    --z-nav: 100;
    --z-modal: 1000;
    --z-cursor: 9999;
}

/* ---------- Tipografía base mejorada ---------- */
body {
    font-family: var(--font-body);
    font-size: var(--t-base);
    line-height: 1.6;
    color: var(--c-text);
    background-color: var(--c-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern', 'liga', 'calt';
}

h1, h2, h3, h4, h5, h6,
.section-title, .page-hero-title, .hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    text-wrap: balance;
}

p {
    text-wrap: pretty;
    max-width: 65ch;
}

/* Selección */
::selection {
    background: var(--c-gold);
    color: var(--c-ink);
}

/* ---------- HERO REDISEÑADO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fbfaf6 0%, #f1f2ed 58%, #dfe5e0 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 20, 0.45) 0%, rgba(15, 23, 20, 0.25) 50%, rgba(15, 23, 20, 0.85) 100%),
        linear-gradient(90deg, rgba(15, 23, 20, 0.55) 0%, rgba(15, 23, 20, 0.15) 100%);
    z-index: var(--z-overlay);
}

.hero-content {
    position: relative;
    z-index: calc(var(--z-overlay) + 1);
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.hero-text-wrap {
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: var(--t-xs);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--c-gold-soft);
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.75rem);
    font-weight: 400;
    line-height: 1.15;             /* +breathing room para descenders */
    letter-spacing: -0.025em;
    color: #fff;
    text-wrap: balance;
    margin-bottom: var(--s-6);
}

.hero-title .line-wrap {
    display: block;
    overflow: hidden;
    padding-bottom: 0.18em;        /* espacio para descenders (g, y, p) */
    margin-bottom: -0.05em;        /* compensar visualmente el padding extra */
}

.hero-title .line {
    display: inline-block;
    transform: translateY(0);
    line-height: 1.15;             /* mismo line-height para que descenders no se corten */
}

.hero-title .italic {
    font-style: normal;
    font-weight: 400;
}

.hero-lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin-bottom: var(--s-7);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-4);
    align-items: center;
    margin-bottom: var(--s-8);
}

.hero-cta .btn-solid,
.hero-cta .btn-ghost,
.hero-cta .btn-outline {
    min-height: 52px;
}

/* Botones nuevos */
.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 16px 32px;
    background: var(--c-gold);
    color: var(--c-ink);
    font-family: var(--font-body);
    font-size: var(--t-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.btn-solid:hover {
    background: var(--c-gold-soft);
    color: var(--c-ink);
    transform: translateY(-2px);
    box-shadow: var(--sh-3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--t-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease-out);
}

.btn-ghost:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    background: rgba(201, 169, 97, 0.05);
}

@media (max-width: 768px) {
    .hero {
        min-height: 92vh;
    }
    .hero-title {
        font-size: clamp(1.85rem, 8.5vw, 2.6rem);
        line-height: 1.15;
    }
    .hero-lead {
        font-size: 0.95rem;
        margin-bottom: var(--s-6);
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--s-3);
        width: 100%;
        max-width: 320px;
    }
    .hero-cta .btn-solid,
    .hero-cta .btn-ghost {
        justify-content: center;
        width: 100%;
    }
    .hero-eyebrow {
        font-size: 0.7rem;
    }
}

/* ---------- SECTION TAG mejorado ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--c-gold-deep);
    margin-bottom: var(--s-4);
    padding-left: var(--s-7);
    position: relative;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--c-gold);
}

.section-tag.light {
    color: var(--c-gold-soft);
}

.section-tag.light::before {
    background: var(--c-gold-soft);
}

/* ---------- SECTION TITLE (h2) refinado ---------- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    margin-bottom: var(--s-5);
    text-wrap: balance;
    max-width: 22ch;
}

.section-title.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-title i,
.section-title .italic {
    font-style: normal;
    font-weight: 400;
}

/* ---------- ABOUT (home) refinado ---------- */
.about {
    padding: var(--s-7) 0;
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: stretch;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--sh-4);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--s-7);
    background: var(--c-cream);
}

.about-text .section-title {
    font-size: clamp(1.9rem, 2.4vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: var(--s-4);
}

.about-text > p {
    font-size: var(--t-base);
    line-height: 1.75;
    color: var(--c-text);
    margin-bottom: var(--s-4);
    max-width: 56ch;
}

.about-text .btn-link {
    margin-top: var(--s-4);
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual .img-wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.about-visual .img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    transition: transform 1.2s var(--ease-out);
}

.about-visual:hover .img-wrapper img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
        border-radius: 22px;
    }

    .about-visual {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: var(--s-6);
    }

    .about-visual {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .about-grid {
        border-radius: 18px;
    }

    .about-text {
        padding: var(--s-5);
    }

    .about-visual {
        min-height: 180px;
    }
}

/* ---------- PRODUCTS GRID SECTION (home) refinada ---------- */
.products-grid-section {
    padding: var(--s-10) 0 var(--s-9);
    background: var(--color-white);
}

.products-grid-section .products-header {
    text-align: left;
    margin-bottom: var(--s-8);
    max-width: 720px;
}

.products-grid-section .products-header .section-title {
    margin-bottom: var(--s-3);
}

.products-grid-section .section-intro {
    color: var(--c-text-soft);
    font-size: var(--t-lg);
    line-height: 1.55;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--s-5);
    margin-bottom: var(--s-7);
}

/* ---------- PRODUCT CARD rediseñada ---------- */
.product-card {
    display: block;
    background: #fff;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--c-line);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.3s;
    border-radius: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-4);
    border-color: var(--c-gold);
    color: inherit;
}

/* === Estilos vivos del product-card v3 (los que NO conflictan con H-001) === */
.product-card-tag {
    position: absolute;
    top: var(--s-4);
    left: var(--s-4);
    background: rgba(255, 255, 255, 0.94);
    color: var(--c-ink);
    font-family: var(--font-body);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 2px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.product-card-info h3 {
    font-family: var(--font-heading);
    font-size: var(--t-xl);
    font-weight: 400;
    color: var(--c-ink);
    margin: 0 0 var(--s-2);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.product-card-info p {
    color: var(--c-text-soft);
    font-size: var(--t-sm);
    line-height: 1.55;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-green-dark);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: gap 0.3s var(--ease-out), color 0.3s;
    margin-top: auto;
}

.product-card-link i {
    transition: transform 0.3s var(--ease-out);
}

.product-card:hover .product-card-link {
    gap: 12px;
    color: var(--c-red);
}

.product-card:hover .product-card-link i {
    transform: translateX(4px);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-4);
    border-color: var(--c-green);
    color: inherit;
}

.product-card {
    background: #fff;
    border: 1px solid var(--c-line);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.3s;
}

/* ---------- WHY-US refinado ---------- */
.why-us {
    padding: var(--s-10) 0;
    background: var(--c-cream);
}

.why-header {
    text-align: center;
    margin-bottom: var(--s-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-header .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
}

.why-card {
    background: #fff;
    padding: var(--s-7) var(--s-5) var(--s-6);
    border: 1px solid var(--c-line);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
    border-color: var(--c-gold-soft);
}

.why-card .why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-cream);
    color: var(--c-gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--s-5);
    transition: background 0.3s, color 0.3s;
}

.why-card:hover .why-icon {
    background: var(--c-gold);
    color: #fff;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: var(--t-xl);
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: var(--s-3);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: var(--t-sm);
    line-height: 1.65;
    color: var(--c-text-soft);
    margin: 0;
}

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

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

/* ---------- QUALITY-CTA (home) refinado ---------- */
.quality-cta {
    padding: var(--s-10) 0;
    background: var(--c-deep);
    color: #fff;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-9);
    align-items: center;
}

.quality-text .section-tag {
    color: var(--c-gold-soft);
}

.quality-text .section-tag::before {
    background: var(--c-gold-soft);
}

.quality-text .section-title {
    color: #fff;
}

.quality-text > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--t-base);
    line-height: 1.7;
    margin-bottom: var(--s-6);
    max-width: 50ch;
}

.quality-text strong {
    color: var(--c-gold);
    font-weight: 500;
}

.quality-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--s-7);
    border-radius: 4px;
}

.quality-logos img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 0 auto;
    filter: brightness(1.05) contrast(1.05);
    transition: transform 0.4s var(--ease-out);
}

.quality-logos img:hover {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: var(--s-7);
    }
    .quality-logos {
        padding: var(--s-5);
    }
}

/* ---------- GLOBAL SIMPLE refinado ---------- */
.global-simple {
    padding: var(--s-10) 0;
    background: var(--c-cream);
    color: var(--c-ink);
    text-align: center;
    border-top: 1px solid var(--c-line);
}

.global-simple-content {
    max-width: 720px;
    margin: 0 auto;
}

.global-simple .section-tag {
    color: var(--c-gold-deep);
    margin-left: auto;
    margin-right: auto;
}

.global-simple .section-title {
    color: var(--c-ink);
    margin: 0 auto var(--s-5);
}

.global-simple p {
    color: var(--c-text);
    margin: 0 auto var(--s-7);
    font-size: var(--t-base);
    line-height: 1.7;
    max-width: 60ch;
}

.global-simple .btn-outline {
    color: var(--c-ink);
    border: 1px solid var(--c-ink);
    background: transparent;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: var(--t-sm);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s var(--ease-out);
}

.global-simple .btn-outline:hover {
    background: var(--c-ink);
    color: var(--c-gold-soft);
}

/* ---------- CONTACT CTA refinado ---------- */
.contact-cta {
    padding: var(--s-9) 0;
    background: var(--c-gold);
}

.contact-cta-inner h2 {
    color: var(--c-ink);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.15;
    margin: 0 0 var(--s-2);
    text-wrap: balance;
}

.contact-cta-inner p {
    color: rgba(15, 23, 20, 0.75);
    font-size: var(--t-base);
    margin: 0;
    max-width: 50ch;
}

.contact-cta-inner .btn-solid {
    background: var(--c-ink);
    color: #fff;
}

.contact-cta-inner .btn-solid:hover {
    background: #000;
    color: var(--c-gold-soft);
}

/* ---------- PAGE HERO refinado (interior) ---------- */
.page-hero {
    padding: 180px 0 100px;
    background-color: var(--c-deep);
    background-size: cover;
    background-position: center;
    text-align: left;
    color: #fff;
    position: relative;
}

.page-hero .container {
    max-width: 1200px;
    position: relative;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: var(--s-4) 0 var(--s-4);
    max-width: 18ch;
    text-wrap: balance;
}

.page-hero-title i {
    font-style: normal;
    font-weight: 400;
}

.page-hero-sub {
    font-size: var(--t-lg);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 56ch;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 70px;
    }
    .page-hero-title {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }
    .page-hero-sub {
        font-size: var(--t-base);
    }
}

/* ---------- BREADCRUMB refinado ---------- */
.breadcrumb {
    background: #fff;
    padding: var(--s-4) 0;
    border-bottom: 1px solid var(--c-line);
    font-size: var(--t-sm);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-2);
}

.breadcrumb a {
    color: var(--c-text-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--c-gold-deep);
}

.breadcrumb .sep {
    color: var(--c-text-mute);
}

.breadcrumb .current {
    color: var(--c-ink);
    font-weight: 500;
}

/* ---------- CONTENT SECTIONS refinadas ---------- */
.content-section {
    padding: var(--s-10) 0;
}

.content-section.bg-light {
    background: var(--c-cream);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-9);
    align-items: center;
}

.two-col > div:first-child {
    max-width: 56ch;
}

.two-col p {
    font-size: var(--t-base);
    line-height: 1.75;
    color: var(--c-text);
    margin-bottom: var(--s-4);
}

.two-col .img-wrapper {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--sh-3);
}

@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
    .two-col .img-wrapper {
        aspect-ratio: 16 / 10;
    }
}

/* ---------- MVV cards refinadas ---------- */
.mvv-section {
    padding: var(--s-10) 0;
    background: #fff;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}

.mvv-card {
    background: var(--c-cream);
    padding: var(--s-7) var(--s-6);
    border-radius: 4px;
    text-align: center;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    border: 1px solid var(--c-line);
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--s-5);
    background: var(--c-ink);
    color: var(--c-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: var(--t-2xl);
    color: var(--c-ink);
    margin-bottom: var(--s-3);
    font-weight: 400;
}

.mvv-card p,
.mvv-list {
    color: var(--c-text-soft);
    font-size: var(--t-sm);
    line-height: 1.65;
}

.mvv-list {
    margin-top: var(--s-3);
}

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

/* ---------- CALIDAD CARDS refinadas ---------- */
.cert-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
}

.cert-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
    border-color: var(--c-gold-soft);
}

.cert-card-img {
    width: 200px;
    flex-shrink: 0;
    background: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-5);
    border-right: 1px solid var(--c-line);
}

.cert-card-img img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.cert-card-info {
    padding: var(--s-6);
    flex: 1;
}

.cert-card-info h3 {
    font-family: var(--font-heading);
    font-size: var(--t-xl);
    color: var(--c-ink);
    margin-bottom: var(--s-2);
    font-weight: 400;
    line-height: 1.2;
}

.cert-entity {
    display: block;
    font-size: var(--t-xs);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-gold-deep);
    font-weight: 600;
    margin-bottom: var(--s-3);
}

.cert-card-info p {
    font-size: var(--t-sm);
    line-height: 1.65;
    color: var(--c-text-soft);
}

@media (max-width: 768px) {
    .cert-cards-grid {
        grid-template-columns: 1fr;
    }
    .cert-card {
        flex-direction: column;
    }
    .cert-card-img {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--c-line);
        padding: var(--s-6);
    }
}

/* ---------- QUALITY PILLARS refinadas ---------- */
.quality-pillars {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.quality-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
    margin-top: var(--s-7);
}

.quality-pillar {
    padding: var(--s-5);
    text-align: center;
}

.quality-pillar i {
    font-size: 2.4rem;
    color: var(--c-gold-deep);
    margin-bottom: var(--s-3);
    display: block;
}

.quality-pillar h4 {
    font-family: var(--font-heading);
    font-size: var(--t-lg);
    color: var(--c-ink);
    margin-bottom: var(--s-2);
    font-weight: 400;
}

.quality-pillar p {
    font-size: var(--t-sm);
    color: var(--c-text-soft);
    line-height: 1.55;
    margin: 0 auto;
    max-width: 28ch;
}

@media (max-width: 768px) {
    .quality-pillars-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-3);
    }
}

/* ---------- PRODUCT HERO (ficha) refinado ---------- */
.product-hero {
    padding: var(--s-9) 0 var(--s-7);
    background: #fff;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-9);
    align-items: center;
}

.product-hero-img {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--sh-3);
    background: var(--c-bone);
    padding: var(--s-6);
}

.product-hero-img img,
.product-hero-img picture {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-hero-info .prod-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--c-gold-deep);
    margin-bottom: var(--s-3);
    background: transparent;
    padding: 0;
}

.product-hero-info h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 400;
    color: var(--c-ink);
    margin: 0 0 var(--s-3);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.product-tagline {
    font-size: var(--t-lg);
    color: var(--c-gold-deep);
    font-style: italic;
    font-family: var(--font-heading);
    margin: 0 0 var(--s-5);
}

.product-desc-long {
    color: var(--c-text);
    line-height: 1.75;
    margin: 0 0 var(--s-6);
    font-size: var(--t-base);
    max-width: 56ch;
}

.product-cta-row {
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
}

.product-cta-row .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 14px 28px;
    background: transparent;
    color: var(--c-ink);
    border: 1px solid var(--c-ink);
    font-family: var(--font-body);
    font-size: var(--t-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.product-cta-row .btn-outline:hover {
    background: var(--c-ink);
    color: var(--c-gold-soft);
}

@media (max-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
    .product-hero-img {
        aspect-ratio: 16 / 10;
    }
}

/* ---------- SPECS TABLE refinada ---------- */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: var(--s-4) var(--s-5);
    text-align: left;
    border-bottom: 1px solid var(--c-line);
    font-size: var(--t-sm);
}

.specs-table th {
    color: var(--c-text-soft);
    font-weight: 500;
    font-family: var(--font-body);
    width: 38%;
    background: var(--c-cream);
    font-size: var(--t-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.specs-table td {
    color: var(--c-ink);
    font-weight: 400;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

/* ---------- CATALOG FILTERS refinados ---------- */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    justify-content: flex-start;
    margin-bottom: var(--s-7);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid var(--c-line);
}

.catalog-filter {
    background: transparent;
    border: 1px solid var(--c-line);
    color: var(--c-text-soft);
    padding: 10px 22px;
    border-radius: 24px;
    font-family: var(--font-body);
    font-size: var(--t-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.catalog-filter:hover {
    border-color: var(--c-gold);
    color: var(--c-gold-deep);
}

.catalog-filter.active {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}

/* ---------- WHATSAPP FLOAT (preservar pero pulir) ---------- */
.whatsapp-float {
    width: 56px;
    height: 56px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ---------- CURSOR DOT — más sutil y visible en interiores ---------- */
/* DEPRECATED v3 — ver bloque CURSOR FINAL al final del archivo */

/* ---------- NAVBAR refinements (texto blanco más legible en hero) ---------- */
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-dropdown-toggle:hover {
    color: var(--c-text-soft);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-dropdown-toggle {
    color: var(--c-ink);
    font-size: 0.86rem;
    font-weight: 500;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-dropdown-toggle:hover {
    color: var(--c-text-soft);
}

/* CTA "Cotizar" en navbar */
.nav-cta-desktop {
    padding: 10px 22px !important;
    font-size: var(--t-xs) !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    border: 1px solid currentColor;
    transition: all 0.3s var(--ease-out);
}

.navbar:not(.scrolled) .nav-cta-desktop {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar:not(.scrolled) .nav-cta-desktop:hover {
    background: var(--c-gold);
    color: var(--c-ink);
    border-color: var(--c-gold);
}

.navbar.scrolled .nav-cta-desktop {
    color: var(--c-ink);
    border-color: var(--c-ink);
}

.navbar.scrolled .nav-cta-desktop:hover {
    background: var(--c-ink);
    color: var(--c-gold-soft);
}

/* ---------- FOOTER refinado ---------- */
.footer-complex {
    background: var(--c-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--s-9) 0 var(--s-5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--s-7);
    margin-bottom: var(--s-7);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--c-gold-soft);
    margin-bottom: var(--s-4);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    padding: 4px 0;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--t-sm);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--c-gold-soft);
}

.footer-addr {
    font-size: var(--t-sm);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--s-4);
    max-width: 36ch;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--s-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-4);
    font-size: var(--t-xs);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.social-links {
    display: flex;
    gap: var(--s-3);
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.social-links a:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-ink);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-6);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- BTN-LINK refinado ---------- */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--c-ink);
    font-family: var(--font-body);
    font-size: var(--t-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid var(--c-gold);
    padding: 0 0 6px 0;
    transition: gap 0.3s var(--ease-out), color 0.3s, border-color 0.3s;
}

.btn-link:hover {
    gap: var(--s-4);
    color: var(--c-gold-deep);
    border-color: var(--c-gold-deep);
}

/* ---------- PROD-CATEGORY badge en ficha ---------- */
.prod-category {
    background: transparent !important;
    padding: 0 !important;
    color: var(--c-gold-deep) !important;
    font-weight: 600 !important;
    font-size: var(--t-xs) !important;
    text-transform: none !important;
    letter-spacing: 0.18em !important;
}

/* ---------- CONTACT INFO refinado ---------- */
.contact-section {
    padding: var(--s-10) 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-9);
}

.contact-info > p {
    color: var(--c-text-soft);
    line-height: 1.7;
    margin: 0 0 var(--s-6);
    max-width: 50ch;
}

.contact-details {
    display: grid;
    gap: var(--s-4);
}

.contact-item {
    display: flex;
    gap: var(--s-3);
    align-items: flex-start;
}

.contact-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-cream);
    color: var(--c-gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: var(--t-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text-soft);
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    color: var(--c-ink);
    font-size: var(--t-base);
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--c-gold-deep);
}

.contact-form-wrap {
    background: var(--c-cream);
    padding: var(--s-7);
    border-radius: 4px;
    border: 1px solid var(--c-line);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-4);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form .form-group.full-width {
    margin-bottom: var(--s-4);
}

.contact-form label {
    font-family: var(--font-body);
    font-size: var(--t-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text-soft);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #fff;
    border: 1px solid var(--c-line);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: var(--t-sm);
    color: var(--c-ink);
    border-radius: 2px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.contact-form button[type="submit"] {
    margin-top: var(--s-4);
    width: 100%;
    justify-content: center;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
}

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

/* ---------- DROPDOWN MENU refinado ---------- */
.nav-dropdown-menu {
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-3);
    border-radius: 2px;
    padding: var(--s-3);
    min-width: 260px;
}

.nav-dropdown-menu a {
    color: var(--c-ink) !important;
    font-size: var(--t-sm);
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 2px;
}

.nav-dropdown-menu a:hover {
    background: var(--c-cream);
    color: var(--c-gold-deep) !important;
}

.nav-dropdown-head {
    color: var(--c-gold-deep) !important;
    font-weight: 600 !important;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 6px;
}

.nav-dropdown-label {
    color: var(--c-text-mute);
    font-size: 0.65rem;
    padding: 10px 14px 4px;
    letter-spacing: 0.18em;
}

/* ---------- BODY INTERIOR: ajustes finales ---------- */
body.interior {
    background: #fff;
}

body.interior .navbar {
    background: rgba(255, 255, 255, 0.97);
}

body.interior .navbar .nav-links a,
body.interior .navbar .nav-dropdown-toggle {
    color: var(--c-ink);
}

body.interior .navbar .nav-cta-desktop {
    color: var(--c-ink);
    border-color: var(--c-ink);
}

body.interior .menu-toggle span {
    background: var(--c-ink);
}

/* ---------- FOOTER BOTTOM — copyright + dev credit (mismo bloque) ---------- */
.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-copyright {
    margin: 0;
    font-size: var(--t-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-dev-credit {
    margin: 0;
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer-dev-credit a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--ease-out);
}

.footer-dev-credit a:hover {
    color: var(--c-gold-soft);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--s-4);
    }
    .footer-dev-credit {
        font-size: 0.68rem;
    }
}

/* Nullify la regla vieja de .dev-signature para evitar conflictos */
.dev-signature {
    display: none;
}

/* ---------- Reduced motion respetado ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}

/* ============================================================
   ⬇⬇⬇ PALETA OFICIAL APLICADA v3.2
   Verde Del Ande como primario, rojo como acento brand.
   ============================================================ */

/* ---------- LOGO HORIZONTAL (sin texto duplicado) ---------- */
/* El SVG/PNG ya incluye "Del Ande / Para el mundo" — usamos solo la imagen */
.brand-logo .logo-combo .logo-text,
.footer-logo .logo-combo .logo-text,
.preloader-logo .logo-combo .logo-text {
    display: none;
}

/* Logo grande/horizontal en navbar */
.brand-logo .logo-combo .logo-icon {
    height: 96px;
    max-height: 96px;
    width: auto;
}

.navbar.scrolled .brand-logo .logo-combo .logo-icon {
    height: 72px;
    max-height: 72px;
}

body.interior .brand-logo .logo-combo .logo-icon {
    height: 78px;
    max-height: 78px;
}

/* Aumentar padding del navbar para que el logo grande no se sienta apretado */
.navbar {
    padding: 18px 0;
}

.navbar.scrolled,
body.interior .navbar {
    padding: 12px 0;
}

@media (max-width: 1024px) {
    .brand-logo .logo-combo .logo-icon,
    body.interior .brand-logo .logo-combo .logo-icon {
        height: 80px;
        max-height: 80px;
    }
    .navbar.scrolled .brand-logo .logo-combo .logo-icon {
        height: 64px;
        max-height: 64px;
    }
}

@media (max-width: 768px) {
    .brand-logo .logo-combo .logo-icon,
    .navbar.scrolled .brand-logo .logo-combo .logo-icon,
    body.interior .brand-logo .logo-combo .logo-icon {
        height: 60px;
        max-height: 60px;
    }
    .navbar,
    .navbar.scrolled,
    body.interior .navbar {
        padding: 10px 0;
    }
}

/* Footer logo */
.footer-logo .logo-combo .logo-icon {
    height: 120px;
    max-height: 120px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-logo .logo-combo .logo-icon {
        height: 96px;
        max-height: 96px;
    }
}

/* Preloader logo */
.preloader-logo .logo-combo .logo-icon {
    height: 200px;
    max-height: 200px;
    width: auto;
    animation: logo-pulse 1.6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .preloader-logo .logo-combo .logo-icon {
        height: 140px;
        max-height: 140px;
    }
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.92; }
}

/* ---------- Hero overlay con tono verde corporativo ---------- */
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(10, 31, 18, 0.55) 0%, rgba(10, 31, 18, 0.30) 50%, rgba(10, 31, 18, 0.88) 100%),
        linear-gradient(90deg, rgba(10, 31, 18, 0.50) 0%, rgba(10, 31, 18, 0.10) 100%);
}

/* ---------- Hero eyebrow ahora en rojo brand ---------- */
.hero-eyebrow {
    color: var(--c-red-soft);
    border-bottom-color: rgba(240, 74, 81, 0.4);
}

/* DEPRECATED — ver bloque HERO ITALIC POLISH al final del archivo */

/* ---------- BTN SOLID: verde oscuro brand (NO rojo) ---------- */
.btn-solid {
    background: var(--c-green-dark);
    color: #fff;
}

.btn-solid:hover {
    background: var(--c-green);
    color: #fff;
    box-shadow: 0 12px 32px rgba(3, 103, 56, 0.35);
}

/* ---------- BTN GHOST en hero: borde rojo en hover ---------- */
.btn-ghost:hover {
    border-color: var(--c-red-soft);
    color: var(--c-red-soft);
    background: rgba(236, 28, 36, 0.06);
}


/* ---------- Section tag: rojo Del Ande brand ---------- */
.section-tag {
    color: var(--c-red);
}

.section-tag::before {
    background: var(--c-red);
}

.section-tag.light {
    color: var(--c-red-soft);
}

.section-tag.light::before {
    background: var(--c-red-soft);
}

/* ---------- Section title italic: verde brand (más sobrio) ---------- */
.section-title i,
.section-title .italic {
    color: inherit;
}

/* ---------- Why-card icon hover: verde brand ---------- */
.why-card .why-icon {
    color: var(--c-green-dark);
}

.why-card:hover .why-icon {
    background: var(--c-green-dark);
    color: var(--c-yellow);
}

.why-card:hover {
    border-color: var(--c-green);
}

/* ---------- Product card: borde verde en hover, tag verde brand ---------- */
.product-card:hover {
    border-color: var(--c-green);
}

.product-card-tag {
    background: var(--c-green-dark);
    color: #fff;
}

.product-card-link {
    color: var(--c-green-dark);
}

.product-card:hover .product-card-link {
    color: var(--c-red);
}

/* ---------- Quality CTA (banner oscuro home): verde profundo + acento dorado ---------- */
.quality-cta {
    background: linear-gradient(135deg, var(--c-green-deep) 0%, var(--c-green-dark) 100%);
}

.quality-text strong {
    color: var(--c-yellow);
}

/* ---------- Contact CTA: rojo brand a fondo ---------- */
.contact-cta {
    background: var(--c-red);
}

.contact-cta-inner h2,
.contact-cta-inner p {
    color: #fff;
}

.contact-cta-inner p {
    opacity: 0.9;
}

.contact-cta-inner .btn-solid {
    background: #fff;
    color: var(--c-red);
}

.contact-cta-inner .btn-solid:hover {
    background: var(--c-ink);
    color: #fff;
}

/* ---------- Page hero (interior): fondo verde corporativo ---------- */
.page-hero {
    background-color: var(--c-green-deep);
}

.page-hero--products {
    background-image: linear-gradient(rgba(10, 31, 18, 0.65), rgba(10, 31, 18, 0.78)), url('../assets/img/campo-fresa-cerros.webp');
}

.page-hero--quality {
    background-image: linear-gradient(rgba(10, 31, 18, 0.65), rgba(10, 31, 18, 0.78)), url('../assets/img/calidad-seleccion-fresa.webp');
}

.page-hero--contact {
    background-image: linear-gradient(rgba(10, 31, 18, 0.65), rgba(10, 31, 18, 0.78)), url('../assets/img/planta-panoramica.webp');
}

.page-hero-title i {
    color: #fff;
}

/* ---------- Global simple section: fondo crema con accent rojo ---------- */
.global-simple .section-tag {
    color: var(--c-red);
}

.global-simple .section-tag::before {
    background: var(--c-red);
}

.global-simple .btn-outline:hover {
    background: var(--c-green-dark);
    color: #fff;
    border-color: var(--c-green-dark);
}

/* DEPRECATED — ver bloque CURSOR FINAL al final del archivo */

/* ---------- Navbar nav links hover ---------- */
.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-dropdown-toggle:hover {
    color: var(--c-text-soft);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-dropdown-toggle:hover,
body.interior .nav-links a:hover,
body.interior .nav-dropdown-toggle:hover {
    color: var(--c-text-soft);
}

/* Estado activo (default): texto oscuro + más peso + underline rojo brand */
.nav-links a.active,
.nav-links .nav-dropdown-toggle.active {
    color: var(--c-green-dark) !important;
    font-weight: 600 !important;
}

/* SOLO en home con navbar transparente sobre el video: active queda en blanco */
body:not(.interior) .navbar:not(.scrolled) .nav-links a.active,
body:not(.interior) .navbar:not(.scrolled) .nav-links .nav-dropdown-toggle.active {
    color: #fff !important;
}

/* Cuando se hace scroll en home: vuelve al color brand para legibilidad */
.navbar.scrolled .nav-links a.active,
.navbar.scrolled .nav-links .nav-dropdown-toggle.active,
body.interior .nav-links a.active,
body.interior .nav-links .nav-dropdown-toggle.active {
    color: var(--c-green-dark) !important;
}

/* Underline más visible para indicar el módulo actual */
.nav-links a.active::after,
.nav-links .nav-dropdown-toggle.active::after {
    background: var(--c-red) !important;
    height: 3px !important;
    width: 100% !important;
    left: 0;
    bottom: -8px;
}

/* CTA "Cotizar" del navbar hover */
.navbar:not(.scrolled) .nav-cta-desktop:hover {
    background: #fff;
    color: var(--c-ink);
    border-color: #fff;
}

.navbar.scrolled .nav-cta-desktop:hover,
body.interior .nav-cta-desktop:hover {
    background: var(--c-green-dark);
    color: #fff;
    border-color: var(--c-green-dark);
}

/* ---------- Dropdown: hover items en verde brand (no rojo) ---------- */
.nav-dropdown-menu a:hover {
    background: var(--c-cream);
    color: var(--c-green-dark) !important;
}

.nav-dropdown-head {
    color: var(--c-green-dark) !important;
}

/* ---------- Footer: fondo verde profundo + headings claros ---------- */
.footer-complex {
    background: var(--c-green-deep);
}

.footer-col h4 {
    color: rgba(255, 255, 255, 0.95);
}

.footer-col ul li a:hover {
    color: var(--c-green-pale);
}

.social-links a:hover {
    background: var(--c-green);
    border-color: var(--c-green);
    color: #fff;
}

/* ---------- Btn-link: verde brand (más sobrio) ---------- */
.btn-link {
    color: var(--c-ink);
    border-bottom-color: var(--c-green-dark);
}

.btn-link:hover {
    color: var(--c-green-dark);
    border-color: var(--c-green-dark);
}

/* ---------- Form focus: borde verde ---------- */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--c-green);
    box-shadow: 0 0 0 3px rgba(17, 147, 68, 0.15);
}

/* ---------- prod-category en ficha: verde brand ---------- */
.prod-category {
    color: var(--c-green-dark) !important;
}

/* ---------- Product hero: tagline italic en verde sobrio ---------- */
.product-tagline {
    color: var(--c-green-dark);
}

.product-availability {
    margin: calc(var(--s-5) * -0.45) 0 var(--s-5);
    color: var(--c-text-muted);
    font-size: var(--t-sm);
}

.product-availability strong {
    color: var(--c-ink);
    font-weight: 600;
}

/* ---------- Catalog filter activo: verde brand ---------- */
.catalog-filter.active {
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
    color: #fff;
}

.catalog-filter:hover {
    border-color: var(--c-green-dark);
    color: var(--c-green-dark);
}

/* ---------- Cert card hover: verde brand ---------- */
.cert-card:hover {
    border-color: var(--c-green);
}

.cert-entity {
    color: var(--c-green-dark);
}

/* ---------- Quality pillars iconos: verde brand ---------- */
.quality-pillar i {
    color: var(--c-green-dark);
}

/* ---------- MVV icon: verde y amarillo del logo ---------- */
.mvv-icon {
    background: var(--c-green-dark);
    color: var(--c-yellow);
}

/* ---------- Body interior: navbar borde con tinte verde ---------- */
body.interior .navbar {
    border-bottom-color: var(--c-line);
}

/* ---------- Contact item icon: verde brand ---------- */
.contact-item i {
    background: rgba(17, 147, 68, 0.08);
    color: var(--c-green-dark);
}

/* ---------- Selección de texto: verde brand ---------- */
::selection {
    background: var(--c-green);
    color: #fff;
}

/* ---------- WhatsApp float: queda verde WhatsApp original ---------- */
/* (sin override, ya está bien) */

/* ============================================================
   Badge "Foto referencial" para productos sin foto definitiva
   ============================================================ */
.product-card-placeholder {
    position: absolute;
    top: var(--s-4);
    right: var(--s-4);
    background: rgba(10, 31, 18, 0.80);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-body);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 2px;
    z-index: 2;
    backdrop-filter: blur(4px);
    cursor: help;
}

/* Aviso sutil en ficha de producto cuando la foto es referencial */
.product-hero-img.is-placeholder::after {
    content: 'Imagen referencial';
    position: absolute;
    bottom: var(--s-3);
    right: var(--s-3);
    background: rgba(10, 31, 18, 0.78);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

.product-hero-img {
    position: relative;
}

/* ============================================================
   FIX v3.5 — Products header (corregir display: flex heredado)
   ============================================================ */
.products-grid-section .products-header,
.content-section .products-header {
    display: block !important;
    text-align: center;
    margin-bottom: var(--s-8);
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.products-grid-section .products-header .section-tag,
.content-section .products-header .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.products-grid-section .products-header .section-title,
.content-section .products-header .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 18ch;
}

.products-grid-section .section-intro,
.content-section .products-header .section-intro {
    margin: 0 auto;
    text-align: center;
    color: var(--c-text-soft);
    font-size: var(--t-base);
    line-height: 1.65;
    max-width: 56ch;
}

/* Section-tag con línea: cuando está centrado, la línea va a la izquierda del texto sin desplazar */
.products-grid-section .products-header .section-tag,
.content-section .products-header .section-tag,
.why-header .section-tag,
.global-simple .section-tag,
.pillars-header .section-tag,
.mvv-card .section-tag,
.global-header .section-tag,
.clients-header .section-tag {
    display: inline-block;
    padding-left: 0;
}

.products-grid-section .products-header .section-tag::before,
.content-section .products-header .section-tag::before,
.why-header .section-tag::before,
.global-simple .section-tag::before,
.pillars-header .section-tag::before,
.global-header .section-tag::before,
.clients-header .section-tag::before {
    display: none;
}

/* El eyebrow centrado va sin la línea a la izquierda — se ve más limpio */

/* ============================================================
   FIX v3.6 — Cert cards alineadas + page-hero con padding
   ============================================================ */

/* DEPRECATED v3.6 + v3.7 — eliminados, ver FIX H-001 abajo */

/* Page-hero: contenido visible y sin padding interno extra */
.page-hero .container {
    padding-top: 0;
    padding-bottom: 0;
}

.page-hero .section-tag,
.page-hero .page-hero-title,
.page-hero .page-hero-sub {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* ============================================================
   FIX H-001 — UNIFIED CARDS LAYOUT (post-QA audit)
   CAUSA RAÍZ del bug de cards desalineadas: faltaba `grid-auto-rows: 1fr`.
   Sin esta propiedad, cada fila del grid se ajustaba a su contenido
   independientemente, generando filas de altura distinta. Ningún
   `align-items: stretch` ni `height: 100%` puede igualar filas distintas.
   Esta sección reemplaza todos los bloques v3.6, v3.7, v3.8.
   ============================================================ */

/* Grids — todas las filas con misma altura (CLAVE: grid-auto-rows: 1fr) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 1fr;
    gap: var(--s-5);
}

.cert-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    grid-auto-rows: 1fr;
    gap: var(--s-5);
}

/* Cards — flex column/row, ocupan todo el row del grid */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.cert-card {
    display: flex;
    flex-direction: row;
    height: 100%;
    min-height: 0;
}

/* Imagen del product-card: altura responsiva, flex-basis controla altura en column */
.product-card-img {
    position: relative;
    width: 100%;
    flex: 0 0 280px;
    overflow: hidden;
    background: var(--c-bone);
    padding: var(--s-4);
}

.product-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Imagen del cert-card: width fija, altura completa */
.cert-card-img {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-cream);
    padding: var(--s-5);
    border-right: 1px solid var(--c-line);
}

.cert-card-img > img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    display: block;
}

/* Info de las cards: ocupa el espacio restante */
.product-card-info,
.cert-card-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: var(--s-5);
}

/* H-003: text-wrap balance en h3 agrava descuadre — quitarlo */
.product-card-info h3,
.cert-card-info h3 {
    text-wrap: pretty;
    margin-bottom: var(--s-2);
    line-height: 1.2;
}

/* Subtítulo y entity reservan altura mínima para alinear título+entity entre cards */
.cert-entity {
    min-height: 2.6em;
    display: block;
    margin-bottom: var(--s-3);
}

/* Párrafos crecen para alinear el bottom de cada card */
.product-card-info p,
.cert-card-info p {
    flex: 1 1 auto;
    margin: 0 0 var(--s-4);
}

.cert-card-info p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card-img {
        flex: 0 0 240px;
    }
    .cert-cards-grid {
        grid-template-columns: 1fr;
    }
    .cert-card {
        flex-direction: column;
    }
    .cert-card-img {
        width: 100%;
        flex: 0 0 200px;
        border-right: none;
        border-bottom: 1px solid var(--c-line);
    }
    .cert-entity {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-card-img {
        flex: 0 0 220px;
    }
}

/* ============================================================
   ⬇⬇⬇ FIXES v3.4 — Hero video + alineaciones + responsive
   ============================================================ */

/* ---------- HERO: aislar stacking context y z-index positivos ----------
   Antes el .hero-video-wrap tenía z-index: -2, lo que lo hacía caer detrás
   del fondo opaco del body. Solución: isolation:isolate + z-index positivos. */
.hero {
    isolation: isolate;
    background-color: var(--c-deep);
    background-image: url('../img/hero-poster-strawberry.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1 !important;
    overflow: hidden;
    background: transparent;
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zoom + offset que saca la marca de agua "Veo" del bottom-right del viewport */
    transform: scale(1.18) translate(-3.5%, -3.5%);
    transform-origin: center center;
    z-index: 1;
}

/* En mobile, ajustar el zoom para no perder demasiado contenido */
@media (max-width: 768px) {
    .hero-video {
        transform: scale(1.22) translate(-4%, -4%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2 !important;
}

.hero-content {
    position: relative;
    z-index: 3 !important;
}

/* ---------- QUALITY LOGOS: centrado y proporción fija ---------- */
.quality-logos {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
    align-items: center;
    justify-items: center;
    padding: var(--s-7);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 6px;
}

.quality-logos > img,
.quality-logos picture {
    width: 100%;
    max-width: 140px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin: 0;
    filter: brightness(1.05) contrast(1.05);
    transition: transform 0.4s var(--ease-out), filter 0.4s;
}

.quality-logos > img:hover {
    transform: scale(1.06);
    filter: brightness(1.1) contrast(1.1);
}

/* En home (.quality-cta tiene 2 columnas): el grid de logos va en 2x2 */
.quality-cta .quality-logos {
    grid-template-columns: repeat(2, 1fr);
}

/* En ficha de producto: dos filas equilibradas de cinco señales */
.quality-logos.centered-logos {
    grid-template-columns: repeat(5, 1fr);
    max-width: 940px;
    margin: 0 auto;
    background: transparent;
    border: none;
    padding: 0;
}

.quality-logos.centered-logos > img {
    max-width: 130px;
    height: 80px;
}

@media (max-width: 768px) {
    .quality-logos,
    .quality-cta .quality-logos,
    .quality-logos.centered-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-4);
        padding: var(--s-5);
    }
    .quality-logos > img {
        max-width: 110px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .quality-logos,
    .quality-cta .quality-logos,
    .quality-logos.centered-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-3);
    }
    .quality-logos > img {
        max-width: 90px;
        height: 60px;
    }
}

/* ---------- WHY-GRID: 4 cards alineadas con misma altura ---------- */
.why-grid {
    align-items: stretch;
}

.why-card-wrap {
    display: flex;
    height: 100%;
}

.why-card-wrap > .why-card {
    flex: 1;
    width: 100%;
}

/* ---------- PRODUCTS GRID: cards de igual altura ---------- */
.products-grid {
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-info p {
    flex: 1;
}

/* ---------- MVV CARDS: igual altura ---------- */
.mvv-grid {
    align-items: stretch;
}

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

/* ---------- CERT CARDS: igual altura en grid 2x2 ---------- */
.cert-cards-grid {
    align-items: stretch;
}

/* ---------- QUALITY PILLARS: igual altura ---------- */
.quality-pillars-grid {
    align-items: stretch;
}

.quality-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* ---------- FOOTER GRID: alineación arriba ---------- */
.footer-grid {
    align-items: start;
}

/* ---------- CONTACT GRID: igual altura ---------- */
.contact-grid {
    align-items: stretch;
}

.contact-info,
.contact-form-wrap {
    display: flex;
    flex-direction: column;
}

/* ---------- CONTAINER: max-width consistente ---------- */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* ---------- TWO-COL: alineación garantizada ---------- */
.two-col {
    align-items: center;
}

.two-col > * {
    min-width: 0; /* evita overflow en grid */
}

/* ---------- RESPONSIVE: navbar con muchos items ---------- */
@media (max-width: 1180px) and (min-width: 769px) {
    .nav-container {
        gap: var(--s-3);
    }
    .nav-links {
        gap: 18px !important;
    }
    .nav-links a,
    .nav-dropdown-toggle {
        font-size: 0.78rem !important;
    }
    .nav-cta-desktop {
        padding: 8px 16px !important;
        font-size: 0.7rem !important;
    }
}

/* ============================================================
   FIX TIPOGRAFÍA — descendentes (g, y, p, j) NO deben cortarse
   El overflow:hidden de .line-wrap recortaba la "g" y la "y" italic.
   Solución: padding-bottom dentro del wrap para alojar el descender.
   ============================================================ */
.hero-title,
.hero-title .line,
.page-hero-title,
.section-title,
.product-hero-info h1 {
    line-height: 1.15 !important;
    padding-bottom: 0.05em;
}

.hero-title .line-wrap {
    padding-bottom: 0.22em !important;
    margin-bottom: -0.08em !important;
    overflow: hidden;
    line-height: 1.18 !important;
}

/* Para títulos italic en headings (h2, h1) — la "g", "y", "p" italic son más prominentes */
.hero-title .italic,
.section-title i,
.section-title .italic,
.page-hero-title i {
    line-height: 1.2;
    padding-bottom: 0.08em;
    display: inline-block;
}

/* ---------- HERO: safe-zone GARANTIZADA bajo el navbar fixed ----------
   justify-content: flex-start (en vez de center) para que el content empiece
   EXACTAMENTE en padding-top. align-items: flex-start para alineación izq.
   El navbar fixed mide ~132px (logo 96px + paddings 18+18). Necesitamos al
   menos 200px de padding-top para que el eyebrow tenga respiración. */
.hero {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    padding-top: 220px !important;
    padding-bottom: 100px !important;
    min-height: 100vh !important;
}

.hero-content {
    align-self: stretch;
    margin-top: auto;        /* empuja contenido al centro vertical entre paddings */
    margin-bottom: auto;
}

.hero-text-wrap {
    padding-top: 0;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 180px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }
}

/* ---------- SECTION TAG en MVV: centrar correctamente ---------- */
.mvv-card .section-tag {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- ABOUT GRID: imagen/texto bien alineados ---------- */
.about-grid {
    align-items: stretch;
}

/* ---------- PAGE HERO: contenido centrado verticalmente PRESERVANDO padding-top ---------- */
.page-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 420px;
    padding: 180px 0 100px !important;
}

.page-hero .container {
    width: 100%;
}

@media (max-width: 1024px) {
    .page-hero {
        min-height: 360px;
        padding: 150px 0 80px !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 280px;
        padding: 120px 0 60px !important;
    }
}

/* ---------- FOOTER ITEMS: altura uniforme con space-between ---------- */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* ---------- BREADCRUMB: vertical center ---------- */
.breadcrumb {
    display: flex;
    align-items: center;
    min-height: 50px;
}

/* ============================================================
   FIX FINAL — CURSOR DORADO PEQUEÑO + NAVBAR ALINEADO
   Refleja exactamente el feedback del cliente en el doc Word:
   "punto dorado pequeño que sigue el mouse en computadoras"
   ============================================================ */

/* Cursor dorado pequeño — sigue el mouse SIN cubrir el contenido */
.cursor-dot {
    width: 10px;
    height: 10px;
    background: #C9A961;          /* dorado sobrio (matchea mejor con el verde brand) */
    border: 1.5px solid #fff;     /* borde blanco para contrastar sobre cualquier fondo */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.5);
    transition: transform 0.2s var(--ease-out), background 0.25s, box-shadow 0.25s;
    mix-blend-mode: normal;
}

/* Hover sobre links/botones: el cursor crece SUTILMENTE (no cubre texto) */
.cursor-dot.active {
    transform: translate(-50%, -50%) scale(1.6);     /* solo 16px máximo */
    background: var(--c-red);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(236, 28, 36, 0.5);
}

/* En mobile no se muestra (solo desktop) */
@media (max-width: 768px) {
    .cursor-dot {
        display: none;
    }
}

/* ============================================================
   NAVBAR — alineación vertical perfecta de todos los items
   Bug: PRODUCTOS aparecía más abajo por el icon dropdown.
   Fix: flex con align-items: center en cada link.
   ============================================================ */

.navbar .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-5);
}

.navbar .nav-links {
    display: flex;
    align-items: center;       /* eje vertical centrado */
    gap: 28px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links > a,
.navbar .nav-links > .nav-dropdown > .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;       /* texto e icono al mismo nivel vertical */
    gap: 6px;
    line-height: 1;            /* evita altura extra del texto */
    padding: 6px 0;
    position: relative;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.navbar .nav-links .nav-dropdown-toggle i {
    font-size: 1em;
    line-height: 1;
    margin-top: 1px;            /* compensación visual del chevron */
}

/* El estado activo se indica solo con el subrayado, sin bullet lateral. */
.nav-links a.active::before,
.nav-links .nav-dropdown-toggle.active::before {
    content: none;
    display: none;
}

/* Underline más sutil que no descuadra el flow */
.nav-links a.active::after,
.nav-links .nav-dropdown-toggle.active::after {
    bottom: -10px;
    height: 2px;
}

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

/* ============================================================
   LANGUAGE SWITCHER (i18n) — botón ES / EN / KO / JA en navbar
   ============================================================ */

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--s-3);
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 24px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: inherit;
    transition: background 0.3s var(--ease-out), color 0.3s, border-color 0.3s;
}

.lang-toggle .flag {
    font-size: 1.05em;
    line-height: 1;
}

.lang-toggle .lang-code {
    line-height: 1;
}

.lang-toggle i {
    font-size: 0.95em;
    transition: transform 0.3s ease;
}

.lang-switcher:hover .lang-toggle i,
.lang-switcher.open .lang-toggle i {
    transform: rotate(180deg);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.interior .lang-toggle:hover,
.navbar.scrolled .lang-toggle:hover {
    background: var(--c-cream);
    color: var(--c-green-dark);
    border-color: var(--c-green-dark);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    padding: 8px;
    box-shadow: var(--sh-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-switcher:hover .lang-menu,
.lang-switcher.open .lang-menu,
.lang-switcher:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--c-ink);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.lang-menu a .flag {
    font-size: 1.15em;
    line-height: 1;
}

.lang-menu a:hover {
    background: var(--c-cream);
    color: var(--c-green-dark);
}

.lang-menu a.lang-active {
    background: var(--c-green-dark);
    color: #fff;
    font-weight: 600;
}

.lang-menu a.lang-active:hover {
    background: var(--c-green-dark);
    color: #fff;
}

/* En navbar transparente (home con video), el toggle es claro */
.navbar:not(.scrolled) .lang-toggle {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar:not(.scrolled) .lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

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

/* ============================================================
   HERO ACCENT: mismo color y estilo que el resto del título
   ============================================================ */
.hero-title .italic {
    color: var(--color-white);
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.015em;
}

/* Reforzar el overlay donde aparece el italic para mejorar contraste */
.hero-overlay {
    background:
        linear-gradient(180deg,
            rgba(10, 31, 18, 0.55) 0%,
            rgba(10, 31, 18, 0.35) 30%,
            rgba(10, 31, 18, 0.55) 60%,
            rgba(10, 31, 18, 0.92) 100%),
        linear-gradient(90deg,
            rgba(10, 31, 18, 0.65) 0%,
            rgba(10, 31, 18, 0.20) 100%);
}

/* También mejorar contraste del título en blanco */
.hero-title .line:not(.italic) {
    text-shadow: 0 2px 18px rgba(10, 31, 18, 0.6);
}

.hero-lead {
    text-shadow: 0 1px 6px rgba(10, 31, 18, 0.6);
}

/* ============================================================
   HOME BACKGROUNDS: Productos + Certificaciones
   ============================================================ */
.products-grid-section,
.quality-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-repeat: no-repeat;
}

.products-grid-section {
    background-image:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.82) 46%,
            rgba(255, 255, 255, 0.95) 100%),
        url('../img/bg-nuestros-productos.jpg');
    background-position: center;
}

.quality-cta {
    background-image:
        linear-gradient(90deg,
            rgba(10, 31, 18, 0.94) 0%,
            rgba(10, 31, 18, 0.78) 48%,
            rgba(10, 31, 18, 0.58) 100%),
        url('../img/bg-certificaciones-internacionales.jpg');
    background-position: center;
}

.products-grid-section .products-header {
    position: relative;
    z-index: 1;
    max-width: 920px;
    padding: var(--s-6);
    margin-right: auto;
    margin-bottom: var(--s-8);
    margin-left: auto;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(10, 31, 18, 0.08);
    backdrop-filter: blur(8px);
}

.products-grid-section .products-grid,
.products-grid-section .products-cta,
.quality-cta .quality-grid {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .products-grid-section {
        background-position: center top;
    }

    .products-grid-section .products-header {
        padding: var(--s-5);
    }
}

/* ============================================================
   PAGE HERO BACKGROUNDS: Productos + Certificaciones
   ============================================================ */
.page-hero--products {
    background-image:
        linear-gradient(90deg,
            rgba(10, 31, 18, 0.78) 0%,
            rgba(10, 31, 18, 0.58) 48%,
            rgba(10, 31, 18, 0.36) 100%),
        url('../img/bg-nuestros-productos.jpg');
    background-position: center;
}

.page-hero--quality {
    background-image:
        linear-gradient(90deg,
            rgba(10, 31, 18, 0.78) 0%,
            rgba(10, 31, 18, 0.56) 48%,
            rgba(10, 31, 18, 0.34) 100%),
        url('../img/calidad-hero-control-fresa.jpg');
    background-position: center 44%;
}

.cursor-dot {
    display: none !important;
}

/* ============================================================
   PRODUCT DETAIL IMAGE: full-bleed inside the visual box
   ============================================================ */
.product-hero-img {
    padding: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: 3 / 4;
}

.product-hero-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   HOME PRODUCTS CTA: visible full catalog button
   ============================================================ */
.products-cta {
    position: relative;
    z-index: 3;
    margin-top: var(--s-8);
}

.products-full-catalog-btn {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 16px 34px rgba(10, 31, 18, 0.18);
}

.products-full-catalog-btn:hover {
    color: #fff;
}

/* ============================================================
   CATALOG PAGE: clean 4:3 product photos, no artificial fill
   ============================================================ */
.catalog-grid {
    align-items: stretch;
}

.catalog-grid .product-card {
    align-self: stretch;
    opacity: 1 !important;
    transform: none !important;
}

.catalog-grid .product-card:hover {
    transform: none !important;
}

.catalog-grid .product-card-img {
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    padding: 0;
    background: #fff;
}

.catalog-grid .product-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ============================================================
   CONTACT PAGE: Danper-inspired three-column layout
   ============================================================ */
.contact-showcase {
    overflow: hidden;
    padding: clamp(135px, 12vw, 175px) 0 var(--s-10);
    background: #fff;
}

.contact-showcase .container {
    max-width: 1680px;
}

.contact-showcase-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(300px, 0.9fr) minmax(460px, 1.35fr);
    grid-template-areas: "visual info form";
    gap: clamp(28px, 4vw, 72px);
    align-items: start;
}

.contact-visual {
    grid-area: visual;
    position: relative;
    min-height: 0;
    overflow: visible;
}

.contact-page-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--c-ink);
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 4.7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.contact-strawberry {
    position: relative;
    z-index: 1;
    display: block;
    width: min(520px, 100%);
    max-width: 100%;
    height: auto;
    margin-top: clamp(48px, 6vw, 88px);
    transform: none;
    filter: drop-shadow(0 26px 34px rgba(10, 31, 18, 0.12));
    pointer-events: none;
    user-select: none;
}

.contact-info-card {
    grid-area: info;
    padding: clamp(30px, 3.4vw, 54px);
    background: #f2f1ec;
    border: 1px solid rgba(10, 31, 18, 0.06);
    border-radius: 16px;
}

.contact-info-card .contact-details {
    display: grid;
    gap: var(--s-5);
}

.contact-info-card .contact-item {
    gap: var(--s-4);
}

.contact-info-card .contact-item i {
    width: 28px;
    height: 28px;
    background: transparent;
    color: var(--c-ink);
    font-size: 1.25rem;
}

.contact-info-card .contact-item strong {
    color: var(--c-ink);
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-info-card .contact-item p,
.contact-info-card .contact-item a {
    color: var(--c-text-soft);
    font-size: var(--t-base);
}

.contact-form-panel {
    grid-area: form;
    min-width: 0;
}

.contact-form-panel h2 {
    margin: 0 0 var(--s-4);
    color: var(--c-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
}

.contact-showcase .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-4);
}

.contact-showcase .contact-form .form-group,
.contact-showcase .contact-form .form-group.full-width {
    position: relative;
    gap: 0;
    margin-bottom: var(--s-4);
}

.contact-showcase .contact-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.contact-showcase .contact-form input,
.contact-showcase .contact-form select,
.contact-showcase .contact-form textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(10, 31, 18, 0.18);
    border-radius: 6px;
    background: #fff;
    color: var(--c-ink);
    font-size: 1rem;
    padding: 15px 18px;
}

.contact-showcase .contact-form textarea {
    min-height: 260px;
    resize: vertical;
}

.contact-showcase .contact-form input:focus,
.contact-showcase .contact-form select:focus,
.contact-showcase .contact-form textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.10);
}

.contact-required-note {
    margin: 0 0 var(--s-4);
    color: var(--c-ink);
    font-weight: 700;
}

.contact-showcase .contact-form .g-recaptcha {
    justify-content: flex-start;
}

@media (max-width: 1366px) {
    .contact-showcase-grid {
        grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.35fr);
        grid-template-areas:
            "visual visual"
            "info form";
        column-gap: clamp(24px, 4vw, 52px);
        row-gap: var(--s-6);
    }

    .contact-visual {
        min-height: 0;
    }

    .contact-strawberry {
        display: none;
    }
}

@media (max-width: 820px) {
    .contact-showcase {
        padding-top: 125px;
    }

    .contact-showcase-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "info"
            "form";
    }

    .contact-visual {
        min-height: 0;
    }

    .contact-strawberry {
        width: min(440px, 88vw);
        margin-top: var(--s-6);
    }
}

@media (max-width: 520px) {
    .contact-visual {
        min-height: 0;
    }

    .contact-strawberry {
        width: min(330px, 90vw);
        margin-top: var(--s-5);
    }

    .contact-info-card {
        padding: var(--s-5);
    }

    .contact-showcase .contact-form textarea {
        min-height: 210px;
    }
}

/* ============================================================
   HOME B2B — arquitectura diferenciada
   ============================================================ */
.hero-business-lead {
    max-width: 690px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    line-height: 1.6;
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.home-section-heading .section-title {
    margin-bottom: 14px;
}

.home-section-heading p {
    max-width: 640px;
    margin: 0;
    color: var(--c-text-soft);
    font-size: var(--t-base);
    line-height: 1.7;
}

.home-categories {
    padding: var(--s-10) 0;
    background: var(--c-cream);
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.home-category-card {
    position: relative;
    grid-column: span 4;
    min-height: 350px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: var(--c-deep);
    isolation: isolate;
}

.home-category-card:nth-child(n + 4) {
    grid-column: span 6;
}

.home-category-image,
.home-category-image::after {
    position: absolute;
    inset: 0;
}

.home-category-image::after {
    content: '';
    background: linear-gradient(180deg, rgba(4, 24, 18, 0.06) 18%, rgba(4, 24, 18, 0.88) 100%);
}

.home-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.home-category-copy {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(22px, 3vw, 34px);
}

.home-category-copy h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    font-weight: 400;
    line-height: 1.15;
}

.home-category-copy p {
    max-width: 470px;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}

.home-category-copy span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.home-category-card:hover .home-category-image img {
    transform: scale(1.045);
}

.home-category-card:hover .home-category-copy i {
    transform: translateX(4px);
}

.home-category-copy i {
    transition: transform 0.3s ease;
}

/* ---------- Del campo al destino · escena integrada v6 ---------- */
.process-v6-section {
    padding: var(--s-10) 0;
    color: var(--c-ink);
    background: #fff;
}

.process-v6-heading {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.process-v6-heading .section-title {
    color: var(--c-ink);
}

.process-v6-scene {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1672 / 780;
    isolation: isolate;
    border: 1px solid var(--c-line);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 14px 38px rgba(8, 42, 31, 0.08);
    transition: box-shadow 0.3s ease;
}

.process-v6-layer {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.process-v6-vignette {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 68%, rgba(8, 42, 31, 0.035));
    pointer-events: none;
}

.process-v6-crate {
    position: absolute;
    z-index: 3;
    left: 2.8%;
    bottom: 35.59%;
    display: block;
    width: 14.5%;
    height: auto;
    filter: drop-shadow(0 9px 13px rgba(8, 42, 31, 0.16));
    user-select: none;
    pointer-events: none;
}

.process-v6-machines {
    z-index: 5;
    top: -20.64%;
    right: auto;
    bottom: auto;
    height: auto;
    transform: translateX(calc(var(--mach-dx) / 1672 * 100%)) scale(var(--mach-s));
    transform-origin: 2.4522% 69.0754%;
}

.process-v6-chamber {
    position: absolute;
    z-index: 5;
    top: 21.03%;
    left: 69.02%;
    display: block;
    width: 27.02%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.82) contrast(1.05) saturate(0.94);
    user-select: none;
    pointer-events: none;
}

.process-v6-rail {
    position: absolute;
    z-index: 7;
    height: 1px;
    border-radius: 999px;
    background: rgba(8, 42, 31, 0.18);
}

.process-v6-rail-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 23, 42, 0.55), var(--c-red));
    box-shadow: 0 1px 5px rgba(255, 23, 42, 0.2);
    transform: translateY(-0.5px);
    transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-v6-node {
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #d4dad6;
    box-shadow: 0 0 0 1px rgba(8, 42, 31, 0.2);
    transform: translate(-50%, -50%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.process-v6-node::after {
    content: none;
}

.process-v6-node.done {
    background: var(--c-red);
    box-shadow: 0 0 0 1px rgba(255, 23, 42, 0.28);
}

.process-v6-node.active {
    background: var(--c-red);
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(255, 23, 42, 0.24);
    transform: translate(-50%, -50%) scale(1.18);
}

.process-v6-movers {
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
}

.process-v6-chip {
    position: absolute;
    top: 0;
    left: 0;
    isolation: isolate;
    transform-origin: 50% 50%;
    will-change: transform;
}

.process-v6-chip img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: auto;
}

.process-v6-chip .process-v6-frost {
    opacity: 0;
    filter: brightness(1.85) saturate(0.18) contrast(0.9);
    mix-blend-mode: screen;
}

.process-v6-contact-shadow {
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 45%, transparent 72%);
    filter: blur(2px);
    mix-blend-mode: multiply;
    pointer-events: none;
    will-change: transform, opacity;
}

.process-v6-vapor {
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(214, 238, 255, 0.5), rgba(190, 225, 255, 0) 68%);
    filter: blur(3px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.process-v6-beam {
    position: absolute;
    z-index: 6;
    opacity: 0;
    background: linear-gradient(180deg, rgba(255, 70, 70, 0), rgba(255, 90, 90, 0.5) 60%, rgba(255, 120, 120, 0.75));
    filter: blur(1px);
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 0.18s linear;
}

.process-v6-hmi {
    position: absolute;
    z-index: 6;
    image-rendering: auto;
    mix-blend-mode: screen;
    pointer-events: none;
}

.process-v6-hmi-spill {
    position: absolute;
    z-index: 6;
    background: radial-gradient(ellipse at center, rgba(120, 240, 200, 0.16), rgba(120, 240, 200, 0) 70%);
    filter: blur(6px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.process-v6-lightpool {
    position: absolute;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(206, 232, 240, 0.2), rgba(206, 232, 240, 0) 70%);
    filter: blur(8px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.process-v6-box {
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.process-v6-box svg {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.42));
}

.process-v6-timeline {
    position: absolute;
    z-index: 7;
    inset: 0;
    pointer-events: none;
}

.process-v6-label {
    position: absolute;
    display: flex;
    width: 16%;
    height: 23.16%;
    padding: calc(var(--k) * 13px) calc(var(--k) * 14px);
    flex-direction: column;
    border-top: 2px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(8, 42, 31, 0.12);
    backdrop-filter: blur(7px);
    transition: background 0.35s ease, border-color 0.35s ease;
}

.process-v6-label-number {
    display: block;
    margin-bottom: calc(var(--k) * 8px);
    color: rgba(8, 42, 31, 0.48);
    font-size: clamp(8px, calc(var(--k) * 15px), 15px);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    transition: color 0.35s ease;
}

.process-v6-label h3 {
    margin: 0 0 calc(var(--k) * 7px);
    color: var(--c-ink);
    font-family: var(--font-heading);
    font-size: clamp(9px, calc(var(--k) * 22px), 22px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.12;
    transition: color 0.35s ease;
}

.process-v6-label p {
    margin: 0;
    color: var(--c-text-soft);
    font-size: clamp(7px, calc(var(--k) * 14.5px), 14.5px);
    font-weight: 400;
    line-height: 1.42;
    transition: color 0.35s ease;
}

.process-v6-label.active {
    border-color: var(--c-red);
    background: #fff;
}

.process-v6-label.active .process-v6-label-number { color: var(--c-red); }
.process-v6-label.active h3 { color: var(--c-ink); }
.process-v6-label.active p { color: var(--c-text-soft); }
.process-v6-label.done { border-color: rgba(8, 42, 31, 0.4); }
.process-v6-label.done h3 { color: var(--c-ink); }

@media (max-width: 920px) {
    .process-v6-label { width: 16%; }
}

@media (max-width: 700px) {
    .process-v6-section { padding: var(--s-8) 0; }
    .process-v6-heading { margin-bottom: 24px; }
    .process-v6-scene { box-shadow: 0 10px 28px rgba(8, 42, 31, 0.1); }
    .process-v6-label { padding: 4px 5px; }
    .process-v6-label p { display: none; }
}

.home-proof {
    padding: clamp(48px, 6vw, 78px) 0;
    background: #fff;
}

.home-proof h2 {
    margin: 0 0 28px;
    color: var(--c-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
}

.home-proof-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--c-line);
}

.home-proof-item {
    display: grid;
    grid-template-columns: minmax(330px, 48%) 1fr;
    min-height: 148px;
    overflow: hidden;
    border-bottom: 1px solid var(--c-line);
    background: #fff;
}

.home-proof-media {
    position: relative;
    min-width: 0;
    aspect-ratio: 3 / 1;
    overflow: hidden;
    background: #fff;
}

.home-proof-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 58%, rgba(255, 255, 255, 0.12) 68%, #fff 100%);
    pointer-events: none;
}

.home-proof-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-proof-item:hover .home-proof-media img {
    transform: scale(1.025);
}

.home-proof-copy {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 28px 34px 26px;
    flex-direction: column;
    justify-content: center;
}

.home-proof-item strong,
.home-proof-copy > span {
    display: block;
}

.home-proof-item strong {
    margin-bottom: 8px;
    color: var(--c-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.15vw, 1.85rem);
    font-weight: 400;
}

.home-proof-copy > span {
    color: var(--c-text-soft);
    font-size: 0.86rem;
    line-height: 1.55;
}

.home-proof-copy--metric strong {
    font-size: clamp(1.35rem, 2.15vw, 1.85rem) !important;
    line-height: 1.15;
    white-space: nowrap;
}

.home-certifications {
    padding: var(--s-9) 0;
    background: var(--c-cream);
}

.home-certifications-copy {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.home-certifications-copy .section-title {
    margin-bottom: 10px;
}

.home-certifications-copy p {
    margin: 0;
    color: var(--c-text-soft);
}

.home-certification-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    overflow: hidden;
    background: var(--c-line);
    border: 1px solid var(--c-line);
}

.home-certification-logos > img {
    width: 100%;
    max-width: none;
    height: 122px;
    padding: 22px;
    object-fit: contain;
    background: #fff;
}

.marquee-section .cert-item {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .home-category-card,
    .home-category-card:nth-child(n + 4) {
        grid-column: span 6;
    }

    .home-category-card:last-child {
        grid-column: 1 / -1;
    }

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

@media (max-width: 680px) {
    .hero-business-lead {
        margin-bottom: 24px;
        font-size: 0.94rem;
    }

    .home-categories {
        padding: var(--s-8) 0;
    }

    .home-category-grid {
        grid-template-columns: 1fr;
    }

    .home-category-card,
    .home-category-card:nth-child(n + 4),
    .home-category-card:last-child {
        grid-column: auto;
        min-height: 310px;
    }

    .home-proof-item {
        grid-template-columns: 1fr;
    }

    .home-proof-media {
        aspect-ratio: 3 / 1;
        min-height: 116px;
    }

    .home-proof-copy {
        min-height: 126px;
        padding: 24px;
    }

    .home-certifications-copy {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .home-certification-logos > img {
        height: 108px;
        padding: 18px;
    }
}
/* ============================================================
   ABOUT EDITORIAL — field-led layout inspired by the approved mockup
   ============================================================ */
.about-editorial-page {
    --about-green: #073d2b;
    --about-green-deep: #052b20;
    --about-cream: #f8f5ee;
    --about-paper: #fffdf8;
    --about-line: rgba(7, 61, 43, 0.14);
    background: var(--about-cream);
}

.about-editorial-hero {
    position: relative;
    min-height: 650px;
    padding: 190px 0 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background-image:
        linear-gradient(90deg, rgba(3, 38, 27, 0.9) 0%, rgba(3, 38, 27, 0.68) 42%, rgba(3, 38, 27, 0.12) 78%),
        linear-gradient(180deg, rgba(4, 31, 23, 0.08) 45%, rgba(4, 31, 23, 0.45) 100%),
        var(--about-hero-image);
    background-size: cover;
    background-position: center 53%;
}

.about-editorial-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(3, 38, 27, 0.38));
    pointer-events: none;
}

.about-editorial-hero-inner {
    position: relative;
    z-index: 1;
}

.about-editorial-eyebrow {
    display: inline-flex;
    color: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.about-editorial-hero h1 {
    max-width: 14ch;
    margin: 20px 0 16px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(3.3rem, 6vw, 6.4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.about-values-section {
    position: relative;
    z-index: 2;
    margin-top: -112px;
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.about-values-grid {
    display: grid;
    grid-template-columns: minmax(270px, 1.4fr) repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.about-values-intro,
.about-value-card {
    min-width: 0;
    min-height: 322px;
    border: 1px solid var(--about-line);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(7, 61, 43, 0.08);
}

.about-values-intro {
    padding: 32px 30px;
    color: var(--about-green-deep);
    background: rgba(255, 253, 248, 0.98);
}

.about-values-intro h2,
.about-difference-intro h2 {
    color: inherit;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.about-values-intro h2 {
    margin: 0 0 20px;
    font-size: clamp(2.25rem, 3.4vw, 3.45rem);
    line-height: 1;
}

.about-values-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.72;
}

.about-value-card {
    position: relative;
    padding: 27px 22px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--about-green-deep);
    background: rgba(255, 253, 248, 0.98);
}

.about-value-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(7, 61, 43, 0.22);
    border-radius: 50%;
    color: var(--about-green);
    background: #fff;
    font-size: 1.55rem;
}

.about-value-card h3 {
    margin: 28px 0 13px;
    min-height: 2.28em;
    color: inherit;
    font-family: var(--font-heading);
    font-size: clamp(1.06rem, 1.35vw, 1.32rem);
    font-weight: 400;
    line-height: 1.14;
}

.about-value-card p {
    margin: 0;
    color: currentColor;
    font-size: 0.73rem;
    line-height: 1.62;
    opacity: 0.68;
}

.about-difference-section {
    padding: 0 0 clamp(5rem, 8vw, 8rem);
}

.about-difference-shell {
    display: grid;
    grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.65fr);
    gap: clamp(2rem, 4vw, 4.75rem);
    padding: clamp(2rem, 4vw, 4.25rem);
    border: 1px solid var(--about-line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(219, 205, 169, 0.2), transparent 34%),
        var(--about-paper);
    box-shadow: 0 20px 54px rgba(7, 61, 43, 0.07);
}

.about-difference-intro {
    align-self: center;
}

.about-difference-intro h2 {
    margin: 0 0 18px;
    color: var(--about-green-deep);
    font-size: clamp(2.5rem, 4.4vw, 4.6rem);
    line-height: 0.98;
    text-wrap: balance;
}

.about-difference-intro p {
    margin: 0;
    color: rgba(17, 39, 32, 0.72);
    font-size: 0.94rem;
    line-height: 1.72;
}

.about-difference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 2rem);
}

.about-difference-card {
    position: relative;
    min-width: 0;
}

.about-difference-number {
    display: block;
    margin-bottom: 12px;
    color: var(--about-green);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.about-difference-card picture {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #e9eee8;
}

.about-difference-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.about-difference-card:hover img {
    transform: scale(1.035);
}

.about-difference-icon {
    width: 48px;
    height: 48px;
    margin: -25px 0 14px 14px;
    position: relative;
    display: grid;
    place-items: center;
    color: var(--about-green);
    background: var(--about-paper);
    border: 1px solid rgba(7, 61, 43, 0.22);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(7, 61, 43, 0.12);
    font-size: 1.25rem;
}

.about-difference-card h3 {
    margin: 0 0 9px;
    color: var(--about-green-deep);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.7vw, 1.65rem);
    font-weight: 400;
    line-height: 1.15;
}

.about-difference-card p {
    margin: 0;
    color: rgba(17, 39, 32, 0.68);
    font-size: 0.82rem;
    line-height: 1.62;
}

.about-process-section {
    padding: 0 0 clamp(5rem, 8vw, 8rem);
}

.about-process-section .container {
    padding: clamp(2.25rem, 4.5vw, 4.5rem) clamp(2rem, 4vw, 4.25rem) clamp(2.5rem, 5vw, 5rem);
    border: 1px solid var(--about-line);
    border-radius: 30px;
    background: var(--about-paper);
    box-shadow: 0 20px 54px rgba(7, 61, 43, 0.06);
}

.about-process-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.about-process-label {
    display: block;
    margin-bottom: 12px;
    color: var(--about-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-process-header h2 {
    margin: 0;
    color: var(--about-green-deep);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.4vw, 4.5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.about-process-header > p {
    margin: 0;
    color: rgba(17, 39, 32, 0.68);
    font-size: 0.94rem;
    line-height: 1.7;
}

.about-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.6vw, 2.5rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-process-grid::before {
    content: "";
    position: absolute;
    top: 33px;
    left: 8%;
    right: 8%;
    border-top: 1px dashed rgba(7, 61, 43, 0.32);
}

.about-process-step {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.about-process-number {
    position: absolute;
    top: -10px;
    left: calc(50% - 45px);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--about-green);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
}

.about-process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: var(--about-green);
    background: var(--about-paper);
    border: 1px solid rgba(7, 61, 43, 0.28);
    border-radius: 50%;
    font-size: 1.7rem;
}

.about-process-step h3 {
    margin: 0 0 10px;
    color: var(--about-green-deep);
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.65vw, 1.5rem);
    font-weight: 500;
}

.about-process-step p {
    max-width: 24ch;
    margin: 0 auto;
    color: rgba(17, 39, 32, 0.66);
    font-size: 0.79rem;
    line-height: 1.62;
}

@media (max-width: 1180px) {
    .about-values-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .about-values-intro {
        min-height: auto;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
        gap: 30px;
        align-items: center;
    }

    .about-values-intro h2 {
        margin: 0;
    }

    .about-value-card {
        min-height: 285px;
        grid-column: span 2;
    }

    .about-value-card:nth-child(5) {
        grid-column: 2 / span 2;
    }

    .about-value-card:nth-child(6) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 900px) {
    .about-editorial-hero {
        min-height: 570px;
        padding: 160px 0 150px;
        background-image:
            linear-gradient(90deg, rgba(3, 38, 27, 0.86), rgba(3, 38, 27, 0.38)),
            var(--about-hero-image);
        background-position: 55% center;
    }

    .about-editorial-hero h1 {
        max-width: 13ch;
    }

    .about-values-section {
        margin-top: -82px;
    }

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

    .about-values-intro {
        grid-column: 1 / -1;
    }

    .about-value-card,
    .about-value-card:nth-child(5),
    .about-value-card:nth-child(6) {
        min-height: 250px;
        grid-column: auto;
    }

    .about-difference-shell {
        grid-template-columns: 1fr;
    }

    .about-difference-intro {
        max-width: 690px;
    }

    .about-process-header {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2.75rem;
    }

    .about-process-grid::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .about-editorial-hero {
        min-height: 520px;
        padding: 135px 0 125px;
        background-image:
            linear-gradient(90deg, rgba(3, 38, 27, 0.86), rgba(3, 38, 27, 0.36)),
            var(--about-hero-image-mobile);
        background-position: center;
    }

    .about-editorial-hero h1 {
        margin-top: 16px;
        font-size: clamp(2.55rem, 13vw, 3.5rem);
        line-height: 1;
    }

    .about-values-section {
        margin-top: -58px;
        padding-bottom: 4rem;
    }

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

    .about-values-intro {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 24px;
    }

    .about-values-intro h2 {
        font-size: 2.35rem;
    }

    .about-value-card {
        min-height: 220px;
        padding: 24px;
    }

    .about-value-card h3 {
        font-size: 1.4rem;
    }

    .about-difference-shell {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .about-difference-intro h2 {
        font-size: 2.75rem;
    }

    .about-difference-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .about-process-section .container {
        width: calc(100% - 32px);
        padding: 28px 20px 34px;
        border-radius: 22px;
    }

    .about-process-header h2 {
        font-size: 2.6rem;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-process-step {
        padding-bottom: 0.75rem;
    }
}

/* ============================================================
   TOP BAR — visibility guarantee across every page and viewport
   ============================================================ */
.navbar,
.navbar:not(.scrolled),
.navbar.scrolled,
body.interior .navbar {
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(10, 31, 18, 0.08);
    box-shadow: 0 4px 20px rgba(10, 31, 18, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar .nav-container {
    width: 100%;
    max-width: 1440px;
    min-width: 0;
    padding-inline: clamp(16px, 4vw, 64px);
}

.navbar .brand-logo,
.navbar .nav-actions,
.navbar .menu-toggle {
    flex: 0 0 auto;
}

.navbar .nav-links {
    min-width: 0;
    white-space: nowrap;
}

.navbar .nav-actions {
    min-width: max-content;
    white-space: nowrap;
}

.navbar:not(.scrolled) .brand-logo .logo-combo .logo-icon {
    filter: drop-shadow(0 2px 5px rgba(10, 31, 18, 0.12));
}

body:not(.interior) .navbar:not(.scrolled) .nav-links > a,
body:not(.interior) .navbar:not(.scrolled) .nav-links > .nav-dropdown > .nav-dropdown-toggle {
    color: var(--c-ink) !important;
}

body:not(.interior) .navbar:not(.scrolled) .nav-links > a.active,
body:not(.interior) .navbar:not(.scrolled) .nav-links > .nav-dropdown > .nav-dropdown-toggle.active {
    color: var(--c-green-dark) !important;
}

body:not(.interior) .navbar:not(.scrolled) .nav-links > a:hover,
body:not(.interior) .navbar:not(.scrolled) .nav-links > .nav-dropdown > .nav-dropdown-toggle:hover {
    color: var(--c-text-soft) !important;
}

.navbar:not(.scrolled) .lang-toggle,
.navbar.scrolled .lang-toggle,
body.interior .lang-toggle {
    color: var(--c-ink);
    border-color: rgba(10, 31, 18, 0.45);
}

.navbar:not(.scrolled) .lang-toggle:hover,
.navbar.scrolled .lang-toggle:hover,
body.interior .lang-toggle:hover {
    color: var(--c-green-dark);
    background: var(--c-cream);
    border-color: var(--c-green-dark);
}

.navbar:not(.scrolled) .nav-cta-desktop,
.navbar.scrolled .nav-cta-desktop,
body.interior .nav-cta-desktop {
    color: var(--c-ink);
    border-color: var(--c-ink);
}

.navbar:not(.scrolled) .nav-cta-desktop:hover,
.navbar.scrolled .nav-cta-desktop:hover,
body.interior .nav-cta-desktop:hover {
    color: #fff;
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
}

.navbar .menu-toggle span,
.navbar:not(.scrolled) .menu-toggle span,
.navbar.scrolled .menu-toggle span,
body.interior .menu-toggle span {
    background: var(--c-ink);
}

.navbar .nav-dropdown-menu {
    max-height: calc(100vh - 128px);
    max-height: calc(100dvh - 128px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

@media (max-width: 1180px) {
    .navbar .nav-container {
        flex-wrap: nowrap;
        column-gap: 12px;
    }

    .navbar .brand-logo {
        order: 1;
    }

    /* Collapse the inline links into the hamburger menu instead of
       wrapping them onto a second row below the logo. */
    .navbar .nav-links {
        display: none !important;
    }

    .navbar .nav-actions {
        order: 2;
        display: flex !important;
        margin-left: auto;
    }

    .navbar .lang-switcher {
        display: inline-block !important;
    }

    .navbar .nav-cta-desktop {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .navbar .menu-toggle {
        order: 2;
        display: block;
    }

    .mobile-menu {
        height: 100vh;
        height: 100dvh;
        align-items: flex-start;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-menu-content {
        width: 100%;
        max-width: 680px;
        min-height: max-content;
        margin: 0;
        padding: 118px clamp(28px, 7vw, 56px) 42px;
        align-items: flex-start;
        gap: clamp(20px, 3vh, 30px);
    }

    .mobile-link {
        font-size: clamp(2rem, 6.4vw, 2.5rem);
        line-height: 1.05;
    }
}

@media (max-width: 700px) {
    .navbar .nav-container {
        column-gap: 8px;
        row-gap: 6px;
        padding-inline: 12px;
    }

    .navbar .nav-links {
        gap: 7px clamp(7px, 2.3vw, 14px) !important;
        padding-bottom: 5px;
    }

    .navbar .nav-links > a,
    .navbar .nav-links > .nav-dropdown > .nav-dropdown-toggle {
        font-size: 0.64rem !important;
        letter-spacing: 0.02em;
    }

    .brand-logo .logo-combo .logo-icon,
    .navbar.scrolled .brand-logo .logo-combo .logo-icon,
    body.interior .brand-logo .logo-combo .logo-icon {
        height: 52px;
        max-height: 52px;
    }

    .navbar .nav-actions {
        gap: 6px;
    }

    .navbar .lang-toggle {
        gap: 4px;
        padding: 7px 9px;
        font-size: 0.7rem;
    }

    .navbar .nav-cta-desktop {
        padding: 7px 11px !important;
        font-size: 0.64rem !important;
        letter-spacing: 0.06em !important;
    }

    .navbar .menu-toggle {
        width: 28px;
        height: 24px;
    }

    .mobile-menu-content {
        padding-top: 96px;
    }
}

@media (max-width: 420px) {
    .navbar,
    .navbar:not(.scrolled),
    .navbar.scrolled,
    body.interior .navbar {
        padding-block: 8px;
    }

    .navbar .nav-container {
        column-gap: 6px;
        row-gap: 5px;
        padding-inline: 10px;
    }

    .navbar .nav-links {
        gap: 6px clamp(5px, 1.8vw, 8px) !important;
        padding-bottom: 4px;
    }

    .navbar .nav-links > a,
    .navbar .nav-links > .nav-dropdown > .nav-dropdown-toggle {
        font-size: 0.56rem !important;
        letter-spacing: 0.005em;
    }

    .brand-logo .logo-combo .logo-icon,
    .navbar.scrolled .brand-logo .logo-combo .logo-icon,
    body.interior .brand-logo .logo-combo .logo-icon {
        height: 44px;
        max-height: 44px;
    }

    .navbar .nav-actions {
        gap: 4px;
    }

    .navbar .lang-toggle {
        padding: 6px 7px;
        font-size: 0.65rem;
    }

    .navbar .nav-cta-desktop {
        padding: 6px 8px !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.03em !important;
    }

    .navbar .menu-toggle {
        width: 26px;
    }

    .mobile-menu-content {
        padding: 82px 18px 30px;
    }
}

@media (max-width: 340px) {
    .brand-logo .logo-combo .logo-icon,
    .navbar.scrolled .brand-logo .logo-combo .logo-icon,
    body.interior .brand-logo .logo-combo .logo-icon {
        height: 40px;
        max-height: 40px;
    }

    .navbar .lang-toggle .flag {
        display: none;
    }

    .navbar .lang-toggle {
        gap: 3px;
        padding-inline: 5px;
    }

    .navbar .nav-cta-desktop {
        letter-spacing: 0 !important;
    }

    .navbar .nav-links {
        gap: 5px !important;
    }

    .navbar .nav-links > a,
    .navbar .nav-links > .nav-dropdown > .nav-dropdown-toggle {
        font-size: 0.52rem !important;
    }
}

@media (max-width: 1180px) and (max-height: 700px) {
    .mobile-menu-content {
        padding-top: 92px;
        gap: 10px;
    }

    .mobile-link {
        font-size: clamp(1.35rem, 4.2vw, 1.8rem);
    }

    .mobile-sublink {
        padding-block: 2px;
        font-size: 0.82rem !important;
    }
}

/* ============================================================
   ABOUT — polished tablet and mobile composition
   ============================================================ */
@media (max-width: 1180px) {
    body.interior main > .breadcrumb:first-child,
    body.interior main > nav.breadcrumb:first-child {
        margin-top: 148px;
    }

    .about-editorial-hero {
        min-height: 560px;
        margin-top: 134px;
        padding: 112px 0 122px;
        background-position: center 54%;
    }

    .about-editorial-hero h1 {
        max-width: 14ch;
        font-size: clamp(3.1rem, 6.3vw, 5rem);
    }

    .about-values-section {
        margin-top: -64px;
    }
}

@media (max-width: 900px) {
    .about-editorial-hero {
        min-height: 500px;
        padding: 92px 0 104px;
        background-position: 52% center;
    }

    .about-editorial-hero h1 {
        max-width: 13ch;
        font-size: clamp(2.75rem, 7.2vw, 4.1rem);
        line-height: 1.02;
    }

    .about-values-section {
        margin-top: 0;
        padding: 34px 0 64px;
    }

    .about-values-grid {
        gap: 14px;
    }

    .about-values-intro {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
        padding: 30px;
        border-radius: 16px;
    }

    .about-values-intro h2 {
        font-size: clamp(2.2rem, 6vw, 3.1rem);
    }

    .about-value-card {
        min-height: 225px;
        padding: 26px;
        justify-content: flex-start;
        border-radius: 16px;
    }

    .about-value-icon {
        margin-bottom: 24px;
    }

    .about-value-card h3 {
        margin: 0 0 11px;
    }

    .about-difference-section,
    .about-process-section {
        padding-bottom: 64px;
    }

    .about-difference-shell {
        gap: 32px;
        padding: 32px;
        border-radius: 24px;
    }

    .about-difference-intro h2 {
        font-size: clamp(2.4rem, 7vw, 3.8rem);
        line-height: 1.02;
    }

    .about-difference-grid {
        gap: 24px;
    }

    .about-process-section .container {
        padding: 36px 28px 42px;
        border-radius: 24px;
    }

    .about-process-header {
        margin-bottom: 38px;
    }
}

@media (max-width: 768px) {
    body.interior main > .breadcrumb:first-child,
    body.interior main > nav.breadcrumb:first-child {
        margin-top: 122px;
    }

    .about-editorial-hero {
        min-height: 470px;
        margin-top: 110px;
        padding: 84px 0 92px;
    }
}

@media (max-width: 700px) {
    body.interior main > .breadcrumb:first-child,
    body.interior main > nav.breadcrumb:first-child {
        margin-top: 112px;
    }

    .about-editorial-hero {
        min-height: 445px;
        margin-top: 100px;
        padding: 76px 0 84px;
    }
}

@media (max-width: 560px) {
    .about-editorial-hero {
        min-height: 420px;
        padding: 70px 0 76px;
        background-position: center;
    }

    .about-editorial-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .about-editorial-hero h1 {
        max-width: 13ch;
        margin-top: 14px;
        font-size: clamp(2.3rem, 10.5vw, 3.1rem);
        line-height: 1.03;
        letter-spacing: -0.035em;
        overflow-wrap: anywhere;
    }

    .about-values-section {
        padding: 28px 0 54px;
    }

    .about-values-grid {
        gap: 12px;
    }

    .about-values-intro,
    .about-value-card {
        min-height: 0;
        padding: 24px;
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(7, 61, 43, 0.07);
    }

    .about-values-intro h2 {
        font-size: 2.2rem;
    }

    .about-value-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        font-size: 1.35rem;
    }

    .about-value-card h3 {
        font-size: 1.25rem;
    }

    .about-difference-section,
    .about-process-section {
        padding-bottom: 52px;
    }

    .about-difference-shell {
        gap: 28px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .about-difference-intro h2 {
        font-size: clamp(2.15rem, 10vw, 2.65rem);
        line-height: 1.04;
    }

    .about-difference-grid {
        gap: 30px;
    }

    .about-difference-card picture {
        aspect-ratio: 3 / 2;
    }

    .about-process-section .container {
        width: calc(100% - 24px);
        padding: 30px 20px 34px;
        border-radius: 20px;
    }

    .about-process-header {
        gap: 12px;
        margin-bottom: 32px;
    }

    .about-process-header h2 {
        font-size: 2.25rem;
        line-height: 1.04;
    }

    .about-process-grid {
        gap: 30px;
    }

    .about-process-step p {
        max-width: 30ch;
    }
}

@media (max-width: 420px) {
    body.interior main > .breadcrumb:first-child,
    body.interior main > nav.breadcrumb:first-child {
        margin-top: 98px;
    }

    .about-editorial-hero {
        min-height: 390px;
        margin-top: 86px;
        padding: 62px 0 68px;
    }

    .about-editorial-hero h1 {
        font-size: clamp(2.15rem, 10.7vw, 2.75rem);
    }

    .about-values-section {
        padding-top: 24px;
    }
}
