/* =========================================================
   INSTAQUIM · Hub Lavandería Autoservicio
   Design system — HTML/CSS/JS vanilla, sense build
   Art direction: editorial industrial · Vic 1990
   Paleta: Pantone 361 C + 382 C · Mix Helvetica + Instrument Serif + JetBrains Mono
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Tokens · refactor editorial monocromàtic-verd ---------- */
:root {
    /* Paleta — logotip oficial .ai Pantone 361 C → 382 C */
    --bg-primary:        #FFFFFF;
    --bg-surface:        #F6F7F4;     /* lleugerament més verd-tint */
    --bg-elevated:       #FAFAF8;
    --bg-inverse:        #0A0A0A;
    --text-primary:      #0A0A0A;
    --text-secondary:    #545B54;     /* gris-verd més subtil */
    --text-muted:        #8F968F;
    --brand-green-dark:  #43B02A;     /* Pantone 361 C */
    --brand-green-light: #C4D600;     /* Pantone 382 C */
    --brand-green-soft:  rgba(67,176,42,0.08);   /* fons suau per cards i icones */
    --brand-green-edge:  rgba(67,176,42,0.22);   /* borde subtil pel hover */
    --brand-gradient:    linear-gradient(90deg, #43B02A 0%, #C4D600 100%);
    --brand-gradient-rule: linear-gradient(to right, #43B02A 0%, #C4D600 50%, transparent 100%);
    --divider:           #E5E5E5;
    --divider-strong:    #C8C8C8;
    --error:             #C23A3A;
    --warning:           #D68A1A;

    /* Tipografia */
    --font: "Helvetica Neue", "Helvetica", "Arial", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Menlo", monospace;

    /* Layout — respiració editorial augmentada */
    --max-width: 1280px;
    --max-article: 760px;
    --gutter-x: 32px;
    --section-y: 160px;           /* abans 120 · +33% */
    --section-y-mobile: 88px;

    /* Timings */
    --t-fast: 120ms;
    --t-base: 200ms;
    --t-slow: 400ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.625;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--brand-green-dark); outline-offset: 2px; border-radius: 2px; }

/* ---------- Scroll progress (ús legítim del gradient) ---------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 1000;
    height: 2px; width: 0%;
    background: var(--brand-gradient);
    transition: width 80ms linear;
}

/* ---------- Container & grid utils ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter-x);
}
.container--article { max-width: var(--max-article); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split { grid-template-columns: 1fr 1.6fr; gap: 64px; }

/* ---------- Tipografia · escala editorial reforçada ---------- */
.eyebrow {
    font-size: 12px; line-height: 1.5;
    font-weight: 500; letter-spacing: 0.22em;    /* abans 0.16em · més tracking editorial */
    text-transform: uppercase; color: var(--text-muted);
    margin: 0 0 20px;
    position: relative;
}
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -0.02em; font-weight: 700; }
.h1 { font-size: clamp(48px, 6.5vw, 80px); line-height: 1.04; letter-spacing: -0.03em; }
.h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 28px; }
.h3 { font-size: 22px; line-height: 1.3; margin-bottom: 8px; }
.h4 { font-size: 18px; line-height: 1.35; margin-bottom: 6px; }

.lead { font-size: 19px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 36px; max-width: 64ch; }
.body { font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.data { font-size: clamp(56px, 8vw, 112px); line-height: 0.95; font-weight: 900; letter-spacing: -0.035em; }
.caption { font-size: 12px; line-height: 1.5; letter-spacing: 0.06em; color: var(--text-muted); }

/* Editorial rule — separador amb gradient verd→lima */
.section-rule {
    height: 1px; border: 0; margin: 0;
    background: var(--brand-gradient-rule);
    opacity: 0.9;
}

/* ---------- Editorial type system · Helvetica monumental ---------- */
.display {
    font-family: var(--font);
    font-weight: 900;
    font-size: clamp(56px, 9vw, 128px);
    line-height: 0.95;
    letter-spacing: -0.042em;
}
.display em {
    font-style: normal;
    color: var(--brand-green-dark);
}
.display--md {
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}
.display--sm {
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.mono {
    font-family: var(--font-mono);
    font-feature-settings: "tnum" 1;
    letter-spacing: 0;
}
.mono--sm { font-size: 12px; letter-spacing: 0.02em; }
.mono--xs { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Numeric section marker — 01 · Label */
.num-marker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.num-marker::before {
    content: "";
    display: inline-block;
    width: 20px; height: 1px;
    background: var(--brand-green-dark);
}
.num-marker--light { color: rgba(255,255,255,0.6); }
.num-marker--light::before { background: var(--brand-green); }

/* Pull quote discret · en blanc amb accent verd */
.pullquote {
    position: relative;
    padding: 80px 0;
    margin: 72px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}
.pullquote__text {
    font-family: var(--font);
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 28ch;
    margin: 0 0 32px;
}
.pullquote__text em { color: var(--brand-green-dark); font-style: normal; }
.pullquote__attr {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.pullquote__attr::before {
    content: "—";
    margin-right: 10px;
    color: var(--brand-green-dark);
}

/* Technical metadata row (home hero, product specs) */
.meta-row {
    display: flex; flex-wrap: wrap; gap: 48px;
    padding-top: 24px; margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.meta-row--dark { border-top-color: var(--divider); }
.meta-row__item { display: flex; flex-direction: column; gap: 4px; }
.meta-row__label {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.meta-row--dark .meta-row__label { color: var(--text-muted); }
.meta-row__value {
    font-family: var(--font-mono);
    font-size: 14px; font-weight: 500;
    color: #FFFFFF;
}
.meta-row--dark .meta-row__value { color: var(--text-primary); }

/* Article body */
.article-body { font-size: 17px; line-height: 1.7; color: var(--text-primary); }
.article-body > * + * { margin-top: 1em; }
.article-body h2 { margin-top: 2em; font-size: 28px; line-height: 1.2; }
.article-body h3 { margin-top: 1.6em; font-size: 20px; line-height: 1.3; }
.article-body p { margin: 0 0 1em; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 0.4em; }
.article-body strong { font-weight: 700; }
.article-body a:not(.btn):not(.related__card):not(.cluster-card):not(.catalog-card):not(.meganav__box-link) {
    color: var(--brand-green-dark); border-bottom: 1px solid currentColor;
}
.article-body blockquote {
    border-left: 3px solid var(--brand-green-dark);
    padding: 8px 20px; margin: 24px 0;
    background: var(--bg-surface);
    font-style: italic; color: var(--text-secondary);
}

/* ---------- Buttons · angulós, editorial ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 52px; padding: 0 28px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px; border: 1px solid transparent;
    transition: background var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand-green-dark); color: #FFFFFF; }
.btn--primary:hover { background: #369024; }
.btn--ghost { color: var(--text-primary); border-color: var(--text-primary); }
.btn--ghost:hover { background: var(--text-primary); color: #FFFFFF; }
.btn--ghost-light { color: #FFFFFF; border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: #FFFFFF; color: var(--text-primary); }
.btn--sm { height: 44px; padding: 0 20px; font-size: 12px; }
.btn--lg { height: 60px; padding: 0 36px; font-size: 14px; }

/* ---------- Pills / badges ---------- */
.pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 0;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase;
}
.pill--ecolabel { background: var(--brand-green-dark); color: #FFFFFF; }
.pill--tag { background: var(--bg-surface); color: var(--text-primary); }
.pill--alt { background: var(--brand-green-light); color: var(--text-primary); }

/* ---------- Header · minimalista Instaquim ---------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: #FFFFFF;
    border-bottom: 1px solid var(--divider);
}
.header::after {
    content: ""; display: block;
    height: 2px;
    background: linear-gradient(to right, #43B02A 0%, #C4D600 45%, transparent 100%);
}

/* utility row */
.header__utility {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #FAFAFA;
    font-size: 12px;
    color: var(--text-muted);
}
.header__utility-inner {
    display: flex; justify-content: space-between; align-items: center;
    min-height: 34px; gap: 16px;
}
.header__utility-left,
.header__utility-right {
    display: flex; align-items: center; gap: 16px;
}
.header__utility-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-secondary);
    transition: color var(--t-fast);
    letter-spacing: 0.01em;
}
.header__utility-link:hover { color: var(--brand-green-dark); }
.header__utility-link svg { opacity: 0.5; }
.header__utility-link:hover svg { opacity: 1; color: var(--brand-green-dark); }
.header__utility-sep {
    display: inline-block; width: 1px; height: 12px;
    background: rgba(0,0,0,0.12);
}
.header__utility-tag {
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 10.5px;
    font-weight: 600;
}

/* language switcher dropdown */
.header__lang { position: relative; }
.header__lang-current {
    display: inline-flex; align-items: center; gap: 5px;
    background: transparent; border: 0;
    padding: 4px 2px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color var(--t-fast);
}
.header__lang-current:hover,
.header__lang-current[aria-expanded="true"] { color: var(--brand-green-dark); }
.header__lang-current svg { transition: transform var(--t-fast); }
.header__lang-current[aria-expanded="true"] svg { transform: rotate(180deg); }
.header__lang-menu {
    position: absolute; top: calc(100% + 6px); right: 0;
    min-width: 180px;
    background: #FFFFFF;
    border: 1px solid var(--divider);
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
    padding: 6px;
    display: none;
    list-style: none; margin: 0;
    z-index: 200;
}
.header__lang[data-open="true"] .header__lang-menu { display: block; }
.header__lang-menu button {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 8px 10px;
    background: transparent; border: 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 13px; font-weight: 500;
    text-align: left; cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
}
.header__lang-menu button span {
    display: inline-block; min-width: 24px;
    font-size: 11px; font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}
.header__lang-menu button:hover { background: var(--brand-green-soft); color: var(--brand-green-dark); }
.header__lang-menu button:hover span { color: var(--brand-green-dark); }
.header__lang-menu button.is-active { color: var(--brand-green-dark); }
.header__lang-menu button.is-active span { color: var(--brand-green-dark); }

/* main row */
.header__main {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px; gap: 32px;
    flex-wrap: nowrap;
}
.header__logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.header__logo img { height: 28px; width: auto; display: block; }
.header__nav {
    display: flex; align-items: center; gap: 36px;
    font-size: 14px; font-weight: 500;
}
.header__nav a {
    position: relative;
    color: var(--text-secondary);
    transition: color var(--t-fast);
    white-space: nowrap;
    padding: 24px 0;
}
.header__nav a::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -1px;
    height: 2px; background: var(--brand-green);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t-fast);
}
.header__nav a:hover,
.header__nav a[aria-current="page"] { color: var(--brand-green-dark); }
.header__nav a:hover::after,
.header__nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__toggle {
    display: none; width: 42px; height: 42px;
    align-items: center; justify-content: center;
    background: transparent; border: 0;
    color: var(--text-primary); cursor: pointer;
}

@media (max-width: 1200px) {
    .header__nav { gap: 24px; }
    .header__utility-tag { display: none; }
}
@media (max-width: 980px) {
    .header__utility-email { display: none; }
    .header__nav { gap: 18px; font-size: 13px; }
}
@media (max-width: 900px) {
    .header__nav { display: none; }
    .header__toggle { display: inline-flex; }
    .header__utility-email { display: none; }
    .header__utility-tag { display: none; }
}
@media (max-width: 560px) {
    .header__utility-left .header__utility-sep { display: none; }
    .header__utility-email { display: none; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted);
    margin-bottom: 24px; text-transform: uppercase;
}
.breadcrumb a { color: var(--text-secondary); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb__sep { color: var(--text-muted); }

/* ---------- Hero poster · industrial impactant (home) ---------- */
.hero-poster {
    position: relative;
    min-height: 88vh;
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}
.hero-poster__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(25%) contrast(1.05) brightness(0.72);
    z-index: 0;
}
.hero-poster__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(10,20,15,0.78) 0%, rgba(10,10,10,0.35) 50%, rgba(10,10,10,0.55) 100%),
        linear-gradient(to top, rgba(10,10,10,0.62) 0%, transparent 55%);
    z-index: 1;
}
.hero-poster__content {
    position: relative; z-index: 2;
    padding-block: 120px 96px;
    max-width: 1100px;
}
.hero-poster__tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
}
.hero-poster__tag::before {
    content: "";
    width: 36px; height: 2px;
    background: var(--brand-green-light);
}
.hero-poster__title {
    font-family: var(--font);
    font-weight: 900;
    font-size: clamp(56px, 9.5vw, 148px);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: #FFFFFF;
    margin: 0 0 36px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-poster__title em {
    font-style: normal;
    color: var(--brand-green-light);
    display: inline-block;
    position: relative;
}
.hero-poster__lede {
    font-size: 19px;
    line-height: 1.55;
    max-width: 54ch;
    color: rgba(255,255,255,0.92);
    margin: 0 0 48px;
}
.hero-poster__actions {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 32px;
}
.hero-poster__phone {
    display: inline-flex; align-items: center; gap: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    transition: color var(--t-fast), border-color var(--t-fast);
}
.hero-poster__phone svg { color: var(--brand-green-light); }
.hero-poster__phone:hover {
    color: var(--brand-green-light);
    border-color: var(--brand-green-light);
}

/* Tape inferior · dades tècniques en monospace */
.hero-poster__tape {
    position: relative; z-index: 2;
    background: var(--brand-green-dark);
    color: #FFFFFF;
    padding-block: 18px;
    border-top: 2px solid var(--brand-green-light);
}
.hero-poster__tape-inner {
    display: flex; flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-poster__tape-inner span {
    display: inline-flex; align-items: baseline; gap: 8px;
    color: rgba(255,255,255,0.82);
}
.hero-poster__tape-inner strong {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 15px;
    letter-spacing: -0.005em;
}

@media (max-width: 900px) {
    .hero-poster { min-height: 78vh; }
    .hero-poster__content { padding-block: 96px 72px; }
    .hero-poster__tape-inner { justify-content: flex-start; gap: 28px; }
    .hero-poster__tape-inner span:nth-child(n+4) { display: none; }
}
@media (max-width: 600px) {
    .hero-poster__title { font-size: clamp(44px, 13vw, 72px); }
    .hero-poster__tape-inner span:nth-child(n+3) { display: none; }
}

/* ---------- Hero v2 · industrial B2B sobri (home) · LEGACY ---------- */
.hero-v2 {
    background: #FFFFFF;
    border-bottom: 1px solid var(--divider);
    padding-block: 96px 112px;
    position: relative;
}
.hero-v2::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(to right, #43B02A 0%, #C4D600 40%, transparent 100%);
}
.hero-v2__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-v2__text { max-width: 580px; }
.hero-v2__tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 36px;
}
.hero-v2__tag::before {
    content: "";
    width: 20px; height: 1px;
    background: var(--brand-green-dark);
}
.hero-v2__title {
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 28px;
}
.hero-v2__lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 40px;
    max-width: 52ch;
}
.hero-v2__actions {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 28px;
}
.hero-v2__phone {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: color var(--t-fast);
}
.hero-v2__phone svg { color: var(--brand-green-dark); }
.hero-v2__phone:hover { color: var(--brand-green-dark); }
.hero-v2__media {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.hero-v2__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1000px) {
    .hero-v2__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-v2__media { aspect-ratio: 16 / 10; }
}
@media (max-width: 700px) {
    .hero-v2 { padding-block: 64px 80px; }
    .hero-v2__title { font-size: clamp(32px, 8vw, 44px); }
}

/* ---------- Hero editorial (home) · split asimètric · LEGACY ---------- */
.hero-editorial {
    position: relative;
    background: #0A0A0A;
    color: #FFFFFF;
    padding-block: 128px 112px;
    overflow: hidden;
    isolation: isolate;
}
.hero-editorial::before {
    content: "";
    position: absolute; inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(to right, #43B02A 0%, #C4D600 45%, transparent 100%);
    z-index: 4;
}
.hero-editorial__inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 80px;
    align-items: end;
    position: relative;
    z-index: 2;
}
.hero-editorial__text { position: relative; }
.hero-editorial__title {
    color: #FFFFFF;
    margin: 32px 0 40px;
    font-size: clamp(56px, 8.5vw, 128px);
    line-height: 0.95;
    font-weight: 900;
    font-family: var(--font);
    letter-spacing: -0.045em;
}
.hero-editorial__title em {
    font-style: normal;
    color: var(--brand-green-light);
    font-weight: 900;
}
.hero-editorial__lede {
    font-size: 17px;
    line-height: 1.65;
    max-width: 46ch;
    color: rgba(255,255,255,0.75);
    margin: 0 0 40px;
}
.hero-editorial__actions {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 8px;
}
.hero-editorial__inline {
    display: inline-flex; align-items: center; gap: 12px;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.02em;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    transition: border-color var(--t-fast), gap var(--t-fast);
}
.hero-editorial__inline:hover {
    border-color: var(--brand-green-light);
    gap: 18px;
}
.hero-editorial__media {
    position: relative;
}
.hero-editorial__fig {
    margin: 0;
    position: relative;
}
.hero-editorial__fig img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.02);
}
.hero-editorial__fig figcaption {
    display: flex; align-items: baseline; gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.14);
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.62);
}
.hero-editorial__fig figcaption .mono {
    color: var(--brand-green-light);
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .hero-editorial__inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-editorial__media { order: -1; max-width: 420px; }
    .hero-editorial__fig img { aspect-ratio: 16 / 10; }
    .hero-editorial .vertical-label { display: none; }
}
@media (max-width: 700px) {
    .hero-editorial { padding-block: 88px 72px; }
    .hero-editorial__title { margin-block: 24px 32px; }
}

/* ---------- Hero (home) legacy · editorial amb foto protagonista ---------- */
.hero {
    position: relative;
    min-height: 680px;
    background: var(--bg-inverse); color: #FFFFFF; overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(10%) brightness(0.92);
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(125deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.18) 58%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.35) 100%);
}
.hero__content {
    position: relative; z-index: 2;
    padding-block: 128px 120px;
    max-width: 820px;
}
.hero__pill {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 0;
    margin-bottom: 32px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
    text-transform: uppercase;
    background: transparent; color: rgba(255,255,255,0.92);
    border: 0;
}
.hero__pill::before {
    content: ""; display: inline-block;
    width: 32px; height: 2px;
    background: linear-gradient(to right, #43B02A, #C4D600);
}
.hero__title {
    color: #FFFFFF; margin: 0 0 28px;
    font-size: clamp(48px, 7vw, 88px); line-height: 1.02; font-weight: 700; letter-spacing: -0.035em;
}
.hero__title-lead { color: rgba(255,255,255,0.88); display: block; }
.hero__lead { max-width: 60ch; color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.55; margin: 0 0 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__badges {
    display: flex; flex-wrap: wrap; gap: 24px;
    font-size: 14px; color: rgba(255,255,255,0.88);
}
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { color: #FFFFFF; flex-shrink: 0; }

/* Page hero (article interior) · poster editorial condensat */
.page-hero {
    position: relative; overflow: hidden;
    color: #FFFFFF;
    padding-block: 128px 112px;
    background: #0A0A0A;
    min-height: 420px;
    display: flex; align-items: center;
    isolation: isolate;
}
.page-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(20%) contrast(1.05) brightness(0.7);
    z-index: 0;
}
/* <img> variant for SEO — same visual treatment */
img.page-hero__bg {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.page-hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(10,20,15,0.78) 0%, rgba(10,10,10,0.35) 50%, rgba(10,10,10,0.55) 100%),
        linear-gradient(to top, rgba(10,10,10,0.48) 0%, transparent 55%);
    z-index: 1;
}
.page-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(to right, #43B02A 0%, #C4D600 45%, transparent 100%);
    z-index: 3;
}
.page-hero__content { position: relative; z-index: 2; max-width: 960px; width: 100%; }
.page-hero .breadcrumb {
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a:hover { color: var(--brand-green-light); }
.page-hero .breadcrumb__sep { color: rgba(255,255,255,0.35); }

/* Tag eyebrow · com al hero-poster, línia verda curta + mono uppercase */
.page-hero__pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0; margin-bottom: 32px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 0; border-radius: 0;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase;
}
.page-hero__pill::before {
    content: ""; display: inline-block;
    width: 32px; height: 2px;
    background: var(--brand-green-light);
}
.page-hero__title {
    color: #FFFFFF;
    font-family: var(--font);
    font-size: clamp(40px, 6.5vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 900;
    max-width: 24ch; margin: 0 0 28px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.22);
}
.page-hero__subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 19px; line-height: 1.55;
    max-width: 60ch; margin: 0 0 24px;
    font-weight: 400;
}
.page-hero__read {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: var(--font-mono);
    font-size: 11px; color: rgba(255,255,255,0.82);
    letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---------- Stats editorial · jerarquia asimètrica ---------- */
.stats-editorial {
    background: #FFFFFF;
    padding-block: 144px 128px;
    border-bottom: 1px solid var(--divider);
}
.stats-editorial__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}
.stats-editorial__head {
    grid-column: 1 / -1;
    margin-bottom: 48px;
    max-width: 680px;
}
.stats-editorial__head .display em { font-style: italic; }
.stats-editorial__head .num-marker { margin-bottom: 28px; }
.stats-editorial__hero {
    display: flex; flex-direction: column;
    padding-top: 24px;
    border-top: 1px solid var(--text-primary);
}
.stats-editorial__hero-label {
    color: var(--text-muted);
    margin-bottom: 16px;
}
.stats-editorial__hero-num {
    font-family: var(--font);
    font-size: clamp(100px, 15vw, 220px);
    line-height: 0.86;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 900;
}
.stats-editorial__hero-desc {
    max-width: 36ch;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-secondary);
}
.stats-editorial__list {
    display: flex; flex-direction: column;
    margin: 0; padding: 0;
    border-top: 1px solid var(--divider);
}
.stats-editorial__row {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 24px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--divider);
    transition: padding-left var(--t-base);
}
.stats-editorial__row:hover { padding-left: 12px; }
.stats-editorial__row dt {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    display: inline-flex; align-items: baseline; gap: 12px;
    margin: 0;
}
.stats-editorial__row dt .mono { color: var(--brand-green-dark); }
.stats-editorial__row dd {
    margin: 0;
    font-family: var(--font-mono);
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}
.stats-editorial__note {
    grid-column: 1 / -1;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    padding-left: 32px;
}

@media (max-width: 1000px) {
    .stats-editorial__inner { grid-template-columns: 1fr; gap: 64px; }
}
@media (max-width: 700px) {
    .stats-editorial { padding-block: 80px; }
    .stats-editorial__hero-num { font-size: clamp(80px, 24vw, 140px); }
}

/* ---------- Stats strip · xifres grans editorials ---------- */
.stats {
    background: var(--bg-elevated);
    border-block: 1px solid var(--divider);
    padding-block: 96px;
}
.stats__head { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.stats__head h2 {
    font-size: 32px; font-weight: 700; margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.stats__head p { color: var(--text-secondary); font-size: 16px; margin: 0; line-height: 1.55; }
.stats__grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.stat {
    text-align: left;
    padding: 8px 28px 8px;
    border-left: 1px solid var(--divider);
    transition: background var(--t-base);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    color: var(--brand-green-dark);
    margin-bottom: 20px;
    background: transparent;
    border-radius: 0;
}
.stat__icon svg { width: 22px; height: 22px; }
.stat__num {
    display: block;
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1; margin-bottom: 12px; letter-spacing: -0.035em;
    white-space: nowrap;
}
.stat__label { display: block; font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; letter-spacing: 0.01em; }
.stat__desc { display: block; font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.stat__todo { display: block; margin-top: 6px; font-size: 10px; color: var(--warning); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Section editorial · numeració i label vertical ---------- */
.section-editorial {
    position: relative;
    padding-block: 144px;
}
.section-editorial__head {
    max-width: 780px;
    margin-bottom: 80px;
}
.section-editorial__head .num-marker { margin-bottom: 32px; }
.section-editorial__head .display { margin: 0; }

.intro-editorial {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 96px;
    align-items: start;
}
.intro-editorial__body .lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-primary);
    max-width: 44ch;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.005em;
}
.intro-editorial__body .lead strong { font-weight: 600; color: var(--brand-green-dark); }
.intro-editorial__body .checks {
    display: flex; flex-direction: column; gap: 14px;
    padding-top: 28px; margin-top: 0;
    border-top: 1px solid var(--divider);
}
.intro-editorial__body .checks li {
    font-size: 14px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    letter-spacing: 0;
    padding-left: 0;
}
.intro-editorial__body .checks li svg { color: var(--brand-green-dark); }

.intro-editorial__sidenote {
    padding: 40px 36px;
    background: #FAFAF8;
    border-top: 2px solid var(--text-primary);
    position: relative;
}
.intro-editorial__sidenote > .mono { color: var(--text-muted); margin-bottom: 20px; display: block; }
.intro-editorial__sidenote .display { margin: 0 0 32px; }
.typologies {
    display: flex; flex-direction: column;
    margin: 0; padding: 0;
}
.typologies > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px solid var(--divider);
}
.typologies > div:first-child { border-top: 1px solid var(--text-primary); }
.typologies dt {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}
.typologies dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 1000px) {
    .intro-editorial { grid-template-columns: 1fr; gap: 48px; }
    .section-editorial { padding-block: 96px; }
    .section-editorial .vertical-label { display: none; }
}

/* ---------- Manifest · pullquote discret (no bloc verd monumental) ---------- */
.manifest {
    background: #FFFFFF;
    color: var(--text-primary);
    padding-block: 120px;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}
.manifest .num-marker {
    margin-bottom: 36px;
    color: var(--text-muted);
}
.manifest__text {
    margin: 0 0 40px;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.028em;
    max-width: 26ch;
}
.manifest__text em {
    font-style: normal;
    color: var(--brand-green-dark);
}
.manifest__attr {
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--divider);
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .manifest { padding-block: 80px; }
}

/* ---------- Sections · respiració editorial augmentada ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section + .section { border-top: 1px solid var(--divider); }
.section > .container > .eyebrow::before {
    content: "";
    display: block;
    width: 48px; height: 2px;
    background: var(--brand-gradient);
    margin-bottom: 20px;
}
.section--surface { background: var(--bg-surface); }
.section--inverse { background: var(--bg-inverse); color: #FFFFFF; }
.section--inverse .lead,
.section--inverse .caption,
.section--inverse p { color: rgba(255,255,255,0.75); }
.section--inverse .eyebrow { color: rgba(255,255,255,0.55); }

.section__head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; margin-bottom: 64px; }
.section__head--stack { grid-template-columns: 1fr; gap: 12px; margin-bottom: 48px; }

/* ---------- Intro "¿Qué es una lavandería autoservicio?" ---------- */
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.intro__pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0;
    color: var(--brand-green-dark);
    font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
    text-transform: uppercase; border-radius: 0;
    background: transparent; border: 0;
    margin-bottom: 24px;
}
.intro__pill::before {
    content: ""; display: inline-block;
    width: 28px; height: 2px;
    background: linear-gradient(to right, #43B02A, #C4D600);
}
.intro h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.12; margin: 0 0 24px; letter-spacing: -0.02em; }
.intro__text { color: var(--text-secondary); font-size: 17px; line-height: 1.7; margin: 0 0 20px; }
.intro__text strong { color: var(--text-primary); font-weight: 600; }
.checks { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.checks li {
    list-style: none; display: flex; align-items: center; gap: 12px;
    color: var(--text-primary);
}
.checks li svg { color: var(--brand-green-dark); flex-shrink: 0; }
.types-card {
    background: #FAFAFA;
    border: 1px solid var(--divider);
    border-radius: 0;
    padding: 36px;
}
.types-card h3 { font-size: 20px; margin: 0 0 20px; font-weight: 700; letter-spacing: -0.005em; }
.types-card__list { display: flex; flex-direction: column; gap: 10px; }
.type-item {
    background: #FFFFFF;
    border: 1px solid var(--divider);
    border-radius: 0;
    padding: 18px 20px;
    transition: border-color var(--t-fast);
}
.type-item:hover { border-color: var(--brand-green-edge); }
.type-item h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.type-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
    .stats__grid { grid-template-columns: 1fr; }
}

/* ---------- Cluster grid · editorial disciplinat (monocromàtic verd) ---------- */
.cluster-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--divider);
    border-left: 1px solid var(--divider);
    counter-reset: cluster;
}
.cluster-card {
    background: var(--bg-primary);
    border-right: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 40px 32px 32px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
    transition: background var(--t-base);
    counter-increment: cluster;
    min-height: 260px;
}
.cluster-card::before {
    content: counter(cluster, decimal-leading-zero) " / 10";
    position: absolute;
    top: 24px; right: 32px;
    font-size: 11px; letter-spacing: 0.16em;
    color: var(--text-muted); font-weight: 500;
    text-transform: uppercase;
    font-feature-settings: "tnum";
}
.cluster-card__main {
    display: flex; flex-direction: column; gap: 14px;
    color: inherit; text-decoration: none;
    flex: 1; min-height: 0;
}
.cluster-card__main .cluster-card__title,
.cluster-card__main .cluster-card__desc { color: inherit; }
@media (hover: hover) and (pointer: fine) {
    .cluster-card:hover { background: var(--bg-surface); }
    .cluster-card:hover .cluster-card__title,
    .cluster-card__main:hover .cluster-card__title { color: var(--brand-green-dark); }
}
.cluster-card__icon {
    /* Tots els cluster icons al mateix color · disciplina editorial */
    width: 52px; height: 52px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-green-soft);
    color: var(--brand-green-dark);
    margin-bottom: 12px;
}
.cluster-card__icon svg { width: 24px; height: 24px; }

/* Si la 10a card queda sola a la fila final, centralitzar */
.cluster-grid > .cluster-card:last-child:nth-child(10) {
    grid-column: 2 / 3;
}
/* Totes les variants de color → col·lapsen al monocromàtic verd */
.cluster-card__icon--blue,
.cluster-card__icon--emerald,
.cluster-card__icon--orange,
.cluster-card__icon--purple,
.cluster-card__icon--red,
.cluster-card__icon--green,
.cluster-card__icon--slate,
.cluster-card__icon--cyan,
.cluster-card__icon--pink,
.cluster-card__icon--rose {
    background: var(--brand-green-soft) !important;
    color: var(--brand-green-dark) !important;
}
.cluster-card__num {
    margin-top: auto;
    align-self: flex-start;
    font-size: 12px; letter-spacing: 0.08em;
    color: var(--brand-green-dark); font-weight: 600;
    text-transform: uppercase; font-family: var(--font-mono);
    border: 1px solid var(--brand-green-edge);
    padding: 8px 14px; border-radius: 6px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
@media (hover: hover) and (pointer: fine) {
    .cluster-card__num:hover {
        background: var(--brand-green-dark);
        border-color: var(--brand-green-dark);
        color: #FFFFFF;
    }
}
.cluster-card__title {
    font-size: 20px; font-weight: 700; line-height: 1.25;
    margin: 0; letter-spacing: -0.015em;
    transition: color var(--t-fast);
}
.cluster-card__desc { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; flex: 1; }
.cluster-card__links { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.cluster-card__links a {
    font-size: 13px; color: var(--text-primary);
    border-bottom: 1px solid var(--divider); padding: 6px 0;
    display: flex; justify-content: space-between; align-items: center;
    transition: color var(--t-fast);
}
.cluster-card__links a:hover { color: var(--brand-green-dark); }
.cluster-card__links a::after { content: "→"; color: var(--text-muted); }

/* ---------- Mega nav (graella massiva de clusters amb links) ---------- */
.meganav__head { margin-bottom: 48px; text-align: center; max-width: 640px; margin-inline: auto; }
.meganav__head h2 { font-size: clamp(28px, 3.5vw, 40px); margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1.12; }
.meganav__head p { color: var(--text-secondary); font-size: 16px; margin: 0; line-height: 1.55; }
.meganav__clusters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 48px; border: 1px solid var(--divider); background: var(--bg-primary); }
.meganav__cluster {
    padding: 28px;
    border-right: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    background: transparent;
    transition: background var(--t-base);
}
.meganav__cluster:nth-child(4n) { border-right: 0; }
.meganav__cluster:hover { background: var(--bg-surface); }
.meganav__cluster-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--divider); }
.meganav__cluster-head svg { flex-shrink: 0; color: var(--brand-green-dark); }
.meganav__cluster h3 { font-size: 13px; font-weight: 700; margin: 0; letter-spacing: 0.02em; }
.meganav__cluster h3 + p { font-size: 11px; color: var(--text-muted); margin: 2px 0 0; letter-spacing: 0.04em; }
.meganav__cluster ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.meganav__cluster a {
    font-size: 13px; color: var(--text-secondary);
    transition: color var(--t-fast);
    display: flex; align-items: center; gap: 8px;
    padding: 4px 0;
}
.meganav__cluster a:hover { color: var(--brand-green-dark); }
.meganav__cluster a::before { content: "→"; color: var(--text-muted); font-size: 11px; }

.meganav__extras { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--divider); border-top: 0; }
.meganav__box {
    padding: 32px;
    background: var(--bg-primary);
    border: 0;
    border-right: 1px solid var(--divider);
    border-radius: 0;
}
.meganav__box:last-child { border-right: 0; }
.meganav__box h3 {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 24px;
}
.meganav__box h3 svg { color: var(--brand-green-dark); }
.meganav__box-list { display: flex; flex-direction: column; gap: 0; }
.meganav__box-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    background: transparent; border-radius: 0;
    border-bottom: 1px solid var(--divider);
    transition: padding var(--t-fast), color var(--t-fast);
    font-size: 14px;
}
.meganav__box-link:last-child { border-bottom: 0; }
.meganav__box-link:hover { color: var(--brand-green-dark); padding-left: 6px; }
.meganav__box-link span { display: inline-flex; align-items: center; gap: 10px; color: inherit; }
.meganav__box-link svg { color: var(--text-muted); flex-shrink: 0; }
.meganav__box-link::after { content: "→"; color: var(--text-muted); }
.meganav__box-link:hover::after { color: var(--brand-green-dark); }

.meganav__main {
    margin-top: 0; padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--divider);
    border-top: 0;
    border-radius: 0;
}
.meganav__main h3 {
    font-size: 11px; margin: 0 0 20px;
    font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-primary);
}
.meganav__main-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.meganav__main-chips a {
    padding: 12px 20px; border-radius: 0;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--brand-green-dark); color: #FFFFFF;
    transition: background var(--t-fast);
}
.meganav__main-chips a:hover { background: #369024; }
.meganav__main-chips a.chip--alt { background: var(--bg-surface); color: var(--text-primary); }
.meganav__main-chips a.chip--alt:hover { background: var(--divider); }

@media (max-width: 1100px) {
    .meganav__clusters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .meganav__clusters { grid-template-columns: 1fr; }
    .meganav__extras { grid-template-columns: 1fr; }
}

/* ---------- City selector (cobertura nacional) ---------- */
.cityselect {
    background: linear-gradient(to bottom, var(--bg-surface) 0%, var(--bg-primary) 100%);
    padding-block: 96px;
}
.cityselect__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.cityselect__pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0; margin-bottom: 24px;
    background: transparent; color: var(--brand-green-dark);
    border-radius: 0; border: 0;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
}
.cityselect__pill::before {
    content: ""; display: inline-block;
    width: 28px; height: 2px;
    background: linear-gradient(to right, #43B02A, #C4D600);
}
.cityselect__pill svg { display: none; }
.cityselect__head h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.12; margin: 0 0 16px; letter-spacing: -0.02em; }
.cityselect__head h2 span { color: var(--brand-green-dark); }
.cityselect__head p { color: var(--text-secondary); font-size: 17px; margin: 0; }
.cityselect__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cityselect__region {
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 0;
    padding: 24px;
    transition: border-color var(--t-base);
}
.cityselect__region:hover { border-color: var(--brand-green-edge); }
.cityselect__region h3 {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin: 0 0 14px; padding-bottom: 12px;
    border-bottom: 1px solid var(--divider);
    color: var(--text-primary);
}
.cityselect__region h3::before {
    content: ""; width: 16px; height: 2px; border-radius: 0;
    background: linear-gradient(to right, #43B02A, #C4D600);
}
.cityselect__region ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.cityselect__region a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 10px; margin-inline: -10px; border-radius: 0;
    font-size: 14px; color: var(--text-secondary);
    transition: background var(--t-fast), color var(--t-fast);
}
.cityselect__region a:hover { background: rgba(67,176,42,0.08); color: var(--brand-green-dark); }
.cityselect__region a::after { content: "→"; color: var(--text-muted); font-size: 12px; }
.cityselect__footer { text-align: center; margin-top: 48px; }
.cityselect__footer p { color: var(--text-secondary); margin: 0 0 12px; font-size: 15px; }
.cityselect__footer a { color: var(--brand-green-dark); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid transparent; transition: border-color var(--t-fast); }
.cityselect__footer a:hover { border-bottom-color: var(--brand-green-dark); }

@media (max-width: 1100px) { .cityselect__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .cityselect__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cityselect__grid { grid-template-columns: 1fr; } }

/* ---------- CTA Section (bloc contacte gradient verd) ---------- */
.cta-hero {
    background: #0E1812;
    color: #FFFFFF;
    padding-block: 112px;
    position: relative;
    overflow: hidden;
}
.cta-hero::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, #43B02A 0%, #C4D600 45%, transparent 100%);
}
.cta-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; }
.cta-hero__pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0; margin-bottom: 24px;
    background: transparent; color: rgba(255,255,255,0.9);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    border-radius: 0;
}
.cta-hero__pill::before {
    content: ""; display: inline-block;
    width: 28px; height: 2px;
    background: linear-gradient(to right, #43B02A, #C4D600);
}
.cta-hero h2 {
    color: #FFFFFF;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1; letter-spacing: -0.025em;
    margin: 0 0 24px;
}
.cta-hero .display em { color: var(--brand-green-light); }
.cta-hero p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.65; margin: 0 0 36px; max-width: 52ch; }
.cta-hero__channels { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.cta-hero__channel {
    display: flex; gap: 18px; align-items: center;
    padding: 18px 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: padding var(--t-fast), color var(--t-fast);
    color: #FFFFFF;
}
.cta-hero__channel:hover { color: var(--brand-green); padding-left: 8px; }
.cta-hero__channel-icon {
    width: 40px; height: 40px; border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--brand-green);
}
.cta-hero__channel-label {
    font-size: 11px; color: rgba(255,255,255,0.55); display: block;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}
.cta-hero__channel-value { font-size: 16px; font-weight: 600; letter-spacing: -0.005em; }
.cta-hero__meta {
    display: flex; flex-wrap: wrap; gap: 28px;
    font-size: 13px; color: rgba(255,255,255,0.6);
}
.cta-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.cta-hero__meta svg { opacity: 0.6; }
.cta-hero__form {
    background: #FFFFFF;
    color: var(--text-primary);
    padding: 44px;
    border-radius: 0;
    border-top: 2px solid var(--brand-green-dark);
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.35);
}
.cta-hero__form h3 {
    font-size: 22px; margin: 0 0 28px;
    font-weight: 700; letter-spacing: -0.01em;
}

@media (max-width: 900px) {
    .cta-hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Article layout: article + TOC sidebar ---------- */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
    padding-block: 72px;
}
.article-body h2 { scroll-margin-top: 96px; }
.article-body h3 { scroll-margin-top: 96px; }
.toc {
    position: sticky; top: 96px;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    font-size: 14px;
}
.toc__title {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; color: var(--text-primary);
    padding-bottom: 14px; margin: 0 0 14px;
    border-bottom: 1px solid var(--divider);
}
.toc__title svg { color: var(--brand-green-dark); }
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc li.toc-l3 { padding-left: 16px; }
.toc a {
    display: block;
    padding: 6px 0;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: color var(--t-fast);
}
.toc a:hover,
.toc a.is-active { color: var(--brand-green-dark); font-weight: 500; }

/* ---------- Article body — elements editorials ---------- */
.article-body { font-size: 16px; line-height: 1.7; color: var(--text-secondary); padding-block: 88px 96px; }
.article-body section { margin-bottom: 88px; position: relative; }
.article-body section > .num-marker {
    display: inline-flex;
    margin-bottom: 20px;
}
.article-body section > .num-marker + h2 { margin-top: 0; }
.article-body h2 {
    color: var(--text-primary);
    font-size: clamp(32px, 4vw, 48px); line-height: 1.05;
    font-weight: 900; letter-spacing: -0.028em;
    margin: 0 0 28px;
    max-width: 24ch;
}
.article-body h3 {
    color: var(--text-primary);
    font-size: 24px; line-height: 1.2;
    font-weight: 700; letter-spacing: -0.012em;
    margin: 32px 0 16px;
}
.article-body h4 {
    color: var(--text-primary);
    font-size: 17px; line-height: 1.35;
    font-weight: 700; letter-spacing: -0.005em;
    margin: 28px 0 10px;
}
.article-body p { font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.article-body p.lead-para {
    font-size: 22px; line-height: 1.5;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: -0.005em;
    max-width: 46ch;
    margin-bottom: 32px;
}
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body ul.disc, .article-body ol { padding-left: 22px; margin: 12px 0 20px; }
.article-body ul.disc li, .article-body ol li { margin-bottom: 8px; }
.article-body ul.check {
    list-style: none; padding: 0; margin: 20px 0;
    display: flex; flex-direction: column; gap: 12px;
}
.article-body ul.check li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-secondary);
}
.article-body ul.check li svg {
    color: var(--brand-green-dark); flex-shrink: 0; margin-top: 2px;
}

/* Info-card grid (checkpoints) */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.info-card {
    display: flex; gap: 12px;
    padding: 18px 20px;
    background: rgba(67,176,42,0.06);
    border-radius: 10px;
}
.info-card svg { color: var(--brand-green-dark); flex-shrink: 0; margin-top: 2px; }
.info-card h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.info-card p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* Timeline box */
.timeline {
    margin: 28px 0;
    padding: 28px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 12px;
}
.timeline h4 { font-size: 16px; color: var(--text-primary); margin: 0 0 20px; font-weight: 600; }
.timeline__list { display: flex; flex-direction: column; gap: 14px; }
.timeline__item { display: flex; gap: 16px; align-items: flex-start; }
.timeline__year {
    font-family: "SF Mono", "Monaco", "Menlo", monospace;
    font-size: 13px; font-weight: 600;
    color: var(--brand-green-dark);
    white-space: nowrap; min-width: 100px;
}
.timeline__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Model cards (amb pros/cons) */
.model-card {
    margin: 20px 0;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 12px;
}
.model-card > h4 {
    font-size: 18px; font-weight: 700; color: var(--text-primary);
    margin: 0 0 16px;
}
.model-card__prosconsgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 16px; }
.model-card__label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 10px;
}
.model-card__label--pros { color: #10B981; }
.model-card__label--cons { color: #EA580C; }
.model-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.model-card__list li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: var(--text-secondary);
}
.model-card__list li svg { flex-shrink: 0; margin-top: 2px; }
.model-card__ideal {
    display: flex; align-items: center; gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed var(--divider);
    font-size: 13px; color: var(--brand-green-dark); font-weight: 500;
}

/* Tables */
.article-body table {
    width: 100%;
    margin: 24px 0;
    border: 1px solid var(--divider);
    border-radius: 10px;
    overflow: hidden;
    border-collapse: separate; border-spacing: 0;
    font-size: 13.5px;
}
.article-body thead { background: var(--bg-surface); }
.article-body th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600; color: var(--text-primary); font-size: 12px;
    letter-spacing: 0.04em;
}
.article-body td {
    padding: 14px 16px;
    color: var(--text-secondary);
    border-top: 1px solid var(--divider);
}
.article-body td:first-child { font-weight: 500; color: var(--text-primary); }

/* Size cards (inversió petita/mediana/gran) */
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }
.size-card {
    padding: 24px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 12px;
    text-align: center;
}
.size-card h4 {
    font-size: 18px; font-weight: 700;
    color: var(--brand-green-dark); margin: 0 0 4px;
}
.size-card__sub { font-size: 13px; color: var(--text-muted); margin: 0 0 20px; }
.size-card dl { margin: 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.size-card dt { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; margin-bottom: 2px; }
.size-card dd { margin: 0; font-size: 14px; font-weight: 500; color: var(--text-primary); }
.size-card dd.revenue { color: #10B981; font-weight: 600; }

/* Requirements grid */
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.req-item {
    padding: 16px 18px;
    background: var(--bg-surface);
    border-radius: 8px;
}
.req-item h5 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.req-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Tip box (consejo) */
.tip-box {
    margin: 28px 0;
    padding: 24px 28px;
    background: rgba(67,176,42,0.05);
    border: 1px solid rgba(67,176,42,0.2);
    border-radius: 12px;
}
.tip-box h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin: 0 0 8px; }
.tip-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* Warning box (important) */
.warning-box {
    margin: 28px 0;
    padding: 22px 26px;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 12px;
}
.warning-box h4 { font-size: 15px; font-weight: 600; color: #9A3412; margin: 0 0 8px; }
.warning-box p { font-size: 14px; color: #9A3412; line-height: 1.55; margin: 0; opacity: 0.9; }

/* Error box (errors freqüents) */
.error-grid { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.error-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 20px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
}
.error-item svg { color: #DC2626; flex-shrink: 0; margin-top: 2px; }
.error-item h4 { font-size: 14px; font-weight: 600; color: #991B1B; margin: 0 0 4px; }
.error-item p { font-size: 13px; color: #991B1B; line-height: 1.5; margin: 0; opacity: 0.85; }

/* Trend grid */
.trend-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.trend-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 10px;
}
.trend-item svg { color: var(--brand-green-dark); flex-shrink: 0; margin-top: 2px; }
.trend-item h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.trend-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

@media (max-width: 700px) {
    .info-grid, .req-grid, .trend-grid,
    .size-grid, .model-card__prosconsgrid { grid-template-columns: 1fr; }
}

/* ---------- Product card ---------- */
.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 4px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 18px;
    transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.product-card:hover {
    border-color: var(--brand-green-edge);
    box-shadow: 0 12px 32px rgba(10,10,10,0.08);
    transform: translateY(-3px);
}
.product-card__media {
    background: var(--bg-surface);
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
    padding: 14%; border-radius: 3px;
}
.product-card__media img { max-width: 100%; max-height: 100%; mix-blend-mode: multiply; }
.product-card__head { display: flex; flex-direction: column; gap: 6px; min-height: 56px; }
.product-card__badge { align-self: flex-start; margin-bottom: 4px; }
.product-card__name { font-size: 18px; font-weight: 700; line-height: 1.2; margin: 0; }
.product-card__tagline { font-size: 13px; line-height: 1.5; color: var(--text-secondary); margin: 0; }
.spec-list {
    margin: 0; padding: 16px 0 0;
    border-top: 1px solid var(--divider);
    display: grid; grid-template-columns: auto 1fr; gap: 6px 16px;
    font-size: 12px; line-height: 1.5;
}
.spec-list dt { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.spec-list dd { margin: 0; color: var(--text-primary); font-weight: 500; }

/* ---------- Inline CTA · versió editorial ---------- */
.inline-cta {
    margin: 48px 0;
    padding: 36px 40px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-left: 3px solid var(--brand-green-dark);
    border-radius: 2px;
    position: relative;
}
.inline-cta::before {
    content: "";
    position: absolute; left: 0; top: -1px; bottom: -1px;
    width: 3px;
    background: var(--brand-gradient);
}
.inline-cta h3 {
    font-size: 22px; font-weight: 700; color: var(--text-primary);
    margin: 0 0 10px; letter-spacing: -0.015em;
}
.inline-cta p { font-size: 15px; color: var(--text-secondary); margin: 0 0 24px; line-height: 1.6; }
.inline-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.inline-cta--compact {
    padding: 22px 28px;
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 16px;
}
.inline-cta--compact__label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 600; color: var(--text-primary);
}
.inline-cta--compact__label svg { color: var(--brand-green-dark); flex-shrink: 0; }

/* ---------- Product aside · marginalia tècnica amb ficha resumen ---------- */
.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 72px;
    align-items: start;
    padding-block: 88px 96px;
}
.product-layout > .article-body { padding-block: 0; }
.product-aside {
    position: sticky;
    top: 120px;
    padding: 24px;
    border: 1px solid var(--divider);
    background: #FAFAF8;
}
.product-aside__head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--divider);
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 600;
}
.product-aside__head span:last-child { color: var(--brand-green-dark); }
.product-aside__data {
    display: flex; flex-direction: column;
    gap: 0;
    margin-bottom: 18px;
}
.product-aside__data dt {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 12px;
}
.product-aside__data dt:first-child { margin-top: 0; }
.product-aside__data dd {
    margin: 3px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-primary);
    font-weight: 500;
}
.product-aside__cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    margin-top: 4px;
    background: var(--text-primary); color: #FFFFFF;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--t-fast);
}
.product-aside__cta:hover { background: var(--brand-green-dark); }
.product-aside__phone {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 0 0;
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid var(--divider);
    margin-top: 14px;
}
.product-aside__phone svg { color: var(--brand-green-dark); }

@media (max-width: 960px) {
    .product-layout { grid-template-columns: 1fr; gap: 48px; }
    .product-aside { position: static; }
}

/* ---------- Legal band · franja tècnica de fitxa de producte ---------- */
.legal-band {
    display: flex; flex-wrap: wrap;
    gap: 32px 48px;
    padding: 20px 0;
    margin: 40px 0 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.legal-band__item { display: flex; flex-direction: column; gap: 3px; }
.legal-band__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 500;
}
.legal-band__value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0;
}

/* ---------- Product page hero · bottle bleed sobre l'overlay ---------- */
.product-hero { padding-block: 112px 112px; }
.product-hero__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px; align-items: center;
}
.product-hero__media {
    background: transparent;
    border: 0; border-radius: 0;
    padding: 0;
    box-shadow: none;
    aspect-ratio: auto;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.product-hero__media::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 340px);
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, rgba(67,176,42,0.22) 0%, rgba(67,176,42,0.08) 45%, transparent 70%);
    z-index: 0;
    filter: blur(12px);
}
.product-hero__media img {
    position: relative;
    z-index: 1;
    max-width: min(100%, 320px);
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 28px 32px rgba(0,0,0,0.45));
}
@media (max-width: 900px) {
    .product-hero { padding-block: 80px; }
    .product-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .product-hero__media { max-width: 260px; justify-self: flex-start; }
    .product-hero__media img { max-height: 340px; }
}

/* ---------- Product features (key features amb check) ---------- */
.features-box {
    padding: 28px;
    background: rgba(67,176,42,0.05);
    border: 1px solid rgba(67,176,42,0.18);
    border-radius: 12px;
    margin: 28px 0;
}
.features-box__title {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 600; color: var(--text-primary);
    margin: 0 0 20px;
}
.features-box__title svg { color: var(--brand-green-dark); flex-shrink: 0; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-item { display: flex; gap: 10px; align-items: flex-start; }
.feature-item svg { color: var(--brand-green-dark); flex-shrink: 0; margin-top: 3px; }
.feature-item h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0 0 2px; }
.feature-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }
@media (max-width: 700px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Use cases (amb icona) ---------- */
.usecase-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.usecase-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 10px;
    transition: border-color var(--t-base);
}
.usecase-item:hover { border-color: rgba(67,176,42,0.4); }
.usecase-item__icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
    background: rgba(67,176,42,0.1); color: var(--brand-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
}
.usecase-item h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.usecase-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* ---------- Specifications table (2 cols, striped) ---------- */
.spec-table {
    width: 100%;
    border: 1px solid var(--divider);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}
.spec-table tr:nth-child(odd) { background: var(--bg-surface); }
.spec-table td:first-child {
    padding: 14px 18px;
    font-weight: 600; color: var(--text-primary);
    border-right: 1px solid var(--divider);
    width: 35%;
    font-size: 13px;
}
.spec-table td:last-child {
    padding: 14px 18px;
    color: var(--text-secondary); font-size: 14px;
}

/* ---------- Problems grid (links a problemes relacionats) ---------- */
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.problems-grid a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: var(--bg-surface); border-radius: 8px;
    transition: background var(--t-fast), color var(--t-fast);
    font-size: 14px; color: var(--text-primary);
}
.problems-grid a:hover { background: rgba(67,176,42,0.08); color: var(--brand-green-dark); }
.problems-grid a svg { color: var(--brand-green-dark); flex-shrink: 0; }
.problems-grid a::after { content: "→"; color: var(--text-muted); margin-left: auto; }
@media (max-width: 700px) { .problems-grid { grid-template-columns: 1fr; } }

/* ---------- Benefits grid ---------- */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.benefit-pill {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 14px 18px;
    background: rgba(67,176,42,0.06);
    border: 1px solid rgba(67,176,42,0.15);
    border-radius: 8px;
}
.benefit-pill svg { color: var(--brand-green-dark); flex-shrink: 0; margin-top: 2px; }
.benefit-pill span { font-size: 13px; color: var(--text-primary); line-height: 1.5; }
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- Product catalog grid · editorial ---------- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.catalog-card {
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 4px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
    transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.catalog-card:hover {
    border-color: var(--brand-green-edge);
    box-shadow: 0 12px 32px rgba(10,10,10,0.08);
    transform: translateY(-3px);
}
.catalog-card__media {
    background: var(--bg-surface);
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    padding: 14%;
}
.catalog-card__media img { max-width: 100%; max-height: 100%; mix-blend-mode: multiply; }
.catalog-card__media--placeholder {
    color: var(--text-muted);
    font-size: 12px; text-align: center;
    font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
}
.catalog-card__badge { align-self: flex-start; margin-bottom: -4px; }
.catalog-card__name { font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 0; line-height: 1.25; }
.catalog-card__tagline { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin: 0; flex: 1; }
.catalog-card__cta {
    font-size: 12px; font-weight: 600; color: var(--brand-green-dark);
    letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 4px;
}
.catalog-family-head {
    grid-column: 1 / -1;
    display: flex; flex-direction: column; gap: 6px;
    padding: 40px 0 0;
    position: relative;
    margin-top: 16px;
}
.catalog-family-head::before {
    content: ""; display: block; height: 1px;
    background: var(--brand-gradient-rule);
    margin-bottom: 32px;
}
.catalog-family-head:first-child { margin-top: 0; padding-top: 0; }
.catalog-family-head:first-child::before { display: none; }
.catalog-family-head h3 {
    font-size: 12px; font-weight: 600; color: var(--brand-green-dark);
    letter-spacing: 0.22em; text-transform: uppercase; margin: 0;
}
.catalog-family-head p { font-size: 15px; color: var(--text-secondary); margin: 0; line-height: 1.55; }
@media (max-width: 1100px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .catalog-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ accordion (HTML native details/summary) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--divider); margin: 24px 0; }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 18px 0; padding-right: 40px;
    font-weight: 600; color: var(--text-primary);
    position: relative; font-size: 16px;
    transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 22px; font-weight: 400;
    color: var(--brand-green-dark);
    transition: transform var(--t-fast);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--brand-green-dark); }
.faq-item__body {
    padding: 0 0 24px;
    color: var(--text-secondary); line-height: 1.65;
}

/* ---------- Numbered list (5 preguntes) ---------- */
.num-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; list-style: none; padding: 0; }
.num-list__item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 10px;
}
.num-list__num {
    flex-shrink: 0; width: 32px; height: 32px;
    border-radius: 50%; background: var(--brand-green-dark); color: #FFF;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.num-list__body h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.num-list__body p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---------- Action card (palanca con acción destacada) ---------- */
.action-card {
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 24px;
}
.action-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.action-card__icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(67,176,42,0.1); color: var(--brand-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
}
.action-card__head h3 { font-size: 17px; font-weight: 700; margin: 0; }
.action-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 16px; }
.action-card__action {
    padding: 12px 14px;
    background: rgba(67,176,42,0.06);
    border-left: 2px solid var(--brand-green-dark);
    border-radius: 4px;
    font-size: 13px; color: var(--text-primary); line-height: 1.55;
    margin: 0;
}

/* ---------- Subcluster card (amb bullets + arrow) ---------- */
.subcluster-card {
    display: flex; flex-direction: column; gap: 12px;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 12px;
    transition: box-shadow var(--t-base), border-color var(--t-base);
}
.subcluster-card:hover { border-color: rgba(67,176,42,0.4); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.subcluster-card__head { display: flex; gap: 12px; align-items: center; }
.subcluster-card__icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
    background: rgba(67,176,42,0.1); color: var(--brand-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
}
.subcluster-card h3 { font-size: 16px; font-weight: 700; margin: 0; color: var(--text-primary); }
.subcluster-card:hover h3 { color: var(--brand-green-dark); }
.subcluster-card__promise { font-size: 13px; color: var(--text-secondary); margin: 0; }
.subcluster-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.subcluster-card ul li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--text-secondary); }
.subcluster-card ul li::before { content: "→"; color: var(--brand-green-dark); flex-shrink: 0; }

/* ---------- Fabricante points (numerat amb icona) ---------- */
.points-list { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.point-item { display: flex; gap: 16px; align-items: flex-start; }
.point-item__icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
    background: rgba(67,176,42,0.1); color: var(--brand-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
}
.point-item h4 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.point-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ---------- Ecosystem links grid ---------- */
.ecolinks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.ecolinks a {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: var(--bg-primary); border: 1px solid var(--divider);
    border-radius: 8px;
    font-size: 14px; color: var(--text-primary);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.ecolinks a:hover { border-color: rgba(67,176,42,0.4); box-shadow: 0 2px 8px rgba(0,0,0,0.05); color: var(--brand-green-dark); }
.ecolinks a::before { content: "→"; color: var(--brand-green-dark); flex-shrink: 0; }

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

/* ---------- Hero with checklist (page-hero amb ul.check-white) ---------- */
.page-hero__checks { list-style: none; padding: 0; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.page-hero__checks li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.9); font-size: 15px; }
.page-hero__checks li svg { color: #FFFFFF; flex-shrink: 0; margin-top: 3px; }

/* ---------- Related links · editorial amb gradient rule ---------- */
.related {
    padding-top: 56px;
    margin-top: 88px;
    position: relative;
}
.related::before {
    content: ""; display: block; height: 1px;
    background: var(--brand-gradient-rule);
    margin-bottom: 56px;
}
.related__title {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted); margin: 0 0 32px; font-weight: 500;
}
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related__card {
    padding: 28px;
    background: var(--bg-primary);
    border: 1px solid var(--divider);
    border-radius: 4px;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color var(--t-base), background var(--t-base);
}
.related__card:hover { border-color: var(--brand-green-edge); background: var(--bg-surface); }
.related__tag { font-size: 11px; color: var(--brand-green-dark); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.related__card h4 { font-size: 17px; line-height: 1.3; margin: 0; letter-spacing: -0.005em; }
.related__card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---------- Form ---------- */
.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--text-muted);
}
.field input, .field select, .field textarea {
    font: inherit; font-size: 15px; padding: 12px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--divider); border-radius: 2px;
    color: var(--text-primary);
    transition: border-color var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--text-primary);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--checkbox { flex-direction: row; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-secondary); }
.field--checkbox input { margin-top: 2px; accent-color: var(--brand-green-dark); }
.field--checkbox label { text-transform: none; letter-spacing: 0; color: inherit; font-weight: 400; font-size: 13px; }

.form__submit { margin-top: 8px; width: fit-content; }
.form__status { font-size: 13px; padding: 12px 14px; border-radius: 2px; }
.form__status--ok { background: #E8F5E4; color: #2F7D1F; }
.form__status--error { background: #FBEDED; color: var(--error); }

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-inverse);
    color: #FFFFFF;
    padding-block: 72px 40px;
    position: relative;
}
.footer::before {
    content: "";
    display: block;
    position: absolute; top: 0; left: 0; right: 0;
    height: 10px;
    background: var(--brand-gradient);
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__col--wide { grid-column: span 1; }
.footer__logo img { height: 26px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer__tag { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 42ch; margin: 0 0 20px; }
.footer__contact { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7; display: flex; gap: 12px; flex-wrap: wrap; }
.footer__contact--address { margin-top: 10px; display: block; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer__contact a { color: inherit; transition: color var(--t-fast); }
.footer__contact a:hover { color: #FFFFFF; }
.footer__contact-sep { color: rgba(255,255,255,0.3); }
.footer__col h4 {
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    margin: 0 0 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__col a { color: rgba(255,255,255,0.85); transition: color var(--t-fast); }
.footer__col a:hover { color: #FFFFFF; }
.footer__bottom {
    padding-top: 32px;
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: inherit; transition: color var(--t-fast); }
.footer__bottom a:hover { color: #FFFFFF; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .article-layout { grid-template-columns: 1fr; }
    .toc { position: relative; top: auto; padding-left: 0; border-left: 0; border-top: 1px solid var(--divider); padding-top: 24px; }
    .cluster-grid { grid-template-columns: repeat(2, 1fr); }
    .meganav { grid-template-columns: repeat(3, 1fr); }
    .related__grid { grid-template-columns: repeat(2, 1fr); }
    .section__head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 48px; }
    .footer__top { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 720px) {
    :root { --gutter-x: 20px; --section-y: var(--section-y-mobile); }
    .header__nav { display: none; }
    .header__toggle { display: inline-flex; }
    .hero { height: auto; min-height: 540px; }
    .hero__content { padding-block: 120px 48px; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr; gap: 32px; }
    .cluster-grid { grid-template-columns: 1fr; }
    .meganav { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .related__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .article-body { font-size: 16px; }
    .page-hero { padding-block: 56px; }
}

/* ---------- Utilities ---------- */
.sr-only {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0 !important; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.flex { display: flex; } .flex-col { flex-direction: column; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ---------- City page (proveedor/{slug}) ---------- */
.city-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 36px;
    max-width: 720px;
}
.city-hero-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(6px);
}
.city-hero-stat__value {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-green-light);
    font-weight: 500;
}
.city-hero-stat__label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
.city-hero-stat__sub {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
}
@media (max-width: 720px) {
    .city-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.why-card:hover {
    border-color: var(--brand-green-edge);
    transform: translateY(-2px);
}
.why-card__icon {
    width: 36px;
    height: 36px;
    color: var(--brand-green-dark);
}
.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
}
.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.catalog-card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.catalog-card:hover {
    border-color: var(--brand-green-edge);
    transform: translateY(-2px);
}
.catalog-card__media {
    background: var(--surface-soft);
    aspect-ratio: 4 / 3;
    margin: -24px -24px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    mix-blend-mode: multiply;
}
.catalog-card__eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    font-weight: 600;
}
.catalog-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.catalog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}
.catalog-card ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.catalog-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.catalog-card li svg {
    color: var(--brand-green-dark);
    flex-shrink: 0;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .catalog-grid { grid-template-columns: 1fr; }
}

.spec-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.spec-card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 28px;
}
.spec-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-primary);
}
.spec-card dl {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}
.spec-card dl > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--divider);
    gap: 12px;
}
.spec-card dl > div:last-child { border-bottom: none; }
.spec-card dt {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
.spec-card dd {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-primary);
    margin: 0;
    text-align: right;
    font-weight: 500;
}
.spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.spec-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    padding: 6px 0;
}
.spec-card ul li svg {
    color: var(--brand-green-dark);
    flex-shrink: 0;
    margin-top: 2px;
}
@media (max-width: 720px) {
    .spec-columns { grid-template-columns: 1fr; }
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.problem-card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.problem-card:hover {
    border-color: var(--brand-green-edge);
    transform: translateY(-2px);
}
.problem-card__icon {
    width: 28px;
    height: 28px;
    color: var(--brand-green-dark);
}
.problem-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
}
.problem-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}
.problem-card__link {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 900px) {
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .problem-grid { grid-template-columns: 1fr; }
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
}
.coverage-card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.coverage-card__icon {
    width: 32px;
    height: 32px;
    color: var(--brand-green-dark);
}
.coverage-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.coverage-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}
@media (max-width: 720px) {
    .coverage-grid { grid-template-columns: 1fr; }
}

.zones-box {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.zones-box__title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.zones-box__title::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--brand-green-dark);
    border-radius: 50%;
}
.zones-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.zones-pills span {
    background: var(--surface-soft);
    border: 1px solid var(--divider);
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-primary);
    border-radius: 999px;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.case-card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.case-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
}
.case-card__loc {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.case-card__loc svg { color: var(--brand-green-dark); }
.case-card__block h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.case-card__block p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}
.case-card__results {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.case-card__results li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
}
.case-card__results li svg {
    color: var(--brand-green-dark);
    flex-shrink: 0;
    margin-top: 3px;
}
.case-card__quote {
    background: var(--surface-soft);
    padding: 16px 20px;
    border-left: 3px solid var(--brand-green-dark);
    margin: 0;
}
.case-card__quote p {
    font-size: 14px;
    font-style: italic;
    color: var(--text-primary);
    margin: 0 0 8px;
    line-height: 1.5;
}
.case-card__quote cite {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    font-style: normal;
}
@media (max-width: 720px) {
    .case-grid { grid-template-columns: 1fr; }
}

.other-cities {
    background: var(--surface-soft);
    padding: 40px;
    margin-top: 48px;
}
.other-cities__title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0 0 8px;
    text-align: center;
}
.other-cities__head {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 28px;
}
.other-cities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.other-cities__card {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 14px 18px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--t-fast);
}
.other-cities__card:hover { border-color: var(--brand-green-edge); color: var(--brand-green-dark); }
.other-cities__card svg { color: var(--brand-green-dark); flex-shrink: 0; }
.other-cities__footer { text-align: center; }
.other-cities__footer a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 900px) {
    .other-cities__grid { grid-template-columns: repeat(2, 1fr); }
}

.cta-band {
    background: var(--text-primary);
    color: #fff;
    padding: 64px 40px;
    text-align: center;
    margin-top: 56px;
}
.cta-band h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
}
.cta-band p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.cta-band__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.cta-band .btn--primary { background: var(--brand-green-dark); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--text-primary); }

/* ---------- Photo bands (editorial breaks) ---------- */
.photo-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-inverse);
}
.photo-band img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.05);
}
.photo-band--wide { aspect-ratio: 21 / 9; max-height: 420px; }
.photo-band--standard { aspect-ratio: 16 / 9; max-height: 560px; }
.photo-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 100%);
}
.photo-band__caption {
    position: absolute;
    bottom: 24px;
    left: 32px;
    right: 32px;
    color: rgba(255,255,255,0.82);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.photo-band__caption::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--brand-green-dark);
}

/* Calc copy with image thumb */
.calc-copy__thumb {
    margin-top: 32px;
    border: 1px solid var(--divider);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.calc-copy__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1);
}
.calc-copy__thumb-label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(10,10,10,0.55);
    padding: 8px 12px;
    backdrop-filter: blur(4px);
}

/* ---------- Hero lead magnet (#1) ---------- */
.hero-poster__magnet {
    margin: 28px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 520px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.hero-poster__magnet:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}
.hero-poster__magnet-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--brand-green-light);
    color: #0a0a0a;
}
.hero-poster__magnet-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.25;
}
.hero-poster__magnet-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-green-light);
}
.hero-poster__magnet-title {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.hero-poster__magnet-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #fff;
    transition: transform var(--t-fast);
}
.hero-poster__magnet:hover .hero-poster__magnet-arrow {
    transform: translateX(3px);
}

/* ---------- Claim humà (#2) ---------- */
.human-claim {
    background: #fff;
    padding: 40px 32px;
    border-bottom: 1px solid var(--divider);
}
.human-claim__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.human-claim__text {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-align: center;
}
.human-claim__rule {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--brand-green-dark);
    flex-shrink: 0;
}
@media (max-width: 720px) {
    .human-claim__rule { display: none; }
    .human-claim { padding: 28px 24px; }
    .human-claim__text { font-size: 13px; }
}

/* ---------- Calculadora (#4) ---------- */
.calc-section {
    background: var(--bg-surface);
    padding: var(--section-y) 0;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.calc-copy h2 { margin: 20px 0 20px; }
.calc-lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 44ch;
    margin: 0 0 28px;
}
.calc-notes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.calc-notes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}
.calc-notes li svg { color: var(--brand-green-dark); flex-shrink: 0; margin-top: 2px; }

.calc-form {
    background: #fff;
    border: 1px solid var(--divider);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.calc-form .field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}
.calc-form .field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--divider);
    background: #fff;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color var(--t-fast);
}
.calc-form .field input:focus {
    outline: none;
    border-color: var(--brand-green-dark);
}
.calc-form__submit {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}
.calc-form__disclaimer {
    margin: 0;
    text-align: center;
    color: var(--text-muted);
}
.calc-form__disclaimer a { color: var(--brand-green-dark); }
@media (max-width: 960px) {
    .calc-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
    .calc-form__row { grid-template-columns: 1fr; }
    .calc-form { padding: 24px; }
}

/* ---------- Calculadora · redesign v2 (ES only) ---------- */
/* Scoped under .calc-section--v2 so only pages that opt-in get the new look. */
.calc-section--v2 .calc-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 72px;
}
.calc-section--v2 .calc-lede {
    max-width: 52ch;
}
.calc-section--v2 .calc-copy__thumb {
    margin: 0 0 28px;
    aspect-ratio: 4 / 3;
    background: #fff;
}
.calc-section--v2 .calc-copy__thumb img {
    filter: none;
}
.calc-section--v2 .calc-copy__thumb-label { display: none; }

.calc-section--v2 .calc-proof {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border-top: 1px solid var(--divider);
}
.calc-section--v2 .calc-proof li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.calc-section--v2 .calc-proof strong {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1;
}
.calc-section--v2 .calc-proof span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.4;
}

.calc-section--v2 .calc-form {
    gap: 18px;
    align-self: center;
}
.calc-section--v2 .calc-form__head {
    margin: -6px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--divider);
    padding-bottom: 18px;
}
.calc-section--v2 .calc-form__eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    font-weight: 600;
}
.calc-section--v2 .calc-form__title {
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.calc-section--v2 .calc-form .field__hint {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}
.calc-section--v2 .calc-form__submit {
    appearance: none;
    border: 0;
    border-radius: 6px;
    height: 56px;
    width: 100%;
    margin-top: 4px;
    background: var(--brand-green-dark);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.005em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast);
}
.calc-section--v2 .calc-form .field input {
    border-radius: 6px;
}
.calc-section--v2 .calc-form {
    border-radius: 8px;
}
.calc-section--v2 .calc-form__submit:hover { background: #369024; transform: translateY(-1px); }
.calc-section--v2 .calc-form__submit:active { transform: translateY(0); }
.calc-section--v2 .calc-form__submit svg { flex-shrink: 0; }
.calc-section--v2 .calc-form__trust {
    list-style: none;
    padding: 0;
    margin: 2px 0 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
}
.calc-section--v2 .calc-form__trust li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.calc-section--v2 .calc-form__trust li::before {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background: var(--brand-green-dark);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><path d='M20 6 9 17l-5-5'/></svg>") center / contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><path d='M20 6 9 17l-5-5'/></svg>") center / contain no-repeat;
}
@media (max-width: 960px) {
    .calc-section--v2 .calc-grid { grid-template-columns: 1fr; gap: 40px; }
    .calc-section--v2 .calc-form { align-self: stretch; }
    .calc-section--v2 .calc-copy__thumb { aspect-ratio: 16 / 10; }
}
@media (max-width: 520px) {
    .calc-section--v2 .calc-proof { grid-template-columns: 1fr; gap: 14px; padding-top: 18px; }
    .calc-section--v2 .calc-proof li { flex-direction: row; align-items: baseline; gap: 14px; }
    .calc-section--v2 .calc-proof strong { font-size: 22px; min-width: 78px; }
}

/* ---------- Modal base (lead magnet + calc result) ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.78);
    animation: modalFade 200ms ease-out;
}
.modal__dialog {
    position: relative;
    background: #fff;
    border: 1px solid var(--divider);
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    z-index: 1;
    animation: modalRise 250ms ease-out;
    max-height: 90vh;
    overflow-y: auto;
}
.modal__dialog .mono--xs { color: var(--brand-green-dark); display: block; margin-bottom: 10px; }
.modal__dialog h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: var(--text-primary);
    line-height: 1.2;
}
.modal__dialog > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 24px;
    line-height: 1.55;
}
.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--t-fast);
}
.modal__close:hover { color: var(--text-primary); }
.modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.modal__form .field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 6px;
}
.modal__form .field input[type="email"] {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--divider);
    background: #fff;
    font-size: 14px;
}
.modal__form .field input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-green-dark);
}
.modal__form .field--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.modal__form .field--checkbox label {
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
}
.modal__form .field--checkbox label a { color: var(--brand-green-dark); text-decoration: underline; }
.modal__form button { margin-top: 6px; }
.modal__status {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--brand-green-dark);
    min-height: 18px;
}
.modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.calc-result__range {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--brand-green-dark);
    margin: 0 0 12px;
    line-height: 1.1;
}
.calc-result__note {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
body.modal-open { overflow: hidden; }

/* ---------- Sticky mobile bar (#7) ---------- */
.sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.06);
    transform: translateY(100%);
    transition: transform 280ms ease-out;
}
.sticky-mobile[hidden] { display: none; }
.sticky-mobile.is-visible { transform: translateY(0); }
.sticky-mobile__btn {
    flex: 1;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background var(--t-fast);
}
.sticky-mobile__btn--call { background: rgba(67,176,42,0.18); }
.sticky-mobile__btn--call:hover { background: rgba(67,176,42,0.28); }
.sticky-mobile__btn--form { background: var(--brand-green-dark); color: #fff; }
.sticky-mobile__btn--form:hover { background: #369024; }
@media (min-width: 1024px) { .sticky-mobile { display: none !important; } }

/* ---------- Form disclaimer (#8) ---------- */
.form__disclaimer {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.5;
}

/* =========================================================
   RESPONSIVE FIXES · Consolidated mobile adjustments
   ========================================================= */

/* -------- Hero BG images · preserve left dark zone on mobile -------- */
/* All our hero images are composed with LEFT THIRD darker for text overlay.
   On narrow mobile the default center crop loses part of that zone, putting
   text on bright areas of the image. Anchor crop toward left on mobile. */
@media (max-width: 900px) {
    img.page-hero__bg,
    .page-hero__bg,
    .hero-poster__bg {
        object-position: 30% center;
        background-position: 30% center;
    }
}
@media (max-width: 560px) {
    img.page-hero__bg,
    .page-hero__bg,
    .hero-poster__bg {
        object-position: 22% center;
        background-position: 22% center;
    }
}

/* -------- Defensive rules · prevent any image overflow -------- */
img { max-width: 100%; height: auto; }
.page-hero, .hero-poster, .photo-band { overflow: hidden; }

/* -------- Photo band images · preserve subject center + avoid jitter on tiny screens -------- */
@media (max-width: 520px) {
    .photo-band img { object-position: center center; }
    .photo-band--wide { aspect-ratio: 16 / 10; max-height: 340px; }
    .photo-band--standard { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* -------- Calc thumb image · always maintain aspect ratio -------- */
@media (max-width: 720px) {
    .calc-copy__thumb { aspect-ratio: 16 / 10; }
    .calc-copy__thumb img { object-position: center 40%; }
}

/* -------- Catalog card media · consistent box on mobile -------- */
@media (max-width: 560px) {
    .catalog-card__media { aspect-ratio: 16 / 10; margin: -20px -20px 4px; }
    .catalog-card__media img { padding: 12px; }
}



/* -------- Photo bands · caption stacks on mobile -------- */
@media (max-width: 720px) {
    .photo-band--wide { aspect-ratio: 16 / 10; }
    .photo-band--standard { aspect-ratio: 4 / 3; }
    .photo-band__caption {
        flex-direction: column;
        gap: 6px;
        bottom: 16px;
        left: 20px;
        right: 20px;
        font-size: 10px;
    }
    .photo-band__caption::before { width: 40px; }
}

/* -------- Hero magnet · responsive -------- */
@media (max-width: 720px) {
    .hero-poster__magnet {
        margin-top: 24px;
        max-width: 100%;
        padding: 12px 14px;
        gap: 12px;
    }
    .hero-poster__magnet-icon { width: 36px; height: 36px; }
    .hero-poster__magnet-title { font-size: 14px; }
    .hero-poster__magnet-label { font-size: 10px; }
}

/* -------- Human claim · reduce weight on mobile -------- */
@media (max-width: 560px) {
    .human-claim { padding: 22px 20px; }
    .human-claim__text { font-size: 12px; letter-spacing: 0.01em; }
}

/* -------- Calculator · compact form on mobile -------- */
@media (max-width: 720px) {
    .calc-section { padding-block: 72px; }
    .calc-copy h2 { font-size: clamp(24px, 6vw, 34px); }
    .calc-lede { font-size: 15px; }
    .calc-copy__thumb { aspect-ratio: 16/9; margin-top: 24px; }
}

/* -------- Sticky mobile bar · reserve space at bottom -------- */
@media (max-width: 1023px) {
    body { padding-bottom: env(safe-area-inset-bottom, 0); }
    /* When sticky bar visible, avoid covering last section content */
    .sticky-mobile.is-visible ~ * { /* noop */ }
}
.sticky-mobile { padding-bottom: env(safe-area-inset-bottom, 0); }

/* -------- Modals · small-screen adjustments -------- */
@media (max-width: 560px) {
    .modal { padding: 12px; align-items: flex-end; }
    .modal__dialog {
        padding: 28px 22px 32px;
        max-height: 88vh;
        animation: modalRiseSmall 250ms ease-out;
    }
    .modal__dialog h3 { font-size: 20px; line-height: 1.22; }
    .modal__dialog > p { font-size: 13px; }
    .calc-result__range { font-size: 28px; }
    .modal__actions { flex-direction: column; align-items: stretch; }
    .modal__actions .btn { width: 100%; justify-content: center; }
}
@keyframes modalRiseSmall {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------- CTA band (dark) · city pages -------- */
@media (max-width: 720px) {
    .cta-band { padding: 44px 24px; margin-top: 40px; }
    .cta-band h3 { font-size: clamp(22px, 6vw, 30px); }
    .cta-band p { font-size: 14px; }
    .cta-band__actions { flex-direction: column; align-items: stretch; }
    .cta-band__actions .btn { width: 100%; justify-content: center; }
}

/* -------- Other cities grid · single col at very narrow -------- */
@media (max-width: 560px) {
    .other-cities { padding: 28px 20px; margin-top: 36px; }
    .other-cities__grid { grid-template-columns: 1fr; }
    .other-cities__card { padding: 12px 16px; font-size: 13px; }
}

/* -------- Case study cards · compact padding on mobile -------- */
@media (max-width: 560px) {
    .case-card { padding: 22px 20px; }
    .case-card h4 { font-size: 15px; }
    .case-card__quote { padding: 14px 16px; }
    .case-card__quote p { font-size: 13px; }
}

/* -------- Coverage cards · spacing -------- */
@media (max-width: 720px) {
    .coverage-grid { gap: 14px; margin-top: 24px; }
    .coverage-card { padding: 22px 18px; }
}

/* -------- Zones box · compact title + smaller pills -------- */
@media (max-width: 560px) {
    .zones-box { padding: 18px 20px; }
    .zones-pills span { font-size: 12px; padding: 5px 10px; }
}

/* -------- Spec cards (ficha técnica) · tighter on mobile -------- */
@media (max-width: 560px) {
    .spec-columns { gap: 16px; margin-top: 24px; }
    .spec-card { padding: 22px 20px; }
    .spec-card h3 { font-size: 15px; margin-bottom: 12px; }
    .spec-card dt, .spec-card dd { font-size: 12px; }
}

/* -------- Why/Problem/Catalog cards · icon & typography scale -------- */
@media (max-width: 560px) {
    .why-card, .problem-card { padding: 22px 20px; }
    .why-card h4, .problem-card h4 { font-size: 15px; }
    .why-card p, .problem-card p { font-size: 13px; }
    .catalog-card { padding: 20px; }
    .catalog-card h4 { font-size: 17px; }
}

/* -------- City hero stats · smaller spacing on mobile -------- */
@media (max-width: 520px) {
    .city-hero-stats { gap: 8px; margin-top: 24px; }
    .city-hero-stat { padding: 12px 10px; gap: 4px; }
    .city-hero-stat__value { font-size: 10px; }
    .city-hero-stat__label { font-size: 12px; }
    .city-hero-stat__sub { font-size: 10px; line-height: 1.25; }
}

/* -------- Manifest pullquote · tighter type on mobile -------- */
@media (max-width: 560px) {
    .manifest { padding-block: 56px; }
    .manifest__text { font-size: clamp(24px, 7.5vw, 36px); margin-bottom: 28px; }
    .manifest__attr { font-size: 10px; gap: 8px; flex-direction: column; }
}

/* -------- Stats tape on hero · on very small screens show fewer pills -------- */
@media (max-width: 440px) {
    .hero-poster__tape-inner { gap: 16px; }
    .hero-poster__tape-inner strong { font-size: 13px; }
    .hero-poster__tape-inner span:nth-child(n+2) { display: none; }
}

/* -------- Section editorial headers · scale -------- */
@media (max-width: 560px) {
    .section-editorial__head h2.display { font-size: clamp(28px, 8vw, 40px); }
    .section-editorial { padding-block: 72px; }
}

/* -------- Form fields · consistent height on mobile -------- */
@media (max-width: 560px) {
    .field input, .field textarea { font-size: 16px; } /* prevents iOS zoom */
    .calc-form .field input { font-size: 16px; }
    .modal__form .field input[type="email"] { font-size: 16px; }
}

/* -------- Breadcrumb · truncate gracefully -------- */
@media (max-width: 520px) {
    .breadcrumb { font-size: 10px; letter-spacing: 0.04em; flex-wrap: wrap; gap: 4px; }
    .breadcrumb a, .breadcrumb span { white-space: nowrap; }
}

/* -------- Page hero (interior pages) · mobile padding -------- */
@media (max-width: 720px) {
    .page-hero { padding-block: 72px 64px; min-height: 60vh; }
    .page-hero__title { font-size: clamp(28px, 8vw, 52px) !important; }
    .page-hero__subtitle { font-size: 15px; }
}

/* -------- Footer of product catalog banners -------- */
@media (max-width: 560px) {
    .inline-cta { padding: 24px 22px; }
    .inline-cta h3 { font-size: 18px; }
    .inline-cta__actions { flex-direction: column; align-items: stretch; }
    .inline-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Print ---------- */
@media print {
    @page { size: A4; margin: 14mm 12mm; }
    .scroll-progress, .header, .footer, .hero__actions, .form, .inline-cta { display: none !important; }
    body { font-size: 10.5pt; }
    .hero { color: var(--text-primary); background: none; height: auto; max-height: none; }
    .hero__bg, .hero__overlay { display: none; }
    .hero__title { color: var(--text-primary); }
    .hero__lead { color: var(--text-secondary); }
    a { color: inherit !important; text-decoration: none !important; }
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
