/* =============================================================
   Aquaduo × Eroski — Landing partner B2B
   Brand-led, parallax-heavy, mosaic-grid driven design.
   ============================================================= */

/* ---- Tokens ---- */
:root {
    --le-navy:        #08146E;
    --le-navy-deep:   #04094A;
    --le-mint:        #1AFFD5;
    --le-mint-soft:   #8FF3D9;
    --le-lavender:    #A8B0E0;
    --le-lavender-d:  #6E76A6;
    --le-white:       #FFFFFF;
    --le-warm:        #C97A3A;

    --le-ease-out:    cubic-bezier(.22, 1, .36, 1);
    --le-ease-soft:   cubic-bezier(.4, 0, .2, 1);

    --le-radius-lg:   24px;
    --le-container:   1320px;

    --le-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --le-serif:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }

.le-html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { .le-html { scroll-behavior: auto; } }

.le-body {
    margin: 0;
    background-color: var(--le-navy);
    color: var(--le-white);
    font-family: var(--le-font);
    font-feature-settings: "ss01", "ss02", "kern";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip; /* clip (not hidden) — keeps position: sticky working */
    position: relative;
}

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

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

::selection { background: var(--le-mint); color: var(--le-navy); }

/* ---- Top progress bar ---- */
.le-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 999;
    pointer-events: none;
}
.le-progress > span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--le-mint), var(--le-mint-soft));
    transition: width .08s linear;
}

/* ---- Top bar (no blend mode — colors flipped via data-le-mode) ---- */
.le-top {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: clamp(20px, 2.4vw, 32px) clamp(24px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    pointer-events: none;
}
.le-top > * { pointer-events: auto; }
.le-top-logo {
    position: relative;
    display: inline-block;
    /* Hidden until the user has scrolled past the hero — the .le-hero-logo
       takes over from sec-1, then fades into this navbar slot. */
    opacity: 0;
    transition: opacity .45s .55s var(--le-ease-out);
    pointer-events: none;
}
.le-body.is-past-hero .le-top-logo {
    opacity: 1;
    pointer-events: auto;
}
.le-top-logo img {
    height: clamp(26px, 2.4vw, 33px);
    width: auto;
    aspect-ratio: 860 / 202; /* logo SVG viewBox proportion */
    transition: opacity .35s var(--le-ease-out);
    display: block;
}
.le-top-logo--dark {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
}
.le-body[data-le-mode="mint"] .le-top-logo--light,
.le-body[data-le-mode="white"] .le-top-logo--light { opacity: 0; }
.le-body[data-le-mode="mint"] .le-top-logo--dark,
.le-body[data-le-mode="white"] .le-top-logo--dark  { opacity: 1; }

/* Hero logo: fixed, large, centred. Slides into the navbar slot on scroll. */
.le-hero-logo {
    position: fixed;
    top: 50vh;
    left: 50vw;
    width: clamp(220px, 28vw, 320px);
    transform: translate3d(-50%, -50%, 0);
    z-index: 99; /* below .le-top (z 100) so navbar can take over visually */
    pointer-events: none;
    transition:
        top    1.05s var(--le-ease-out),
        left   1.05s var(--le-ease-out),
        width  1.05s var(--le-ease-out),
        transform 1.05s var(--le-ease-out),
        opacity .55s .55s var(--le-ease-out);
    will-change: top, left, width, transform, opacity;
}
.le-hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.le-body.is-past-hero .le-hero-logo {
    /* Match the navbar logo's natural top-left coords + size */
    top: clamp(20px, 2.4vw, 32px);
    left: clamp(24px, 4vw, 56px);
    width: clamp(110px, 9.5vw, 140px);
    transform: translate3d(0, 0, 0);
    opacity: 0; /* hand off to navbar logo (which fades in via .is-past-hero) */
}
@media (prefers-reduced-motion: reduce) {
    .le-hero-logo, .le-top-logo { transition: none; }
}
.le-top-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 0.72rem;
    color: var(--le-white);
    line-height: 1.2;
    transition: color .4s var(--le-ease-out);
}
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-top-meta { color: var(--le-navy); }
.le-top-meta-label {
    font-style: italic;
    opacity: 0.7;
    font-family: var(--le-serif);
    font-size: 0.85rem;
}
.le-top-meta-strong {
    font-weight: 600;
    letter-spacing: -0.005em;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
@media (max-width: 720px) {
    .le-top-meta-label { display: none; }
    .le-top-meta-strong { font-size: 0.65rem; }
}

/* ---- Side dots navigation ---- */
.le-dots {
    position: fixed;
    left: clamp(16px, 2.4vw, 28px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: auto;
}
.le-dot {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--le-white);
    opacity: 0.45;
    transition: opacity .3s var(--le-ease-out), transform .3s var(--le-ease-out), color .4s var(--le-ease-out);
}
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-dot { color: var(--le-navy); }
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-dot.is-active::before { background: var(--le-navy); }
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-dot.is-active .le-dot-num { color: var(--le-navy); }
.le-dot::before {
    content: '';
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: width .3s var(--le-ease-out);
}
.le-dot.is-active::before { width: 32px; background: var(--le-mint); }
.le-dot:hover { opacity: 0.95; transform: translateX(4px); }
.le-dot.is-active { opacity: 1; }
.le-dot-num {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
}
.le-dot.is-active .le-dot-num { color: var(--le-mint); }
.le-dot-label {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s, transform .25s;
    letter-spacing: -0.01em;
}
.le-dot:hover .le-dot-label,
.le-dot.is-active .le-dot-label { opacity: 0.95; transform: translateX(0); }
@media (max-width: 1024px) { .le-dots { display: none; } }

/* ---- Page counter (right side) ---- */
.le-page-counter {
    position: fixed;
    right: clamp(20px, 2.6vw, 36px);
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--le-font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--le-white);
    opacity: 0.55;
    pointer-events: none;
    transition: color .4s var(--le-ease-out);
}
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-page-counter { color: var(--le-navy); opacity: 0.75; }
.le-page-counter-current {
    color: var(--le-mint);
    font-variant-numeric: tabular-nums;
    transition: transform .35s var(--le-ease-out), color .4s var(--le-ease-out);
}
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-page-counter-current { color: var(--le-navy-deep); }
.le-page-counter-bar {
    width: 50px;
    height: 1px;
    background: currentColor;
}
.le-page-counter-total {
    font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) { .le-page-counter { display: none; } }

/* ---- Cursor (mouse follower, desktop only) ---- */
.le-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--le-mint);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .35s var(--le-ease-out), background .35s var(--le-ease-out), width .35s var(--le-ease-out), height .35s var(--le-ease-out);
    will-change: transform, top, left;
}
.le-body[data-le-mode="mint"], .le-body[data-le-mode="white"] .le-cursor { background: var(--le-navy); }
.le-cursor.is-visible { transform: translate(-50%, -50%) scale(1); }
.le-cursor.is-hover { width: 60px; height: 60px; background: var(--le-mint-soft); mix-blend-mode: difference; }
@media (hover: none) { .le-cursor { display: none; } }

/* =============================================================
   Section primitives
   ============================================================= */

/*
 * Stacked sections — every section sticks to the top of the viewport and
 * the next one slides up over it. Pure CSS, no JS required.
 *
 * The DOM order doubles as paint order for sticky elements, so the section
 * declared later naturally overlays the previous one. Each section keeps
 * its own opaque background — that's what "covers" the section underneath
 * as it scrolls into place.
 */
.le-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}
.le-section--navy {
    background: var(--le-navy);
    color: var(--le-white);
}
.le-section--mint {
    background: var(--le-mint);
    color: var(--le-navy);
}
.le-section--white {
    background: var(--le-white);
    color: var(--le-navy);
}
/* Light sections (mint + white) share the same content-color reset:
   eyebrow becomes navy, text turns navy, mint hairlines stay mint as accent. */
.le-section--mint .le-eyebrow,
.le-section--white .le-eyebrow {
    color: var(--le-navy);
    opacity: 0.7;
}
.le-section--white .le-pillar { border-top-color: rgba(8, 20, 110, 0.20); }
.le-section--white .le-pillar-title { color: var(--le-navy); }
.le-section--white .le-pillar-text { color: var(--le-navy); opacity: 0.78; }
.le-section--white .le-text-md,
.le-section--white .le-text-lg,
.le-section--white .le-lead { color: var(--le-navy); opacity: 0.84; }
.le-section--white .le-define-text .le-mint { color: var(--le-navy); }
.le-section--white .le-eroski-cell { color: var(--le-navy); border-top-color: rgba(8, 20, 110, 0.20); opacity: 1; }
.le-section--white .le-eroski-cell strong { color: var(--le-navy); font-weight: 700; }
.le-section--white .le-product-meta-list li { color: var(--le-navy); border-top-color: rgba(8, 20, 110, 0.16); }
.le-section--white .le-product-meta-list li:last-child { border-bottom-color: rgba(8, 20, 110, 0.16); }
.le-section--white .le-product-meta-list li > span { color: var(--le-navy); opacity: 0.55; }
/* Mint sections that include numbered step content need step adapters */
.le-section--mint .le-step-num { color: var(--le-navy); }
.le-section--mint .le-step-num::after { color: var(--le-navy); }
.le-section--mint .le-step-content h3 { color: var(--le-navy); }
.le-section--mint .le-step-content p { color: var(--le-navy); opacity: 0.78; }
.le-section--mint .le-h-xl { color: var(--le-navy); }
.le-section--image {
    background: var(--le-navy-deep);
    color: var(--le-white);
}
@media (prefers-reduced-motion: reduce) {
    .le-section { position: relative; }
}

.le-container {
    max-width: var(--le-container);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.le-section-foot {
    position: absolute;
    bottom: clamp(20px, 2.6vw, 40px);
    left: clamp(24px, 6vw, 96px);
    right: clamp(24px, 6vw, 96px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.78rem;
    z-index: 3;
    color: inherit;
    pointer-events: none;
}
.le-section-foot-left {
    font-weight: 700;
    letter-spacing: -0.005em;
    border-top: 1px solid currentColor;
    padding-top: 10px;
    width: clamp(140px, 14vw, 200px);
    opacity: 0.92;
}
.le-section-foot-mid {
    font-weight: 500;
    opacity: 0.7;
}
.le-section-foot-right {
    font-style: italic;
    font-family: var(--le-serif);
    font-size: 1rem;
    opacity: 0.7;
}
.le-section-foot-num {
    position: absolute;
    top: clamp(80px, 10vw, 120px);
    right: clamp(24px, 6vw, 96px);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    z-index: 3;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    opacity: 0.85;
}
.le-section-foot-num::before {
    content: '— ';
    margin-right: 6px;
}
@media (max-width: 720px) {
    .le-section-foot-right { display: none; }
    .le-section-foot-num { display: none; }
}

/* =============================================================
   Typography
   ============================================================= */

.le-h-mega {
    font-family: var(--le-font);
    font-weight: 800;
    font-size: clamp(2.6rem, 8.4vw, 8rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0;
}
.le-h-xl {
    font-family: var(--le-font);
    font-weight: 800;
    font-size: clamp(2.2rem, 5.4vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 0;
}
.le-h-lg {
    font-family: var(--le-font);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0;
}
.le-h-md {
    font-family: var(--le-font);
    font-weight: 700;
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    line-height: 1.3;
    letter-spacing: -0.012em;
    margin: 0;
}
.le-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--le-mint);
    margin-bottom: 28px;
}
.le-section--mint .le-eyebrow { color: var(--le-navy); }
.le-italic, .le-serif {
    font-family: var(--le-serif);
    font-style: italic;
    font-weight: 400;
}
.le-mint { color: var(--le-mint); }
.le-navy { color: var(--le-navy); }
.le-lead {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.55;
    max-width: 64ch;
    opacity: 0.92;
}
.le-text-lg {
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    line-height: 1.55;
    max-width: 60ch;
}
.le-text-md {
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.84;
}

/* =============================================================
   Reveal animations
   ============================================================= */

.le-reveal,
.le-reveal-words > span,
.le-reveal-chars > span {
    will-change: opacity, transform;
}
.le-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--le-ease-out), transform 1.1s var(--le-ease-out);
}
.le-reveal.is-visible { opacity: 1; transform: translateY(0); }

.le-reveal-words > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.7em) rotate(2deg);
    transition: opacity .8s var(--le-ease-out), transform .9s var(--le-ease-out);
}
.le-reveal-words.is-visible > span { opacity: 1; transform: translateY(0) rotate(0); }

.le-reveal-chars > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em);
    transition: opacity .55s var(--le-ease-out), transform .6s var(--le-ease-out);
}
.le-reveal-chars.is-visible > span { opacity: 1; transform: translateY(0); }

.le-reveal-mask {
    position: relative;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s var(--le-ease-out);
}
.le-reveal-mask.is-visible { clip-path: inset(0 0 0 0); }

.le-reveal-img {
    overflow: hidden;
}
.le-reveal-img > img,
.le-reveal-img > div {
    transform: scale(1.18);
    transition: transform 1.4s var(--le-ease-out);
}
.le-reveal-img.is-visible > img,
.le-reveal-img.is-visible > div { transform: scale(1); }

/* =============================================================
   Shapes (D-shape decorative arcs)
   ============================================================= */

.le-shape {
    display: block;
    will-change: transform;
}
.le-shape-layer {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}
.le-shape-anim-spin    { animation: le-spin 60s linear infinite; }
.le-shape-anim-spin-r  { animation: le-spin 90s linear infinite reverse; }
.le-shape-anim-float   { animation: le-float 8s ease-in-out infinite; }
.le-shape-anim-pulse   { animation: le-pulse 4s ease-in-out infinite; }
@keyframes le-spin  { to { transform: rotate(360deg); } }
@keyframes le-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes le-pulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.08); opacity: 1; } }

/* Shape "trail" — repeated D-shapes flying in a row */
.le-shape-trail {
    display: flex;
    align-items: center;
    gap: 6px;
}
.le-shape-trail .le-shape-cell {
    width: clamp(50px, 6vw, 80px);
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    transform-origin: center;
}
.le-shape-trail .le-shape-cell:nth-child(1) { opacity: 0.30; }
.le-shape-trail .le-shape-cell:nth-child(2) { opacity: 0.45; }
.le-shape-trail .le-shape-cell:nth-child(3) { opacity: 0.55; }
.le-shape-trail .le-shape-cell:nth-child(4) { opacity: 0.70; }
.le-shape-trail .le-shape-cell:nth-child(5) { opacity: 0.85; }
.le-shape-trail .le-shape-cell:nth-child(6) { opacity: 1; }
.le-shape-trail.is-visible .le-shape-cell {
    animation: le-trail-pop .9s var(--le-ease-out) both;
}
.le-shape-trail.is-visible .le-shape-cell:nth-child(1) { animation-delay: 0ms; }
.le-shape-trail.is-visible .le-shape-cell:nth-child(2) { animation-delay: 80ms; }
.le-shape-trail.is-visible .le-shape-cell:nth-child(3) { animation-delay: 160ms; }
.le-shape-trail.is-visible .le-shape-cell:nth-child(4) { animation-delay: 240ms; }
.le-shape-trail.is-visible .le-shape-cell:nth-child(5) { animation-delay: 320ms; }
.le-shape-trail.is-visible .le-shape-cell:nth-child(6) { animation-delay: 400ms; }
@keyframes le-trail-pop {
    from { transform: translateX(40px); opacity: 0; }
    to   { transform: translateX(0); }
}

/* Mouse-parallax shape: positioned by --mx, --my variables (set by JS) */
.le-shape-mp {
    transition: transform .8s var(--le-ease-out);
}

/* =============================================================
   SECTION 1 — Hero (cover slide)
   ============================================================= */

/*
 * Hero (slide 1 of the PDF): flat navy + the logo. Note that the
 * actual <img> here is the *navbar logo*; the JS positions it FIXED
 * over this section as the user lands, then animates it back to the
 * navbar slot on scroll. So this stage is intentionally empty.
 */
.le-hero {
    background: var(--le-navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

/* Tagline reproduces the PDF footer position: bottom-right italic-ish caption */
.le-hero-tagline {
    position: absolute;
    bottom: clamp(28px, 4vw, 64px);
    right: clamp(28px, 6vw, 96px);
    margin: 0;
    font-style: italic;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--le-white);
    opacity: 0.7;
    letter-spacing: -0.005em;
    text-align: right;
    max-width: 28ch;
}
@media (max-width: 640px) {
    .le-hero-tagline {
        bottom: 28px; left: 24px; right: 24px;
        text-align: center;
        font-size: 0.85rem;
    }
}

/* =============================================================
   SECTION 2 — Quién somos (3 pilares)
   ============================================================= */

.le-pillars-head { max-width: 920px; }
.le-pillars-title { color: var(--le-mint); margin-bottom: 32px; }
.le-pillars-sub {
    font-size: clamp(1.05rem, 1.3vw, 1.4rem);
    line-height: 1.45;
    max-width: 60ch;
    color: var(--le-white);
    opacity: 0.92;
}
.le-pillars {
    display: grid;
    grid-template-columns: minmax(120px, 200px) repeat(3, 1fr);
    gap: clamp(28px, 3.5vw, 48px);
    margin-top: clamp(60px, 9vw, 130px);
    align-items: start;
}
.le-pillars-mark {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.le-pillars-mark .le-shape { width: 56%; }
.le-pillars-mark .le-shape:nth-child(2) { width: 40%; opacity: 0.5; transform: translateY(8px); }
.le-pillar {
    border-top: 1px solid rgba(26, 255, 213, 0.45);
    padding-top: 16px;
}
.le-pillar-title {
    color: var(--le-mint);
    font-style: italic;
    font-family: var(--le-font);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 16px;
}
.le-pillar-text {
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}
@media (max-width: 860px) {
    .le-pillars { grid-template-columns: 1fr; }
    .le-pillars-mark { width: 80px; }
}

/* =============================================================
   SECTION 3 — Statement mint (en el lineal de aguas)
   ============================================================= */

.le-statement {
    background: var(--le-mint);
    color: var(--le-navy);
}
.le-statement-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 6.4vw, 6rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    max-width: 22ch;
}
.le-statement-shape {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    max-width: 720px;
    z-index: 1;
    transform: rotate(180deg);
}

/* =============================================================
   SECTION 4 — Fullbleed Tramuntana
   ============================================================= */

.le-fullbleed {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.le-fullbleed-img {
    position: absolute;
    inset: -8% 0 0 0;
    width: 100%;
    height: 116%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.le-fullbleed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,20,110,0.30) 0%, rgba(8,20,110,0.45) 60%, rgba(8,20,110,0.7) 100%);
    z-index: 1;
}
.le-fullbleed-text {
    position: relative;
    z-index: 2;
    font-family: var(--le-serif);
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--le-white);
    max-width: 24ch;
    line-height: 1.2;
    text-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
.le-fullbleed-shape {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(180px, 22vw, 320px);
    z-index: 2;
    opacity: 0.45;
}

/* =============================================================
   SECTION 5 — Qué es Aquaduo (definición)
   ============================================================= */

.le-define {
    position: relative;
}
.le-define-text {
    font-size: clamp(1.8rem, 4.2vw, 4rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.035em;
    max-width: 24ch;
}
.le-define-text .le-mint { font-family: var(--le-serif); font-style: italic; font-weight: 400; }
.le-define-shape-top {
    position: absolute;
    top: -6%;
    left: 18%;
    width: clamp(220px, 26vw, 420px);
    z-index: 1;
}
.le-define-shape-bot {
    position: absolute;
    bottom: 4%;
    left: 46%;
    width: clamp(200px, 24vw, 360px);
    z-index: 1;
    /* Navy shape now opens to the right (rotation 0) — opposite to the
       mint shape on top, which opens to the left, so the two D-shapes
       face each other across the section. */
    transform: rotate(0deg);
}

/* =============================================================
   SECTION 6 — Modelo publicitario nuevo
   ============================================================= */

.le-model {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.le-model-title {
    font-size: clamp(2rem, 4.6vw, 4.4rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.035em;
}
.le-model-text {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-top: clamp(36px, 5vw, 56px);
    max-width: 54ch;
    opacity: 0.92;
}
.le-model-shapes {
    position: relative;
    height: clamp(420px, 56vw, 720px);
}
.le-model-shape {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    will-change: transform, opacity;
}
.le-model-shape--1 { top:  4%; width: clamp(140px, 18vw, 240px); }
.le-model-shape--2 { top: 28%; width: clamp(180px, 24vw, 320px); }
.le-model-shape--3 { top: 56%; width: clamp(220px, 30vw, 400px); }
@media (max-width: 920px) {
    .le-model { grid-template-columns: 1fr; }
}

/* =============================================================
   SECTION 7 — Producto (mosaic galleries)
   ============================================================= */

.le-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(80px, 10vw, 130px);
    gap: clamp(12px, 1.6vw, 20px);
    margin-top: clamp(40px, 6vw, 80px);
    position: relative;
}
.le-tile {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform .6s var(--le-ease-out);
    will-change: transform;
}
.le-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--le-ease-out), filter .5s;
}
.le-tile:hover img { transform: scale(1.06); }
.le-tile-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: visible;
}
.le-tile-shape .le-shape { width: 70%; }

/* Mosaic pattern A: 4 photos + 2 shapes (replica slide 7) */
.le-mosaic--a .le-tile:nth-child(1) { grid-column: 1 / span 5;  grid-row: 1 / span 3; }
.le-mosaic--a .le-tile:nth-child(2) { grid-column: 6 / span 5;  grid-row: 1 / span 3; }
.le-mosaic--a .le-tile:nth-child(3) { grid-column: 11 / span 2; grid-row: 2 / span 2; }
.le-mosaic--a .le-tile:nth-child(4) { grid-column: 1 / span 3;  grid-row: 4 / span 1; opacity: .9; }
.le-mosaic--a .le-tile:nth-child(5) { grid-column: 4 / span 4;  grid-row: 4 / span 3; }
.le-mosaic--a .le-tile:nth-child(6) { grid-column: 8 / span 5;  grid-row: 4 / span 3; }

/* Mosaic pattern B: supermarket shelves (replica slide 8) */
.le-mosaic--b .le-tile:nth-child(1) { grid-column: 1 / span 5;  grid-row: 1 / span 3; }
.le-mosaic--b .le-tile:nth-child(2) { grid-column: 6 / span 4;  grid-row: 1 / span 2; }
.le-mosaic--b .le-tile:nth-child(3) { grid-column: 10 / span 3; grid-row: 1 / span 2; }
.le-mosaic--b .le-tile:nth-child(4) { grid-column: 4 / span 3;  grid-row: 4 / span 2; }
.le-mosaic--b .le-tile:nth-child(5) { grid-column: 7 / span 6;  grid-row: 3 / span 3; }
.le-mosaic--b .le-tile:nth-child(6) { grid-column: 1 / span 3;  grid-row: 4 / span 2; }

@media (max-width: 760px) {
    .le-mosaic--a .le-tile,
    .le-mosaic--b .le-tile { grid-column: span 6 !important; grid-row: span 2 !important; }
}

.le-bottle-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
}
.le-bottle-svg {
    width: auto;
    height: 78%;
    max-height: 380px;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.35));
}
.le-bottle-shelf {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 0 8%;
    height: 88%;
}
.le-bottle-mini {
    width: 14%;
    height: auto;
    max-height: 90%;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}
.le-bottle-shelf-edge {
    position: absolute;
    bottom: 6%;
    left: 0; right: 0;
    height: 4px;
    background: rgba(40, 50, 80, 0.5);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.le-bottle-caption {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(8, 20, 110, 0.55);
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.le-product-title {
    font-size: clamp(2rem, 4.6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    max-width: 22ch;
}
.le-product-meta {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 720px;
    font-size: 0.92rem;
    opacity: 0.85;
}

/* Gallery — Producto (sec 7), 12-col asymmetric mosaic with UIkit lightbox */
.le-product-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: end;
    margin-bottom: clamp(40px, 6vw, 80px);
}
@media (max-width: 760px) { .le-product-head { grid-template-columns: 1fr; } }

.le-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    grid-auto-rows: clamp(140px, 14vw, 220px);
    gap: clamp(12px, 1.4vw, 20px);
}
.le-gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(8, 20, 110, 0.06);
    cursor: zoom-in;
    text-decoration: none;
    color: inherit;
    display: block;
    will-change: transform;
}
.le-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--le-ease-out), filter .35s;
    will-change: transform;
}
.le-gallery-tile:hover img { transform: scale(1.06); }
.le-gallery-tile figcaption {
    position: absolute;
    left: 16px; bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(8, 20, 110, 0.78);
    color: var(--le-white);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .45s var(--le-ease-out), opacity .45s var(--le-ease-out);
}
.le-gallery-tile figcaption span {
    color: var(--le-mint);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.12em;
}
.le-gallery-tile:hover figcaption { transform: translateY(0); opacity: 1; }

/* Mosaic positions — 12-col, dense pack
   Layout target:
   ┌────────┬──────┐
   │   1    │  2   │
   ├────┬───┤      │
   │ 3  │ 4 ├──────┤
   │    │   │  5   │
   ├────┴───┤      │
   │  WIDE  │      │
   ├────┬───┴──────┤
   │ 6  │  WIDE-2  │
   └────┴──────────┘                                   */
.le-gallery-tile--1     { grid-column: 1 / span 7;  grid-row: span 2; }
.le-gallery-tile--2     { grid-column: 8 / span 5;  grid-row: span 2; }
.le-gallery-tile--3     { grid-column: 1 / span 4;  grid-row: span 2; }
.le-gallery-tile--4     { grid-column: 5 / span 3;  grid-row: span 2; }
.le-gallery-tile--5     { grid-column: 8 / span 5;  grid-row: span 2; }
.le-gallery-tile--wide  { grid-column: 1 / span 7;  grid-row: span 2; }
.le-gallery-tile--6     { grid-column: 1 / span 4;  grid-row: span 2; }
.le-gallery-tile--wide-2{ grid-column: 5 / span 8;  grid-row: span 2; }

@media (max-width: 1020px) {
    .le-gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: clamp(120px, 22vw, 200px);
    }
    .le-gallery-tile--1     { grid-column: 1 / span 6; grid-row: span 2; }
    .le-gallery-tile--2     { grid-column: 1 / span 6; grid-row: span 2; }
    .le-gallery-tile--3     { grid-column: 1 / span 3; grid-row: span 2; }
    .le-gallery-tile--4     { grid-column: 4 / span 3; grid-row: span 2; }
    .le-gallery-tile--5     { grid-column: 1 / span 6; grid-row: span 2; }
    .le-gallery-tile--wide  { grid-column: 1 / span 6; grid-row: span 2; }
    .le-gallery-tile--6     { grid-column: 1 / span 3; grid-row: span 2; }
    .le-gallery-tile--wide-2{ grid-column: 4 / span 3; grid-row: span 2; }
}
@media (max-width: 600px) {
    .le-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: clamp(180px, 60vw, 320px);
    }
    .le-gallery-tile,
    .le-gallery-tile--1, .le-gallery-tile--2, .le-gallery-tile--3,
    .le-gallery-tile--4, .le-gallery-tile--5, .le-gallery-tile--6,
    .le-gallery-tile--wide, .le-gallery-tile--wide-2 {
        grid-column: 1 / -1;
        grid-row: span 1;
    }
    .le-gallery-tile figcaption { transform: translateY(0); opacity: 1; }
}

/* UIkit lightbox visual override: navy backdrop, mint accents */
.uk-lightbox { background: rgba(8, 20, 110, 0.96) !important; }
.uk-lightbox-toolbar { color: var(--le-white) !important; }
.uk-lightbox-button { color: var(--le-white) !important; }
.uk-lightbox-caption { color: var(--le-white) !important; font-family: var(--le-font); font-style: italic; opacity: 0.85; }

/* =============================================================
   SECTION 8 — Cómo funciona (steps numbered)
   ============================================================= */

.le-steps {
    margin-top: clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 7vw, 96px);
    position: relative;
}
.le-steps-trail {
    position: absolute;
    top: 32px; right: 0;
    width: 50%;
    max-width: 600px;
    pointer-events: none;
    z-index: 0;
}
.le-step {
    display: grid;
    grid-template-columns: minmax(80px, 130px) 1fr;
    align-items: baseline;
    gap: clamp(20px, 3vw, 40px);
    position: relative;
    z-index: 2;
}
.le-step-num {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--le-white);
    letter-spacing: -0.04em;
    line-height: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.le-step-num::after {
    content: '→';
    color: var(--le-mint);
    font-size: 0.6em;
    transform: translateY(-0.18em);
    transition: transform .4s var(--le-ease-out);
}
.le-step:hover .le-step-num::after { transform: translateY(-0.18em) translateX(8px); }
.le-step-content { padding-top: 16px; }
.le-step-content h3 {
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
}
.le-step-content p {
    font-size: 1.02rem;
    line-height: 1.65;
    opacity: 0.92;
    margin: 0;
    max-width: 56ch;
}

/* =============================================================
   SECTION 9 — Resultado (block quote + trail)
   ============================================================= */

.le-result {
    display: grid;
    grid-template-columns: minmax(120px, 220px) 1fr;
    gap: clamp(32px, 4vw, 60px);
    align-items: start;
}
.le-result-mark {
    position: relative;
    aspect-ratio: 1 / 1;
}
.le-result-mark .le-shape { width: 100%; height: 100%; }
.le-result-card {
    border-top: 1px solid var(--le-mint);
    border-bottom: 1px solid var(--le-mint);
    padding: clamp(40px, 5vw, 64px) 0;
}
.le-result-eyebrow {
    color: var(--le-mint);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
}
.le-result-text {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.012em;
}
.le-result-trail {
    margin-top: 48px;
    max-width: 480px;
}
@media (max-width: 760px) { .le-result { grid-template-columns: 1fr; } }

/* =============================================================
   SECTION 10 — Efecto multiplicador (mint, 3 cards)
   ============================================================= */

.le-multi {
    background: var(--le-mint);
    color: var(--le-navy);
}
.le-multi-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
}
.le-multi-title {
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
    max-width: 18ch;
}
.le-multi-title .le-italic { color: var(--le-navy); }
.le-multi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-top: 64px;
}
.le-multi-card {
    border-top: 2px solid var(--le-navy);
    padding-top: 16px;
}
.le-multi-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.005em;
}
.le-multi-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}
.le-multi-shapes {
    position: absolute;
    top: 6%;
    right: -3%;
    width: clamp(160px, 18vw, 280px);
    z-index: 1;
}
.le-multi-shapes-2 {
    position: absolute;
    top: 32%;
    right: 9%;
    width: clamp(120px, 14vw, 200px);
    z-index: 1;
    transform: rotate(180deg);
}
@media (max-width: 860px) {
    .le-multi-grid, .le-multi-cards { grid-template-columns: 1fr; }
}

/* =============================================================
   SECTION 11 — Por qué Eroski (collage with stats)
   ============================================================= */

.le-eroski {
    position: relative;
    overflow: hidden;
}
.le-eroski-imgs {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.62;
    margin-bottom: clamp(40px, 6vw, 80px);
}
.le-eroski-img {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 1s var(--le-ease-out);
    will-change: transform;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.le-eroski-img img { width: 100%; height: 100%; object-fit: cover; }
.le-eroski-img--1 {
    top: 0; left: 0;
    width: 30%; aspect-ratio: 4 / 3;
}
.le-eroski-img--2 {
    top: 0; right: 0;
    width: 32%; aspect-ratio: 5 / 3;
}
.le-eroski-img--3 {
    bottom: 0; right: 4%;
    width: 38%; aspect-ratio: 5 / 3;
}
.le-eroski-stat {
    font-size: clamp(2.6rem, 9vw, 8rem);
    font-weight: 900;
    color: var(--le-navy);
    line-height: 0.9;
    letter-spacing: -0.045em;
    background: var(--le-mint);
    padding: 40px clamp(28px, 4vw, 60px);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.le-eroski-stat-num {
    font-size: clamp(3.6rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
}
.le-eroski-stat-label {
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.le-eroski-grid {
    margin-top: clamp(40px, 6vw, 80px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 48px);
}
.le-eroski-cell {
    border-top: 1px solid rgba(26,255,213,0.5);
    padding-top: 16px;
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.92;
}
.le-eroski-cell strong { color: var(--le-mint); display: block; margin-bottom: 8px; font-weight: 700; }
@media (max-width: 760px) {
    .le-eroski-imgs { aspect-ratio: 1 / 1.2; }
    .le-eroski-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   SECTION 12 — Propuesta (exclusividad + regla)
   ============================================================= */

.le-prop {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.le-prop-title {
    font-size: clamp(2.6rem, 7.5vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.045em;
    max-width: 14ch;
}
.le-prop-title .le-mint {
    font-family: var(--le-serif);
    font-style: italic;
    font-weight: 400;
}
.le-prop-sub {
    margin-top: 32px;
    font-family: var(--le-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    color: var(--le-mint);
}
.le-prop-trail {
    display: flex;
    align-items: center;
    justify-content: center;
}
.le-prop-rule {
    margin-top: clamp(40px, 6vw, 80px);
    background: var(--le-mint);
    color: var(--le-navy);
    padding: clamp(36px, 5vw, 64px) clamp(32px, 4vw, 56px);
    border-radius: 0;
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}
.le-prop-rule-mark .le-shape { width: 100%; }
.le-prop-rule-text {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    line-height: 1.45;
    border-top: 1px solid var(--le-navy);
    border-bottom: 1px solid var(--le-navy);
    padding: 24px 0;
    margin: 0;
    font-weight: 500;
}
@media (max-width: 860px) {
    .le-prop, .le-prop-rule { grid-template-columns: 1fr; }
}

/* =============================================================
   SECTION 13 — Beneficios (4 cards numeradas + Roadmap + Compromiso)
   ============================================================= */

.le-benefits-title {
    margin-bottom: clamp(40px, 6vw, 80px);
    max-width: 24ch;
}
.le-benefits-title .le-italic { color: var(--le-mint); }
.le-benefits-lead {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: var(--le-mint);
    line-height: 1.3;
    font-weight: 500;
    margin: 0 0 clamp(40px, 6vw, 64px);
    max-width: 50ch;
}
.le-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 56px);
}
.le-benefit {
    border-top: 1px solid var(--le-mint);
    padding-top: 20px;
    position: relative;
}
.le-benefit-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--le-mint);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
}
.le-benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}
@media (max-width: 720px) { .le-benefits-grid { grid-template-columns: 1fr; } }

/* Roadmap */
.le-roadmap {
    margin-top: clamp(80px, 10vw, 140px);
}
.le-roadmap-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(40px, 6vw, 80px);
}
.le-roadmap-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0;
}
.le-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    position: relative;
}
.le-roadmap-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 1px;
    background: rgba(26, 255, 213, 0.4);
}
.le-roadmap-step {
    padding-top: 28px;
    position: relative;
}
.le-roadmap-step::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 0;
    height: 1px;
    background: var(--le-mint);
    transition: width 1.2s var(--le-ease-out);
}
.le-roadmap-step.is-visible::before { width: 100%; }
.le-roadmap-num {
    font-family: var(--le-font);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 800;
    color: var(--le-mint);
    letter-spacing: -0.05em;
    line-height: 0.9;
    position: absolute;
    top: -12px;
    left: 0;
    z-index: 0;
    opacity: 0.95;
}
.le-roadmap-year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--le-mint);
    background: rgba(26, 255, 213, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    margin-left: 60px;
}
.le-roadmap-period {
    font-size: clamp(1.05rem, 1.5vw, 1.4rem);
    font-weight: 700;
    color: var(--le-mint);
    letter-spacing: -0.012em;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    padding-left: 60px;
}
.le-roadmap-text {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    opacity: 0.88;
    position: relative;
    z-index: 1;
}
@media (max-width: 720px) {
    .le-roadmap-grid { grid-template-columns: 1fr; }
    .le-roadmap-num { position: static; }
    .le-roadmap-year, .le-roadmap-period { padding-left: 0; margin-left: 0; }
}

/* Compromiso (Tramuntana commitment) */
.le-commitment {
    position: relative;
    margin-top: clamp(80px, 10vw, 140px);
    padding: clamp(40px, 6vw, 80px);
    background: linear-gradient(135deg, #112191 0%, var(--le-navy) 100%);
    border-radius: 8px;
    overflow: hidden;
}
.le-commitment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/img/landscape/lighthouse.jpg') center/cover;
    opacity: 0.30;
    z-index: 0;
}
.le-commitment::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,20,110,0.85) 0%, rgba(8,20,110,0.4) 80%);
    z-index: 1;
}
.le-commitment-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.le-commitment-title {
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
}
.le-commitment-title .le-mint {
    font-family: var(--le-serif);
    font-style: italic;
    font-weight: 400;
    display: block;
}
.le-commitment-percent {
    font-size: clamp(7rem, 16vw, 14rem);
    font-weight: 900;
    color: var(--le-mint);
    line-height: 0.85;
    letter-spacing: -0.06em;
    margin: 24px 0;
    font-variant-numeric: tabular-nums;
}
.le-commitment-text {
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.92;
    margin: 0;
}
.le-commitment-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}
.le-commitment-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.94;
}
.le-commitment-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 14px; height: 2px;
    background: var(--le-mint);
}
.le-commitment-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 26px;
    border: 1px solid var(--le-mint);
    border-radius: 999px;
    color: var(--le-mint);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background .25s, color .25s, transform .35s var(--le-ease-out);
}
.le-commitment-cta:hover {
    background: var(--le-mint);
    color: var(--le-navy);
    transform: translateY(-2px);
}
@media (max-width: 860px) { .le-commitment-content { grid-template-columns: 1fr; } }

/* =============================================================
   SECTION 14 — CTA final ¿Empezamos?
   ============================================================= */

.le-cta {
    background: radial-gradient(circle at 50% 50%, #112191 0%, var(--le-navy-deep) 80%);
    text-align: center;
    align-items: center;
    justify-content: center;
}
.le-cta-logo {
    width: clamp(220px, 26vw, 380px);
    margin: 0 auto 64px;
    opacity: 0.9;
}
.le-cta-title {
    font-family: var(--le-serif);
    font-style: italic;
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
    color: var(--le-white);
}
.le-cta-title .le-cta-punct { color: var(--le-mint); }
.le-cta-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: var(--le-white);
    opacity: 0.78;
    max-width: 56ch;
    margin: 0 auto 56px;
}
.le-cta-sub .le-mint { color: var(--le-mint); font-weight: 600; }
.le-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.le-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.005em;
    transition: transform .35s var(--le-ease-out), box-shadow .35s, background .25s, color .25s, border-color .25s;
    will-change: transform;
    cursor: pointer;
    border: 1px solid transparent;
}
.le-btn--primary {
    background: var(--le-mint);
    color: var(--le-navy);
    box-shadow: 0 14px 40px rgba(26, 255, 213, 0.25);
}
.le-btn--primary:hover {
    box-shadow: 0 22px 60px rgba(26, 255, 213, 0.4);
    background: var(--le-mint-soft);
    transform: translateY(-2px);
}
.le-btn--ghost {
    background: transparent;
    color: var(--le-white);
    border-color: rgba(255, 255, 255, 0.35);
}
.le-btn--ghost:hover {
    border-color: var(--le-white);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}
.le-btn svg {
    transition: transform .35s var(--le-ease-out);
}
.le-btn:hover svg { transform: translateX(6px); }

.le-cta-foot {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--le-white);
    opacity: 0.5;
    text-transform: uppercase;
}
.le-cta-foot strong { color: var(--le-mint); font-weight: 700; }

/* =============================================================
   Reduced motion & misc
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
    .le-reveal,
    .le-reveal-words > span,
    .le-reveal-chars > span,
    .le-reveal-mask,
    .le-reveal-img > img,
    .le-reveal-img > div {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
    }
    .le-shape-anim-spin,
    .le-shape-anim-spin-r,
    .le-shape-anim-float,
    .le-shape-anim-pulse,
    .le-hero-blob,
    .le-shape-trail.is-visible .le-shape-cell,
    .le-hero-scroll::after { animation: none !important; }
    .le-shape-mp { transition: none !important; }
}

/* Tweak: accessible focus */
:focus-visible {
    outline: 2px dashed var(--le-mint);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Print: simplified, brand colors only */
@media print {
    .le-top, .le-dots, .le-page-counter, .le-cursor, .le-progress, .le-hero-scroll { display: none !important; }
    .le-section { page-break-inside: avoid; min-height: auto; padding: 40px; }
    .le-section--mint { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
