/* =========================================================
   FORZA MONTACARGAS - Home page styles
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
    --yellow: #FFC300;          /* primary brand yellow */
    --yellow-soft: #FFE79A;     /* secondary lighter yellow */
    --yellow-dark: #E6B000;
    --black: #0E0E0E;
    --ink: #111111;
    --gray-900: #1c1c1c;
    --gray-700: #4a4a4a;
    --gray-500: #7a7a7a;
    --gray-200: #e9e9e9;
    --gray-100: #f4f4f4;
    --white: #ffffff;

    --font-display: 'Roboto Condensed', system-ui, sans-serif;
    --font-body: 'Montserrat', system-ui, sans-serif;

    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.18);

    --container: 1320px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: 32px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.05;
    text-transform: none;
}

h1 { font-size: clamp(38px, 6vw, 70px); }
h2 { font-size: clamp(30px, 4.6vw, 60px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }

p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.55;
    margin: 0 0 1em;
}

/* Lead paragraph — intro copy under a heading. Larger than body, smaller than h3.
   Single source of truth: all section-intro classes share this size. */
.lead,
.problems-lead,
.solutions-lead,
.catalog-lead,
.catalog-cta p,
.catalog-section-lead,
.catalog-section-head p,
.compare-head p,
.tranquility-head p,
.pillars-head p,
.why-lead {
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}
.btn--yellow {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(255, 195, 0, 0.35);
}
.btn--yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 195, 0, 0.45);
}
.btn--block { display: flex; width: 100%; }

/* =========================================================
   HEADER (sits over the hero — fully transparent until scroll)
   ========================================================= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 0;
    transition: background .3s ease, box-shadow .3s ease, position .3s ease;
}
/* Once scrolled, snap to top with a solid yellow band so nav stays legible */
.site-header.is-scrolled {
    position: fixed;
    background: var(--yellow);
    box-shadow: var(--shadow-sm);
    animation: headerSlideDown .35s ease both;
}
@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
}
.brand-logo {
    width: auto;
    display: block;
}

/* Nav fills the bar between the logo and the right edge so the items
   distribute evenly across the whole header (first item next to the
   logo, Contacto anchored to the right). */
.primary-nav { flex: 1; }
.primary-nav > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1.4vw, 24px);
}
.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(13px, 0.95vw, 16px);
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: var(--ink);
    padding: 8px 2px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: color .2s ease, font-weight .2s ease;
}
/* Hover: keep text black (best contrast on yellow), reinforce with a thicker
   black underline that animates in. */
.nav-link:hover { color: var(--ink); font-weight: 700; }
.nav-link::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 2px;
    margin: 0 auto;
    height: 3px; width: 0;
    background: var(--ink);
    border-radius: 2px;
    transition: width .25s ease;
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { font-weight: 700; }

/* Contacto highlighted button — dark pill with yellow text. Pops on both
   transparent header (over the yellow hero) and the yellow scrolled state. */
.nav-link--cta {
    background: var(--ink);
    color: var(--yellow) !important;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nav-link--cta:hover {
    background: var(--gray-900);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}
.nav-link--cta::after { display: none; }   /* hide the underline indicator on the button */

/* mobile toggle */
.nav-toggle {
    display: none;
    margin-left: auto;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--ink);
    transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — Cinematic
   ─────────────────────────────────────────────────────────
   Big image bleeds off the right edge, card floats over it
   on the left with a strong shadow. Diagonal yellow backdrop
   stays as atmosphere. Tall, immersive, layered.
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;                                   /* vertical centering for the card */
    min-height: clamp(580px, 82vh, 820px);
    padding-top: clamp(90px, 8vw, 120px);
    background: linear-gradient(to bottom right, var(--yellow) 0 58%, var(--yellow-soft) 58% 100%);
}
/* Subtle decorative texture on the soft-yellow side */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 85% 90%, rgba(0,0,0,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    background: none;
}
.hero-inner {
    position: relative;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
    z-index: 2;
}
/* ---------- Hero CARD (floats left, top of stack) ---------- */
.hero-card {
    background: var(--ink);
    color: var(--white);
    padding: clamp(40px, 4.2vw, 60px) clamp(40px, 4.5vw, 64px);
    border-radius: 8px;
    width: min(50%, 560px);
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.28),
        0 4px 14px rgba(0,0,0,0.18);
    clip-path: none;
    /* Subtle entrance */
    animation: heroCardIn .9s cubic-bezier(.22,.9,.34,1) both;
}
@keyframes heroCardIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-card h1 {
    color: var(--white);
    font-size: clamp(46px, 5.8vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.5px;
    margin-bottom: clamp(16px, 1.6vw, 24px);
}
.hero-card p {
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.55;
    color: #d8d8d8;
    margin-bottom: clamp(24px, 2.4vw, 34px);
    max-width: 460px;
}
.hero-card .btn {
    align-self: flex-start;
    padding: 14px 42px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    min-height: 0;
    width: 100%;
}
/* ---------- Hero IMAGE (absolute on .hero, bleeds off-right) ---------- */
.hero-image {
    position: absolute;
    right: clamp(-100px, -3vw, 0px);     /* slight bleed past viewport edge */
    bottom: 0;
    height: clamp(95%, 100%, 108%);
    width: clamp(620px, 62vw, 980px);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    animation: heroImageIn 1.1s cubic-bezier(.22,.9,.34,1) both;
    top: 30px;
}
@keyframes heroImageIn {
    from { opacity: 0; transform: translate(40px, 20px); }
    to   { opacity: 1; transform: translate(0, 0); }
}
.hero-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    /* Subtle drop shadow for depth */
    filter: drop-shadow(0 30px 30px rgba(0,0,0,0.18));
}

/* ---------- Scroll-down indicator ---------- */
.hero-scroll {
    position: absolute;
    bottom: clamp(18px, 2vw, 28px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    pointer-events: none;
    user-select: none;
}
.hero-scroll::after {
    content: '';
    width: 1px;
    height: 28px;
    background: var(--ink);
    animation: heroScroll 1.6s ease-in-out infinite;
    transform-origin: top;
}
@keyframes heroScroll {
    0%   { transform: scaleY(0); opacity: 0.2; }
    50%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0) translateY(28px); opacity: 0; }
}

.hero .reveal { opacity: 1; transform: none; transition: none; }

/* ============================================================
   Per-page tweaks (image scale + composition)
   ─────────────────────────────────────────────────────────────
   Compositions vary a lot (tall portraits vs wide forklifts).
   For tall compositions we narrow the container and center the
   image so the subject doesn't hug the right edge with empty
   yellow space on its left.
   ============================================================ */

/* HOME + MANTENIMIENTO + MONTACARGAS + SERVICIOS + POR-QUÉ + TEU + POLIZAS — wide image, bleeds right */
.hero--home .hero-image,
.hero--mantenimiento .hero-image,
.hero--montacargas .hero-image,
.hero--servicios .hero-image,
.hero--porque .hero-image,
.hero--renta .hero-image,
.hero--teu .hero-image,
.hero--polizas .hero-image {
    width: clamp(680px, 66vw, 1040px);
    z-index: 99;
}
/* Per-variant image scaling. Anchored bottom-right; overflow clipped by
   .hero { overflow: hidden }. Home has a denser composition (forklift +
   pallets) so it needs less scale than mantenimiento (single forklift). */
.hero--home .hero-image img {
    transform: scale(1.2);
    transform-origin: bottom right;
}
.hero--mantenimiento .hero-image img,
.hero--montacargas .hero-image img,
.hero--porque .hero-image img,
.hero--renta .hero-image img,
.hero--teu .hero-image img,
.hero--polizas .hero-image img {
    transform: scale(1.2);
    transform-origin: bottom right;
}
.hero--servicios .hero-image{
    top: 0;
    left: 300px;
}
.hero--servicios .hero-image img {
    transform: scale(1.2);
    transform-origin: bottom left;
}

/* HOME + MANTENIMIENTO + SERVICIOS — wide desktop: card flush-left,
   image flush-right, they overlap. Mirrors the reference comp where the
   forklift sits on top of the black card rather than to its side. Text
   inside the card aligns with the header's container column so it reads
   as part of the page grid. */
@media (min-width: 1200px) {
    .hero--home .hero-inner,
    .hero--mantenimiento .hero-inner,
    .hero--montacargas .hero-inner,
    .hero--servicios .hero-inner,
    .hero--porque .hero-inner,
    .hero--renta .hero-inner,
    .hero--teu .hero-inner,
    .hero--polizas .hero-inner {
        max-width: none;
        padding: 0;
    }
    .hero--home .hero-card,
    .hero--mantenimiento .hero-card,
    .hero--montacargas .hero-card,
    .hero--servicios .hero-card,
    .hero--porque .hero-card,
    .hero--renta .hero-card,
    .hero--teu .hero-card,
    .hero--polizas .hero-card {
        width: 60%;
        max-width: none;
        border-radius: 0 8px 8px 0;
        padding-top: clamp(48px, 4.2vw, 72px);
        padding-bottom: clamp(48px, 4.2vw, 72px);
        padding-right: clamp(56px, 5vw, 96px);
        /* Match the header-inner's left edge so the title aligns with the logo column. */
        padding-left: calc((100vw - var(--container)) / 2 + clamp(24px, 4vw, 48px));
    }

    .hero--servicios .hero-card{
        width: 72%;
    }
    .hero--home .hero-card p,
    .hero--mantenimiento .hero-card p,
    .hero--montacargas .hero-card p,
    .hero--servicios .hero-card p,
    .hero--porque .hero-card p,
    .hero--renta .hero-card p,
    .hero--teu .hero-card p,
    .hero--polizas .hero-card p { max-width: 520px; }
    .hero--renta .hero-card p { max-width: 720px; }
    /*.hero--home .hero-card .btn { align-self: center; } */
    .hero--home .hero-image,
    .hero--mantenimiento .hero-image,
    .hero--montacargas .hero-image,
    .hero--servicios .hero-image,
    .hero--porque .hero-image,
    .hero--renta .hero-image,
    .hero--teu .hero-image,
    .hero--polizas .hero-image {
        width: 62%;
        right: 0;
    }
}

/* RENTA — same hero structure as home/mantenimiento with a wider copy measure */
.hero--renta .hero-card h1 {
    font-size: clamp(40px, 4.9vw, 74px);
}
.hero--renta .hero-image {
    width: clamp(680px, 66vw, 1040px);
}

/* =========================================================
   PROBLEMS
   ========================================================= */
.problems {
    background: var(--white);
    padding: 80px 0 90px;
    text-align: center;
}
.problems h2 { color: var(--ink); margin-bottom: 22px; }
.problems-lead {
    color: var(--gray-700);
    max-width: 780px;
    margin: 0 auto 56px;
}
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.problem-card {
    background: var(--yellow);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255, 212, 0, 0.4);
}
.problem-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    object-fit: contain;
}
.problem-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--ink);
}
.problem-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
}

/* =========================================================
   OPERA SIN PREOCUPACIONES
   ========================================================= */
.opera {
    padding: 70px 0 50px;
    background: var(--white);
}
.opera-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /*align-items: center;*/
    gap: 40px;
}
.opera-copy h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    margin-bottom: 20px;
}
.opera-copy p {
    color: var(--gray-700);
    max-width: 540px;
    margin-bottom: 22px;
}
.opera-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--ink);
}
.opera-list li::before {
    content: '•';
    color: var(--ink);
    position: absolute; left: 0; top: 0;
    font-size: 18px;
}
.opera-list strong { font-weight: 700; }
.opera-image img {
    width: 100%;
    max-width: 580px;
    margin-left: auto;
}

/* =========================================================
   ¿CÓMO LO LOGRAMOS?
   ========================================================= */
.how {
    position: relative;
    color: var(--white);
    padding: 90px 0 80px;
    overflow: hidden;
}
.how-bg { position: absolute; inset: 0; z-index: 0; }
.how-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.how-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.85) 100%);
}
.how-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}
.how-head h2 {
    color: var(--white);
    font-size: clamp(36px, 4.5vw, 60px);
    margin-bottom: 16px;
}
.how-head p {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    max-width: 320px;
}
.how-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.how-card {
    position: relative;
    background: var(--yellow-soft);
    border-radius: var(--radius-md);
    padding: 38px 22px 28px;
    color: var(--ink);
    text-align: center;
    transition: transform .25s ease;
}
.how-card:hover { transform: translateY(-4px); }
.how-num {
    position: absolute;
    top: -16px; left: 18px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: 16px;
}
.how-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    object-fit: contain;
}
.how-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.how-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

.how-foot {
    grid-column: 1 / -1;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}
.how-quote {
    color: var(--white);
    font-size: 20px;
    font-style: italic;
    font-weight: bolder;
    margin: 0;
    max-width: 540px;
}
.how-quote span {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}

/* =========================================================
   SOLUCIONES INTEGRALES
   ========================================================= */
.solutions {
    position: relative;
    padding: 90px 0 90px;
    overflow: hidden;
    background: #f4f4f4;
}
.solutions-bg {
    position: absolute; inset: 0; z-index: 0;
}
.solutions-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.18;
}
.solutions-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.85));
}
.solutions .container { position: relative; z-index: 1; }
.solutions h2 { text-align: center; margin-bottom: 16px; }
.solutions-lead {
    text-align: center;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto 56px;
}
.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 26px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.solution-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}
.solution-card > p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
    min-height: 62px;
}
.solution-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 4 / 3;
}
.solution-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.solution-card:hover .solution-img img { transform: scale(1.06); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    background: var(--white);
    padding: 80px 0 90px;
}
.faq h2 { text-align: center; margin-bottom: 50px; }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: var(--yellow);
    border-radius: 999px;
    transition: border-radius .3s ease, background .25s ease;
    overflow: hidden;
}
.faq-item[open] { border-radius: 22px; }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-caret {
    transition: transform .3s ease;
    font-size: 15px;
}
.faq-item[open] .faq-caret { transform: rotate(180deg); }
.faq-body {
    padding: 0 30px 22px;
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.6;
    animation: fadeDown .3s ease both;
}
.faq-body p { margin: 0; }

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta {
    position: relative;
    overflow: hidden;
    background: var(--yellow);
    padding: 80px 0 90px;
}
.cta-yellow,
.cta-black { display: none; } /* using gradient instead */
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--yellow) 0 55%, var(--yellow-soft) 55% 100%);
}
.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}
.cta-copy { color: var(--ink); }
.cta-copy h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    margin-bottom: 18px;
}
.cta-copy p {
    color: #2a2a2a;
    max-width: 420px;
    margin-bottom: 26px;
}
.cta-info { font-size: 15px; }
.cta-info li { margin-bottom: 8px; }
.cta-info a { font-weight: 500; }
.cta-info a:hover { text-decoration: underline; }

.cta-form {
    background: var(--ink);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    color: var(--white);
}
.cta-form h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 22px;
    text-align: center;
}
.cta-form input {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--white);
    border-radius: 14px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    margin-bottom: 12px;
    outline: none;
    transition: box-shadow .2s ease, transform .2s ease;
}
.cta-form input::placeholder { color: var(--white); }
.cta-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.4);
}

/* Tonnage dropdown — match yellow pill inputs */
.cta-form__select {
    position: relative;
    margin-bottom: 12px;
}
.cta-form__select::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.cta-form select {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--white);
    border-radius: 14px;
    padding: 12px 44px 12px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: box-shadow .2s ease;
}
.cta-form select:focus {
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.4);
}
.cta-form select:invalid { color: rgba(0,0,0,0.55); }

/* Compra/Renta pill toggle */
.cta-form__toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid var(--white);
    padding: 0;
    margin: 0 0 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 4px;
}
.cta-form__toggle-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.cta-form__toggle-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    user-select: none;
    transition: background .2s ease, color .2s ease;
}
.cta-form__toggle-pill:hover {
    background: rgba(255,255,255,0.08);
}
.cta-form__toggle-input:checked + .cta-form__toggle-pill {
    background: var(--yellow);
    color: var(--ink);
}
.cta-form__toggle-input:focus-visible + .cta-form__toggle-pill {
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.45);
}

/* Message textarea — same yellow pill family */
.cta-form textarea {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--white);
    border-radius: 20px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    margin-bottom: 12px;
    outline: none;
    resize: vertical;
    min-height: 90px;
    transition: box-shadow .2s ease;
}
.cta-form textarea::placeholder { color: var(--white) }
.cta-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.4);
}

.quote-cart {
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.07);
}
.quote-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}
.quote-cart__head button {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    padding: 0;
}
.quote-cart__head button:hover { text-decoration: underline; }
.quote-cart__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.quote-cart__list li {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.btn--submit { width: 100%; margin-top: 6px; border-radius: 14px;}

/* Submit status (AJAX response feedback) */
.cta-form__status {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-left: 3px solid var(--yellow);
}
.cta-form__status[hidden] { display: none; }
.cta-form__status.is-success {
    background: rgba(22, 163, 74, 0.18);
    border-left-color: #22c55e;
    color: #d6ffe0;
}
.cta-form__status.is-warning {
    background: rgba(234, 179, 8, 0.18);
    border-left-color: #facc15;
    color: #fff6d6;
}
.cta-form__status.is-error {
    background: rgba(220, 38, 38, 0.18);
    border-left-color: #ef4444;
    color: #ffd6d6;
}
.btn--submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--ink);
    color: var(--yellow);
    padding: 28px 0;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.footer-inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px 28px;
    font-size: 15px;
    font-weight: 500;
}
.footer-inner a {
    color: var(--yellow);
    transition: color .2s ease;
}
.footer-inner a:hover { color: var(--yellow-soft); text-decoration: underline; }

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.2);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
    transform: scale(1.08);
    background: #1ebd5b;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0,0,0,0.25);
    outline: none;
}
.wa-float__icon {
    width: 30px;
    height: 30px;
    display: block;
}
.wa-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .55; }
    100% { transform: scale(1.6); opacity: 0;   }
}
@media (prefers-reduced-motion: reduce) {
    .wa-float::before { animation: none; }
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================
   HERO VARIANT — split (image · card · image)
   Used on Refacciones. Compact 3-column layout where the
   card sits in the middle and two photos flank it at the
   bottom. Overrides the cinematic .hero base.
   ========================================================= */
.hero--split {
    /* Override cinematic flex centering — split needs bottom-anchored composition */
    display: block;
    min-height: clamp(560px, 68vh, 740px);
    padding-top: clamp(80px, 8vw, 110px);
    padding-bottom: 0;
}
.hero--split .hero-inner--split {
    position: relative;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(20px, 3vw, 40px) clamp(24px, 4vw, 48px) 0;
    min-height: clamp(460px, 58vh, 620px);
    z-index: 2;
}
.hero-card--center {
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: min(66%, 880px);
    max-width: none;
    padding: clamp(40px, 4vw, 60px) clamp(48px, 5vw, 80px);
    border-radius: 8px;
    align-items: center;
    z-index: 3;
}
.hero-card--center h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.2vw, 60px);
}
.hero-card--center p {
    margin: 0 auto 26px;
    max-width: 480px;
    font-size: clamp(15px, 1.05vw, 17px);
}
.hero-card--center .btn {
    align-self: center;
}
.hero-side {
    position: absolute;
    bottom: 0;
    z-index: 4;                          /* ABOVE the card so they're never hidden */
    display: block;
    overflow: visible;
    height: clamp(400px, 58vh, 580px);
    pointer-events: none;
}
.hero-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 24px rgba(0,0,0,0.22));
}
.hero-side--left {
    /* Overlap the card's left edge by ~5-8% of viewport */
    left: clamp(0px, 3vw, 60px);
    width: clamp(240px, 26vw, 360px);
}
.hero-side--right {
    /* Sit flush with right edge and overlap card right edge */
    right: clamp(-40px, -1.5vw, 20px);
    width: clamp(420px, 44vw, 640px);
}
.hero-side--left img  { object-position: bottom right; }
.hero-side--right img { object-position: bottom left; }
/* Disable the radial-noise pseudo on split hero — flat backdrop is cleaner with three images */
.hero--split::before { display: none; }

.hero-card .btn--yellow{
    width: 75%;
}

/* =========================================================
   PAGE: REFACCIONES — Catálogo CTA centered block
   ========================================================= */
.catalog-cta {
    background: var(--white);
    padding: 80px 0 70px;
    text-align: center;
}
.catalog-cta-inner {
    max-width: 720px;
}
.catalog-cta h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    margin-bottom: 14px;
}
.catalog-cta p {
    color: var(--gray-700);
    margin-bottom: 30px;
}
.catalog-cta .btn {
    min-width: 280px;
    padding: 16px 40px;
}

/* =========================================================
   PAGE: REFACCIONES — Process (image left, numbered list right)
   ========================================================= */
.process {
    background: var(--white);
    padding: 30px 0 100px;
}
.process-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: start;
}
.process-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.process-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.process-copy h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    margin-bottom: 16px;
}
.process-copy > p {
    color: var(--gray-700);
    margin-bottom: 32px;
    max-width: 520px;
    font-size: 16px;
}

/* extend benefit-list with optional title + body */
.benefit-list .benefit-body { display: block; }
.benefit-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 6px;
    line-height: 1.2;
}
.benefit-body p {
    margin: 0;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.55;
}

/* =========================================================
   BUTTON VARIANT — solid black/ink
   ========================================================= */
.btn--ink {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.btn--ink:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

/* =========================================================
   PAGE: PÓLIZAS — Plan comparison cards
   ========================================================= */
.plans {
    background: var(--white);
    padding: 90px 0 100px;
}
.plans-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(28px, 3.6vw, 46px);
}
.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}
.plan-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    /* No overflow:hidden — the "Más recomendada" badge sits at top:-14px
       and needs to peek out above the card border. */
    transition: transform .25s ease, box-shadow .25s ease;
}
/* Round-corner mask applied to inner content instead of the card itself,
   so the floating badge isn't clipped. */
.plan-card-body { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.plan-card-foot { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.plan-card:hover { transform: translateY(-4px); }
.plan-card--featured {
    box-shadow: 0 18px 40px rgba(255, 195, 0, 0.35);
}
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}
.plan-card-body {
    padding: 36px 36px 24px;
    flex-grow: 1;
}
.plan-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 6px;
}
.plan-subtitle {
    text-align: center;
    color: var(--gray-700);
    font-size: 15px;
    margin: 0 0 26px;
}
.plan-features {
    display: grid;
    gap: 14px;
}
.plan-features li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 15px;
    line-height: 1.45;
}
.plan-check { display: inline-flex; margin-top: 1px; }
.plan-feature-body strong {
    font-weight: 700;
    color: var(--ink);
}
.plan-feature-detail {
    color: var(--gray-700);
    font-size: 13px;
}
.plan-card-foot {
    background: var(--yellow-soft);
    padding: 24px 32px 24px;
    text-align: center;
}
.plan-ideal-title {
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--ink);
}
.plan-ideal-list {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--ink);
}
.plan-ideal-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}
.plan-ideal-list li::before {
    content: '·';
    position: relative;
    left: -10px;
    font-size: 18px;
    line-height: 1;
}

/* =========================================================
   PAGE: PÓLIZAS — Servicio de mantenimiento único
   ========================================================= */
.single-service {
    padding: 30px 0 80px;
    background: var(--white);
}
.single-service-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    align-items: stretch;
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.single-service-image {
    background: var(--ink);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}
.single-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}
.single-service-card {
    padding: 50px 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.single-service-card h2 {
    color: var(--white);
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 18px;
}
.single-service-card p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 14px;
    max-width: 540px;
}
.single-service-card .btn { margin-top: 14px; align-self: center; }

/* =========================================================
   PAGE: PÓLIZAS — Sistema S.O.F.I.A
   ========================================================= */
.sofia {
    padding: 80px 0;
    background: var(--white);
}
.sofia-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.sofia-copy h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 18px;
}
.sofia-copy p {
    color: var(--gray-700);
    font-size: 16px;
    margin-bottom: 14px;
    max-width: 460px;
}
.sofia-copy strong { color: var(--ink); }
.sofia-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.sofia-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* =========================================================
   PAGE: PÓLIZAS — Tranquilidad + stat cards
   ========================================================= */
.tranquility {
    padding: 80px 0 90px;
    background: var(--white);
}
.tranquility-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}
.tranquility-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
}
.tranquility-head p {
    color: var(--gray-700);
    margin: 0;
    max-width: 640px;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.stat-card {
    background: var(--yellow-soft);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 195, 0, 0.45);
}
.stat-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}
.stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: var(--ink);
    margin: 0 0 10px;
}
.stat-label {
    color: var(--ink);
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
}

/* =========================================================
   PAGE: RENTA Y VENTA — ¿Por qué Forza? grid
   ========================================================= */
.why-forza {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}
.why-forza > .container > h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 18px;
}
.why-lead {
    color: var(--gray-700);
    max-width: 760px;
    margin: 0 auto 50px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}
.why-card {
    background: var(--yellow-soft);
    border-radius: var(--radius-md);
    padding: 28px 18px 24px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 195, 0, 0.45);
}
.why-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
}
.why-card h3 {
    font-size: 18px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
    font-weight: 700;
}
.why-card h3 span {
    display: block;
    font-weight: 500;
    font-size: 18px;
    margin-top: 4px;
    color: var(--ink);
    font-weight: 700;
}
.why-cta { margin-top: 12px; }

/* =========================================================
   PAGE: RENTA Y VENTA — Cuando usas litio (yellow band)
   ========================================================= */
.lithium-band {
    position: relative;
    isolation: isolate;
    background: var(--yellow-soft);
    padding: 36px 0 46px;
    margin-bottom: 78px;
    overflow: visible;
}
.lithium-band::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--yellow);
    clip-path: polygon(46% 0, 100% 0, 52% 100%, 0 100%, 0 98%);
}
.lithium-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: clamp(36px, 7vw, 86px);
    align-items: center;
    min-height: 270px;
}
.lithium-band-copy h2 {
    font-size: clamp(30px, 2.8vw, 40px);
    line-height: 1;
    margin-bottom: 30px;
}
.lithium-cols {
    display: grid;
    grid-template-columns: minmax(230px, 0.9fr) minmax(310px, 1.1fr);
    gap: clamp(38px, 5vw, 76px);
    max-width: 830px;
    margin-bottom: 0;
}
.lithium-col h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0 16px;
}
.lithium-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.lithium-bullet::before {
    content: '\2713';
}
.lithium-col ul {
    display: grid;
    gap: 3px;
    list-style: disc;
    padding-left: 18px;
}
.lithium-col li {
    padding-left: 0;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.28;
}
.lithium-col li::before {
    content: none;
}

.lithium-wrapper{
    width: 100%;
}
.lithium-cta {
    position: relative;
    text-align: center;
    z-index: 2;
    min-width: 400px;
    width: 400px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    margin: 0 auto;
    display: block;
}
.lithium-cta:hover {
    background: var(--yellow-dark);
}
.lithium-band-image {
    align-self: end;
    display: flex;
    justify-content: flex-end;
}
.lithium-band-image img {
    width: 100%;
    max-width: 310px;
    max-height: 274px;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.12));
}

/* =========================================================
   PAGE: RENTA Y VENTA — Catalog/product sections
   ========================================================= */
.catalog-section {
    background: var(--white);
    padding: 80px 0;
}
.catalog-section > .container > h2 {
    text-align: center;
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 14px;
}
.catalog-section-lead {
    text-align: center;
    color: var(--gray-700);
    max-width: 780px;
    margin: 0 auto 48px;
}
.catalog-section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 40px;
}
.catalog-section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
}
.catalog-section-head p {
    color: var(--gray-700);
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--yellow);
}
.product-card.is-quoted {
    border-color: var(--yellow);
    box-shadow: 0 16px 36px rgba(255, 195, 0, 0.28);
}
.product-card.is-quoted .btn {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--white);
    display: grid;
    place-items: center;
    padding: 14px;
    margin-bottom: 14px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-code {
    font-size: 18px;
    margin: 0 0 6px;
    color: var(--ink);
}
.product-desc {
    color: var(--gray-700);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

/* =========================================================
   PAGE: RENTA Y VENTA — No sólo es maquinaria (yellow split)
   ========================================================= */
.machinery {
    background: var(--yellow);
    padding: 70px 0;
}
.machinery-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}
.machinery-copy h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 18px;
    line-height: 1.05;
}
.machinery-copy p {
    color: var(--ink);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 540px;
}
.machinery-image img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    object-position: right center;
}

/* =========================================================
   PAGE: RENTA Y VENTA — Compare table
   ========================================================= */
.compare {
    background: var(--white);
    padding: 80px 0;
}
.compare-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}
.compare-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
}
.compare-head p {
    color: var(--gray-700);
    margin: 0;
}
.compare-table-wrap { overflow-x: auto; }
.compare-table {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-size: 16px;
}
.compare-table th {
    text-align: center;
    font-weight: 700;
    color: var(--ink);
    padding: 8px 18px;
    font-size: 16px;
}
.compare-table th:first-child { width: 50%; }
.compare-table tbody tr {
    background: var(--gray-100);
    border-radius: 8px;
}
.compare-table td {
    padding: 14px 18px;
    color: var(--ink);
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.compare-table td:first-child {
    text-align: left;
    border-left: 1px solid #fff;
    border-radius: 8px 0 0 8px;
}
.compare-table td:last-child {
    border-right: 1px solid #fff;
    border-radius: 0 8px 8px 0;
}
.compare-table img {
    width: 22px; height: 22px;
    object-fit: contain;
    display: inline-block;
}

/* =========================================================
   PAGE: RENTA Y VENTA — Contamos con venta (yellow split)
   ========================================================= */
.sales-band {
    background: var(--yellow);
    padding: 70px 0 50px;
}
.sales-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.sales-copy h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    margin-bottom: 16px;
}
.sales-copy p {
    color: var(--ink);
    font-size: 16px;
    max-width: 480px;
    margin: 0;
}
.sales-image img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    object-position: right center;
}

/* =========================================================
   PAGE: ¿POR QUÉ FORZA? — Pillars (dark cards row)
   ========================================================= */
.pillars {
    background: var(--ink);
    color: var(--white);
    padding: 90px 0 100px;
}
.pillars-head {
    text-align: center;
    margin-bottom: 50px;
}
.pillars-head h2 {
    color: var(--white);
    font-size: clamp(28px, 3.6vw, 46px);
    margin-bottom: 18px;
}
.pillars-head p {
    color: rgba(255,255,255,0.78);
    max-width: 720px;
    margin: 0 auto;
}
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.pillar-card {
    position: relative;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 38px 38px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s ease, transform .25s ease;
}
.pillar-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}
.pillar-check {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--yellow);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}
.pillar-card h3 {
    color: var(--white);
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 16px;
}
.pillar-meaning {
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 1.35;
    margin: -8px 0 18px;
}
.pillar-intro {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.pillar-list {
    color: var(--white);
    font-size: 15px;
    margin: 0 0 18px;
    display: grid;
    gap: 4px;
}
.pillar-list li {
    position: relative;
    padding-left: 16px;
}
.pillar-list li::before {
    content: '·';
    position: absolute; left: 0; top: -3px;
    font-size: 18px;
}
.pillar-closing {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px;
}
.pillar-card .btn { margin-top: auto; }

/* =========================================================
   QUOTE BANNER — tall variant
   ========================================================= */
.quote-banner--tall { padding: 140px 0; }
.quote-banner--tall h2 { max-width: 980px; }

/* =========================================================
   PAGE: ¿POR QUÉ FORZA? — Stats strip
   ========================================================= */
.stats-strip {
    background: var(--ink);
    padding: 50px 0;
}
.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    text-align: center;
}
.stat-item-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1;
    color: var(--white);
    margin: 0 0 8px;
}
.stat-item-label {
    color: var(--white);
    font-size: 15px;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
}

/* =========================================================
   PAGE: PÓLIZAS — Banner strip with overlay copy
   ========================================================= */
.banner-strip {
    position: relative;
    overflow: hidden;
    min-height: clamp(220px, 28vw, 340px);
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}
.banner-strip-bg { position: absolute; inset: 0; z-index: 0; }
.banner-strip-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-strip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.72), rgba(15,15,15,0.82));
}
.banner-strip-inner {
    position: relative;
    z-index: 1;
    padding-block: clamp(36px, 4vw, 56px);
}
.banner-strip h2 {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.15;
    margin-bottom: 14px;
}
.banner-strip p {
    color: rgba(255,255,255,0.86);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================================
   PAGE: MONTACARGAS — CATÁLOGO
   ========================================================= */
.catalog {
    background: var(--ink);
    color: var(--white);
    padding: 90px 0 80px;
    text-align: center;
}
.catalog-title {
    color: var(--white);
    font-size: clamp(28px, 3.6vw, 46px);
    margin-bottom: 18px;
}
.catalog-lead {
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    margin: 0 auto 56px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 56px;
}
.model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* Uniform white frame: same size for every card, product centered and
   scaled to fill the frame regardless of source image proportions. */
.model-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--white);
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.model-card:hover .model-image {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(255, 195, 0, 0.25);
}
.model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.model-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    margin: 22px 0 16px;
    line-height: 1.25;
}

.catalog-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    text-align: left;
}
.catalog-help {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.25;
    margin: 0;
}

/* =========================================================
   PAGE: MONTACARGAS — QUOTE BANNER
   ========================================================= */
.quote-banner {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--yellow);
    text-align: center;
}
.quote-banner-bg { position: absolute; inset: 0; z-index: 0; }
.quote-banner-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.quote-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.85));
}
.quote-banner-inner {
    position: relative;
    z-index: 1;
}
.quote-banner h2 {
    color: var(--yellow);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.2;
    max-width: 920px;
    margin: 0 auto;
}

/* =========================================================
   PAGE: MONTACARGAS — SOCIO CONFIABLE
   ========================================================= */
.partner {
    background: var(--white);
    padding: 90px 0;
}
.partner-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.partner-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.partner-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}
.partner-copy h2 {
    font-size: clamp(30px, 3.6vw, 48px);
    margin-bottom: 18px;
}
.partner-copy > p {
    color: var(--gray-700);
    margin-bottom: 26px;
    max-width: 520px;
    font-size: 16px;
}
.benefit-list {
    display: grid;
    gap: 16px;
}
.benefit-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 14px;
    align-items: start;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
}
.benefit-check {
    display: inline-flex;
    margin-top: 2px;
}
.benefit-list strong { font-weight: 700; }

/* =========================================================
   GENERIC: Under construction (legal placeholders)
   Used by /terminos and /aviso-privacidad until real copy ships.
   ========================================================= */
.under-construction {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--yellow-soft) 0%, var(--white) 70%);
    padding: clamp(80px, 8vw, 140px) 0 clamp(70px, 7vw, 110px);
    min-height: 60vh;
    display: flex;
    align-items: center;
}
/* Decorative yellow triangles in the section corners */
.uc-shape {
    position: absolute;
    background: var(--yellow);
    pointer-events: none;
    z-index: 0;
}
.uc-shape--tl {
    top: 0; left: 0;
    width: 26%;
    height: 38%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.85;
}
.uc-shape--br {
    bottom: 0; right: 0;
    width: 22%;
    height: 32%;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    opacity: 0.75;
}
/* Subtle dot pattern on the right side */
.uc-shape--dots {
    background:
        radial-gradient(circle, var(--ink) 1.4px, transparent 1.6px) 0 0 / 14px 14px;
    top: 18%; right: 6%;
    width: 140px;
    height: 140px;
    opacity: 0.18;
}

.under-construction-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.under-construction-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 56px);
    max-width: 660px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 6px 14px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
/* Diagonal yellow corner cut on the card (folded-paper effect) */
.under-construction-corner {
    position: absolute;
    top: 0; right: 0;
    width: 110px;
    height: 110px;
    background: var(--yellow);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
}

.under-construction-icon {
    display: inline-flex;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--yellow-soft);
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.35);
}
.uc-gear {
    animation: ucGearSpin 14s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes ucGearSpin {
    to { transform: rotate(360deg); }
}

.under-construction-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-size: 12px;
    color: var(--gray-700);
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* Pulsing yellow dot before the eyebrow */
.uc-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.6);
    animation: ucDotPulse 1.6s ease-out infinite;
}
@keyframes ucDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 195, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0); }
}

.under-construction-card h1 {
    position: relative;
    display: inline-block;
    font-size: clamp(30px, 3.6vw, 46px);
    margin-bottom: 22px;
    color: var(--ink);
    padding-bottom: 14px;
}
/* Hand-drawn yellow underline under the h1 */
.uc-underline {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 78%;
    height: 12px;
    transform: translateX(-50%);
}

.under-construction-text {
    color: var(--gray-700);
    max-width: 520px;
    margin: 0 auto 28px;
}

/* Animated progress bar */
.under-construction-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 auto 32px;
    max-width: 320px;
}
.uc-progress-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: var(--gray-200);
    overflow: hidden;
    position: relative;
}
.uc-progress-fill {
    position: absolute;
    top: 0; left: -45%;
    height: 100%;
    width: 45%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--yellow-dark), var(--yellow), transparent);
    animation: ucProgressSlide 2.4s ease-in-out infinite;
}
@keyframes ucProgressSlide {
    0%   { left: -45%; }
    100% { left: 100%; }
}
.uc-progress-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.4px;
}

.under-construction-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.under-construction-actions .btn { min-width: 180px; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .uc-gear,
    .uc-dot,
    .uc-progress-fill { animation: none; }
}

/* =========================================================
   GENERIC: Legal pages (Términos, Aviso de privacidad)
   Long-form prose with comfortable reading width.
   ========================================================= */
.legal-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(148deg, var(--yellow) 0 58%, var(--yellow-soft) 58% 100%);
    padding: clamp(120px, 12vw, 170px) 0 clamp(60px, 6vw, 90px);
}
.legal-hero-inner {
    position: relative;
    z-index: 1;
}
.legal-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-size: 12px;
    color: var(--ink);
    margin: 0 0 12px;
}
.legal-hero h1 {
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--ink);
}
.legal-meta {
    color: var(--gray-700);
    font-size: 14px;
    margin: 0;
}

.legal-content {
    background: var(--white);
    padding: clamp(50px, 5vw, 80px) 0 clamp(70px, 7vw, 110px);
}
.legal-article {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.legal-lead {
    font-size: clamp(17px, 1.2vw, 19px);
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 36px;
    padding: 22px 26px;
    border-left: 4px solid var(--yellow);
    background: rgba(255, 195, 0, 0.06);
    border-radius: 0 8px 8px 0;
}
.legal-article h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.25;
    margin: 38px 0 14px;
    color: var(--ink);
    padding-left: 16px;
    border-left: 4px solid var(--yellow);
}
.legal-article p {
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0 0 14px;
}
.legal-article strong { color: var(--ink); font-weight: 700; }
.legal-article a {
    color: var(--yellow-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease;
}
.legal-article a:hover { color: var(--ink); }

.legal-list,
.legal-contact {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    color: var(--gray-700);
}
.legal-list li,
.legal-contact li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
}
.legal-contact li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 14px;
    height: 2px;
    background: var(--yellow);
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.legal-actions .btn { min-width: 200px; }

@media (max-width: 760px) {
    .legal-article h2 { padding-left: 12px; }
    .legal-lead { padding: 18px 20px; }
    .legal-actions .btn { width: 100%; }
}

/* =========================================================
   PAGE: CONTACTO — Hero-like CTA (form first) + urgent section
   ========================================================= */
/* When .cta sits at the very top of the page (no hero above), it needs
   extra top padding to clear the absolutely-positioned header. */
.cta--page {
    padding-top: clamp(140px, 12vw, 180px);
}

/* Urgent contact section — warehouse photo with strong yellow tint */
.contact-urgent {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 7vw, 110px) 0;
    background: var(--yellow-soft);
}
.contact-urgent-bg { position: absolute; inset: 0; z-index: 0; }
.contact-urgent-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.contact-urgent-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255, 195, 0, 0.55), rgba(255, 231, 154, 0.55));
}
.contact-urgent-inner {
    position: relative;
    z-index: 1;
    color: var(--ink);
}
.contact-urgent-head {
    text-align: center;
    margin-bottom: clamp(40px, 4vw, 60px);
}
.contact-urgent-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 12px;
    color: var(--ink);
}
.contact-urgent-head p {
    color: var(--ink);
    font-size: clamp(16px, 1.2vw, 18px);
    max-width: 640px;
    margin: 0 auto;
}

/* 3-up contact cards */
.contact-urgent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    text-align: center;
    margin-bottom: clamp(40px, 4vw, 70px);
}
.contact-urgent-card h3 {
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}
.contact-urgent-name {
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 4px;
}
.contact-urgent-phone {
    margin: 0;
    font-size: 15px;
    color: var(--ink);
}
.contact-urgent-phone a {
    color: var(--ink);
    transition: color .15s ease;
}
.contact-urgent-phone a:hover { color: var(--yellow-dark); }

/* Two emails on opposite ends */
.contact-urgent-emails {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: clamp(24px, 3vw, 40px);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
}
.contact-urgent-emails a {
    color: var(--ink);
    transition: color .15s ease;
}
.contact-urgent-emails a:hover { color: var(--yellow-dark); text-decoration: underline; }

@media (max-width: 760px) {
    .contact-urgent-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-urgent-emails {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }
}

/* =========================================================
   PAGE: NOSOTROS — Intro / Historia (yellow split bg, matches home hero)
   ========================================================= */
.about-intro {
    position: relative;
    overflow: hidden;
    padding: clamp(120px, 12vw, 170px) 0 clamp(80px, 8vw, 110px);
    background: linear-gradient(to bottom right, var(--yellow) 0 58%, var(--yellow-soft) 58% 100%);
}
.about-intro-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.about-intro-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-intro-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.about-intro-copy h1 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    margin-bottom: 22px;
}
.about-intro-copy h1 span {
    color: var(--ink);
    font-weight: 700;
}
.about-intro-copy p {
    color: var(--gray-700);
    margin-bottom: 16px;
    max-width: 560px;
}
.about-intro-copy p:last-child { margin-bottom: 0; }

/* =========================================================
   PAGE: MANTENIMIENTO — Expertise (4 yellow cards)
   ========================================================= */
.expertise {
    background: var(--white);
    padding: clamp(70px, 7vw, 110px) 0;
}
.expertise-title {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 760px;
    font-size: clamp(28px, 3.4vw, 42px);
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.expertise-card {
    background: var(--yellow-soft);
    border-radius: var(--radius-md);
    padding: 36px 26px 32px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 195, 0, 0.35);
}
.expertise-icon {
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
}
.expertise-card h3 {
    font-size: 18px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 12px;
    font-weight: 700;
}
.expertise-card p {
    color: #2a2a2a;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* =========================================================
   PAGE: MANTENIMIENTO — Shared band (foto-back-texture)
   wraps preventivo + correctivo + frase final
   ========================================================= */
.mtto-band {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}
.mtto-band-bg { position: absolute; inset: 0; z-index: 0; }
.mtto-band-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.22;
}
.mtto-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(244,244,244,0.65), rgba(244,244,244,0.85));
}
.mtto-band > section { position: relative; z-index: 1; }

/* Two-column block: image + copy. Reversible. */
.mtto-block {
    padding: clamp(60px, 6vw, 90px) 0;
}
.mtto-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}
.mtto-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.mtto-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.mtto-block--reverse .mtto-image { order: 2; }
.mtto-block--reverse .mtto-copy  { order: 1; }

.mtto-copy h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 18px;
    color: var(--ink);
}
.mtto-copy > p {
    color: var(--gray-700);
    margin-bottom: 22px;
    max-width: 560px;
}
.mtto-copy .benefit-list { margin-bottom: 28px; }
.mtto-cta { padding: 12px 28px; }

/* Final quote on the same textured band (dark text). */
.mtto-quote {
    padding: clamp(40px, 5vw, 80px) 0 clamp(80px, 8vw, 120px);
    text-align: center;
    background-image: url(/assets/images/foto-back-texture.png);
    background-position: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}
.mtto-quote h2 {
    color: var(--ink);
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.25;
    max-width: 960px;
    margin: 0 auto;
}

/* =========================================================
   PAGE: SERVICIOS — Problem sections (centered head + 2-col grid)
   ========================================================= */
.svc-problem {
    background: var(--white);
    padding: clamp(70px, 7vw, 110px) 0;
}
.svc-problem-head {
    text-align: center;
    margin: 0 auto clamp(36px, 4vw, 56px);
    max-width: 780px;
}
.svc-problem-head h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    margin-bottom: 12px;
}
.svc-problem-head p {
    color: var(--gray-700);
    margin: 0;
}
.svc-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}
.svc-problem-grid .benefit-list { gap: 22px; }
.svc-problem-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    display: block;
}
/* Reverse — image left, list right */
.svc-problem--reverse .svc-problem-grid .svc-problem-image { order: 1; }
.svc-problem--reverse .svc-problem-grid .benefit-list       { order: 2; }

/* =========================================================
   PAGE: SERVICIOS — Dark quote banner with CTA button
   (extends .quote-banner — adds spacing for the button)
   ========================================================= */
.quote-banner--cta .quote-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 2.6vw, 38px);
}
.quote-banner--cta .btn { min-width: 200px; }

/* =========================================================
   PAGE: SERVICIOS — "En Forza no es diferente, es mejor"
   ========================================================= */
.svc-mejor {
    background: var(--white);
    padding: clamp(70px, 7vw, 110px) 0;
    text-align: center;
}
.svc-mejor h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 22px;
}
.svc-mejor p {
    color: var(--gray-700);
    max-width: 760px;
    margin: 0 auto;
}

/* =========================================================
   PAGE: SERVICIOS — "Forza te cuida" (copy left + image right)
   ========================================================= */
.svc-cuida {
    background: var(--white);
    padding: clamp(40px, 5vw, 80px) 0 clamp(70px, 7vw, 110px);
}
.svc-cuida-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}
.svc-cuida-copy h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    margin-bottom: 20px;
}
.svc-cuida-copy p {
    color: var(--gray-700);
    margin-bottom: 14px;
    max-width: 520px;
}
.svc-cuida-copy .btn { margin-top: 14px; }
.svc-cuida-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.svc-cuida-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* =========================================================
   PAGE: MONTACARGAS TEU — Hero eyebrow ("Distribuidor oficial")
   ========================================================= */
.hero-eyebrow {
    position: absolute;
    top: clamp(28px, 3vw, 48px);
    right: clamp(28px, 4vw, 64px);
    z-index: 4;
    color: var(--white);
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0.5px;
    pointer-events: none;
}

/* =========================================================
   PAGE: MONTACARGAS TEU — "Más que un montacargas"
   ========================================================= */
.teu-strategic {
    background: var(--white);
    padding: clamp(70px, 7vw, 110px) 0;
}
.teu-strategic-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}
.teu-strategic-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.teu-strategic-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.teu-strategic-copy h2 {
    font-size: clamp(30px, 3.4vw, 46px);
    margin-bottom: 8px;
    color: var(--ink);
}
.teu-strategic-accent {
    color: var(--yellow-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 28px);
    margin-bottom: 22px;
}
.teu-strategic-copy > p:not(.teu-strategic-accent) {
    color: var(--gray-700);
    max-width: 520px;
}

/* =========================================================
   PAGE: MONTACARGAS TEU — Tipos de montacargas (dark section)
   ========================================================= */
.teu-types {
    background: var(--ink);
    color: var(--white);
    padding: clamp(70px, 7vw, 110px) 0;
}
.teu-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2vw, 28px);
    margin-bottom: clamp(40px, 4vw, 60px);
}
.teu-type-card {
    background: var(--ink);
    border-radius: var(--radius-md);
    padding: clamp(22px, 2vw, 30px) clamp(18px, 1.6vw, 24px) clamp(22px, 2vw, 30px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: transform .25s ease, box-shadow .25s ease;
}
.teu-type-card:hover {
    transform: translateY(-4px);
}
.teu-type-image {
    background: var(--white);
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}
.teu-type-image img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    display: block;
}
.teu-type-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 18px;
    min-height: 36px;
    color: var(--white);
}
.teu-types-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.teu-types-help {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

/* =========================================================
   PAGE: MONTACARGAS TEU — Diferenciadores (4 portrait cards)
   ========================================================= */
.teu-diff {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 7vw, 110px) 0;
    background: var(--gray-100);
}
.teu-diff-bg { position: absolute; inset: 0; z-index: 0; }
.teu-diff-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.22;
}
.teu-diff-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(244,244,244,0.55), rgba(244,244,244,0.82));
}
.teu-diff-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2.2vw, 32px);
}
.teu-diff-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.teu-diff-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.teu-diff-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}
.teu-diff-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
}

/* =========================================================
   PAGE: NOSOTROS — Shared band (texture bg) wrapping phases + contact
   ========================================================= */
.about-band {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
    background-image: url(/assets/images/foto-back-texture.png);
    background-position: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-band-bg { position: absolute; inset: 0; z-index: 0; }
.about-band-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.18;
}
.about-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(244,244,244,0.6), rgba(244,244,244,0.85));
}
.about-band > section { position: relative; z-index: 1; }

/* =========================================================
   PAGE: NOSOTROS — Phases (dark card sitting on shared band)
   ========================================================= */
.about-phases {
    padding: clamp(70px, 7vw, 110px) 0 clamp(40px, 4vw, 60px);
}
.about-phases-inner {
    display: flex;
    justify-content: center;
}
.phases-card {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 70px) clamp(32px, 5vw, 80px);
    max-width: 820px;
    width: 100%;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.phases-card h2 {
    color: var(--white);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2;
    margin-bottom: 14px;
}
.phases-card-lead {
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: clamp(16px, 1.1vw, 17px);
}
.phases-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: left;
}
.phases-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: start;
}
.phases-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 2px;
}
.phases-item-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}
.phases-item-text {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* =========================================================
   PAGE: NOSOTROS — Contacto directo (3 columns on shared band)
   ========================================================= */
.about-contact {
    padding: clamp(40px, 4vw, 60px) 0 clamp(70px, 7vw, 110px);
    color: var(--ink);
}
.about-contact-title {
    color: var(--ink);
    text-align: center;
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 42px;
}
.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 56px);
    text-align: center;
}
.about-contact-card h3 {
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}
.about-contact-name {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 6px;
}
.about-contact-phone,
.about-contact-email {
    color: var(--gray-700);
    font-size: 15px;
    margin-bottom: 4px;
    word-break: break-word;
}
.about-contact-phone a,
.about-contact-email a {
    color: inherit;
    transition: color .15s ease;
}
.about-contact-phone a:hover,
.about-contact-email a:hover { color: var(--yellow-dark); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .site-header {
        position: absolute;
    }
    .header-inner {
        padding: 22px 32px;
        max-width: var(--container);
        gap: 24px;
    }
    .brand-logo { height: 36px; }
    .primary-nav { flex: 1; }
    .primary-nav > ul { gap: clamp(10px, 1.2vw, 20px); }
    .nav-link { font-size: 15px; }

    /* Hero collapses: card on top, image full-width below */
    .hero {
        display: block;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 0;
    }
    .hero-inner {
        padding: 0 clamp(24px, 4vw, 36px);
    }
    .hero .hero-card {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        padding: 36px 32px;
        border-radius: 8px;
    }
    .hero .hero-card h1 { font-size: clamp(38px, 6vw, 54px); }
    .hero .hero-card .btn { align-self: flex-start; }
    .hero-card--center .btn { align-self: center; }
    .hero .hero-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 24px auto 0;
        justify-content: center;
        animation: none;
    }
    .hero-image img {
        position: relative;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 360px;
        object-position: center bottom;
        filter: none;
    }
    /* Scroll indicator looks weird when card+image stack — hide it */
    .hero-scroll { display: none; }

    .opera-inner { grid-template-columns: 1fr; }
    .opera-image img { margin: 0 auto; }

    .how-inner { grid-template-columns: 1fr; }
    .how-cards { grid-template-columns: repeat(3, 1fr); }
    .how-foot { grid-template-columns: 1fr; text-align: center; gap: 16px; }
    .how-quote { margin: 0 auto; }

    .solution-cards { grid-template-columns: repeat(2, 1fr); }
    .solution-cards .solution-card:nth-child(3) { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }

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

    .cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .cta::before { background: linear-gradient(180deg, var(--yellow) 0 50%, var(--ink) 50% 100%); }

    /* Montacargas page */
    .model-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .catalog-footer { grid-template-columns: 1fr; text-align: center; gap: 18px; }
    .catalog-help { text-align: center; }
    .partner-inner { grid-template-columns: 1fr; gap: 32px; }
    .partner-image img { aspect-ratio: 4 / 3; }

    /* Refacciones page */
    .hero--split .hero-inner--split {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 40px;
        gap: 24px;
    }
    .hero-card--center { padding: 36px 30px; order: 1; }
    .hero-side {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        display: none;
    }
    /* Show one combined image strip below the card on tablet (lighter file = the right one) */
    .hero-side--right { display: flex; order: 2; max-width: 460px; margin: 0 auto; }
    .hero-side--right img { max-height: 320px; }
    .process-inner { grid-template-columns: 1fr; gap: 32px; }
    .process-image img { aspect-ratio: 4 / 3; }

    /* Pólizas page */
    .plan-grid { grid-template-columns: 1fr; gap: 40px; }
    .single-service-inner { grid-template-columns: 1fr; }
    .single-service-image { aspect-ratio: 4 / 3; }
    .single-service-card { padding: 36px 32px; align-items: center; text-align: center; }
    .sofia-inner { grid-template-columns: 1fr; gap: 32px; }
    .tranquility-head { grid-template-columns: 1fr; gap: 16px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }

    /* Renta y venta + Por qué Forza pages */
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid .why-card:nth-child(4),
    .why-grid .why-card:nth-child(5) { grid-column: span 1; }

    /* Por qué Forza page */
    .pillar-grid { grid-template-columns: 1fr; gap: 22px; }
    .pillar-card { padding: 32px 28px 26px; }
    .stats-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
    .quote-banner--tall { padding: 100px 0; }
    .lithium-band-inner { grid-template-columns: 1fr; }
    .lithium-band-image img { max-height: 280px; object-position: center; }
    .lithium-cols { grid-template-columns: 1fr; gap: 22px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid--two { max-width: none; }
    .catalog-section-head { grid-template-columns: 1fr; gap: 14px; align-items: start; }
    .machinery-inner { grid-template-columns: 1fr; gap: 32px; }
    .machinery-image img { max-height: 280px; object-position: center; }
    .compare-head { grid-template-columns: 1fr; gap: 14px; align-items: start; }
    .sales-band-inner { grid-template-columns: 1fr; gap: 30px; }
    .sales-image img { max-height: 260px; object-position: center; }

    /* Nosotros */
    .about-intro-inner { grid-template-columns: 1fr; gap: 36px; }
    .about-contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .phases-card { padding: 36px 28px; }

    /* Mantenimiento */
    .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .mtto-block-inner { grid-template-columns: 1fr; gap: 32px; }
    .mtto-block--reverse .mtto-image { order: 1; }
    .mtto-block--reverse .mtto-copy  { order: 2; }
    .mtto-image img { max-height: 360px; object-position: center; }

    /* Servicios */
    .svc-problem-grid { grid-template-columns: 1fr; gap: 32px; }
    .svc-problem-image img { max-height: 420px; object-position: center; }
    .svc-problem--reverse .svc-problem-grid .svc-problem-image { order: 1; }
    .svc-problem--reverse .svc-problem-grid .benefit-list       { order: 2; }
    .svc-cuida-inner { grid-template-columns: 1fr; gap: 32px; }
    .svc-cuida-image img { max-height: 360px; }

    /* TEU */
    .teu-strategic-inner { grid-template-columns: 1fr; gap: 32px; }
    .teu-strategic-image img { max-height: 380px; object-position: center; }
    .teu-types-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .teu-diff-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 760px) {
    .container { padding-inline: 22px; }
    .header-inner { padding-inline: 22px; }

    /* mobile nav */
    .nav-toggle { display: flex; }
    .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 80;
        margin-left: auto;
    }
    .header-inner { justify-content: space-between; }
    .primary-nav {
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--yellow);
        transform: translateX(100%);
        transition: transform .3s ease;
        padding: 30px 22px;
        overflow-y: auto;
    }
    .primary-nav.is-open { transform: translateX(0); box-shadow: var(--shadow-md); }
    .primary-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .primary-nav .nav-link {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        font-size: 16px;
        width: 100%;
        justify-content: space-between;
        color: var(--ink);
    }
    .nav-link::after { display: none; }
    /* Mobile drawer — CTA stays as a dark pill but with sensible padding */
    .primary-nav .nav-link--cta {
        padding: 14px 22px;
        margin-top: 14px;
        border-bottom: 0;
        justify-content: center;
        border-radius: 999px;
    }

    .hero-inner { padding: 32px 22px; }
    .hero .hero-card {
        width: 100%;
        max-width: calc(100vw - 44px);
        padding: 28px 22px;
        overflow: hidden;
    }
    .hero .hero-card h1 { font-size: 30px; }
    .hero.hero--renta .hero-card h1 { font-size: 27px; line-height: 1.08; }
    .hero .hero-card p { font-size: 15px; line-height: 1.45; }
    .hero .hero-card .btn { width: 100%; min-width: 0; }
    /* On phones we hide all hero imagery — the card alone reads better
       and avoids odd cropping/positioning under the card. */
    .hero .hero-image,
    .hero-side,
    .hero-scroll { display: none; }
    /* Compact the hero so it doesn't leave a tall yellow band below the card */
    .hero { min-height: 0; padding-bottom: 24px; }
    .hero--split { min-height: 0; padding-bottom: 24px; }
    .hero--split .hero-inner--split { min-height: 0; }

    .problem-cards { grid-template-columns: 1fr; }
    .solution-cards { grid-template-columns: 1fr; }
    .solution-cards .solution-card:nth-child(3) { grid-column: auto; max-width: none; }

    .how-cards { grid-template-columns: 1fr; gap: 28px; }
    .how-card { padding-top: 30px; }

    .opera, .problems, .how, .solutions, .faq, .cta,
    .catalog, .quote-banner, .partner,
    .catalog-cta, .process,
    .plans, .single-service, .sofia, .tranquility { padding-top: 56px; padding-bottom: 60px; }

    /* Montacargas page — phone */
    .model-grid { grid-template-columns: 1fr; gap: 26px; }
    .model-image { aspect-ratio: 4 / 5; }
    .quote-banner { padding: 80px 0; }

    /* Refacciones page — phone */
    .catalog-cta .btn { min-width: 0; width: 100%; }
    .benefit-title { font-size: 20px; }

    /* Pólizas page — phone */
    .plan-card-body { padding: 30px 24px 18px; }
    .plan-card-foot { padding: 22px 24px; }
    .stat-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 24px 20px; }
    .single-service-card h2 { font-size: 26px; }
    .banner-strip { min-height: 200px; }
    .banner-strip h2 { font-size: 24px; }
    .banner-strip p { font-size: 14px; }

    /* Renta y venta + Por qué Forza pages — phone */
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .product-grid,
    .product-grid--two { grid-template-columns: 1fr; gap: 20px; }
    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .pillars { padding: 60px 0 70px; }
    .quote-banner--tall { padding: 80px 0; }
    .compare-table th,
    .compare-table td { padding: 12px 10px; font-size: 13px; }
    .compare-table th:first-child,
    .compare-table td:first-child { font-size: 13px; }
    .why-forza, .lithium-band, .catalog-section, .machinery,
    .compare, .sales-band { padding-top: 56px; padding-bottom: 60px; }

    /* Nosotros — phone */
    .about-intro { padding: 80px 0 60px; }
    .about-intro-copy h1 { font-size: 24px; }
    .phases-item { grid-template-columns: 44px 1fr; gap: 16px; }
    .phases-num { width: 36px; height: 36px; font-size: 18px; }
    .about-contact { padding: 60px 0; }

    /* Mantenimiento — phone */
    .expertise-grid { grid-template-columns: 1fr; }
    .expertise-card { padding: 28px 22px; }
    .mtto-block { padding: 50px 0; }
    .mtto-quote { padding: 30px 0 70px; }
    .mtto-quote h2 br { display: none; }

    /* Servicios — phone */
    .svc-problem { padding: 56px 0 60px; }
    .svc-mejor { padding: 56px 0 60px; }
    .svc-mejor h2 br { display: none; }
    .svc-cuida { padding: 30px 0 60px; }

    /* TEU — phone */
    .teu-types-grid { grid-template-columns: 1fr; }
    .teu-diff-grid { grid-template-columns: 1fr; gap: 20px; }
    .teu-types-footer { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
    .hero-eyebrow { display: none; }

    .footer-inner ul {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    .hero .hero-card h1 { font-size: 32px; }
    .hero.hero--renta .hero-card h1 { font-size: 27px; }
    .btn { padding: 12px 28px; font-size: 15px; }
    .cta-form { padding: 26px 20px; }
    .wa-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    .wa-float__icon { width: 28px; height: 28px; }
}

/* =========================================================
   SISTEMA SOFIA — POPUP / MODAL
   ========================================================= */
.sofia-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.sofia-modal[hidden] {
    /* Browser default: display:none when hidden attribute is set.
       JS removes the attribute on open so the flex layout + transition kick in. */
    display: none;
}
.sofia-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.sofia-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.sofia-modal-dialog {
    position: relative;
    width: min(1080px, 100%);
    max-height: calc(100vh - 64px);
    overflow: hidden;
    border-radius: 22px;
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(12px) scale(.98);
    transition: transform .3s ease;
}
.sofia-modal.is-open .sofia-modal-dialog {
    transform: translateY(0) scale(1);
}

/* Background image inside dialog */
.sofia-modal-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.sofia-modal-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: .55;
}
.sofia-modal-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 45%, rgba(10,10,10,0.85) 100%);
}

/* Close button (yellow circle, top-right) */
.sofia-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(255, 195, 0, 0.35);
    transition: transform .2s ease, background .2s ease;
}
.sofia-modal-close:hover {
    background: var(--yellow-dark);
    transform: rotate(90deg);
}
.sofia-modal-close:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Scrollable inner content */
.sofia-modal-inner {
    position: relative;
    z-index: 2;
    padding: 48px 56px 52px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) transparent;
}
.sofia-modal-inner::-webkit-scrollbar { width: 8px; }
.sofia-modal-inner::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 8px;
}

/* Header row: titles on left, yellow callout on right */
.sofia-modal-head {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-right: 56px; /* leave room for the close button */
}
.sofia-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.9;
    margin: 0;
    letter-spacing: 1px;
}
.sofia-modal-subtitle {
    margin: 10px 0 0;
    font-size: 16px;
    color: #e6e6e6;
    font-weight: 400;
}
.sofia-modal-callout {
    background: var(--yellow);
    color: var(--ink);
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(255, 195, 0, 0.18);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}
.sofia-modal-callout p {
    margin: 0;
}
.sofia-modal-callout p + p {
    margin-top: 6px;
}

/* Content blocks */
.sofia-modal-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sofia-block {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 22px;
    align-items: flex-start;
}
.sofia-block-icon {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sofia-block-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sofia-block-body { min-width: 0; }
.sofia-block-title {
    font-family: var(--font-display);
    color: var(--yellow);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.sofia-block-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sofia-block-list > li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #f2f2f2;
}
.sofia-block-list > li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f2f2f2;
    font-weight: 700;
}
.sofia-block-sublist-wrap {
    padding-left: 0 !important;
}
.sofia-block-sublist-wrap::before { content: none !important; }
.sofia-block-sublist {
    list-style: none;
    margin: 4px 0 0;
    padding: 0 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sofia-block-sublist > li {
    position: relative;
    padding-left: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #f2f2f2;
}
.sofia-block-sublist > li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f2f2f2;
}

/* Lock body scroll when any popup is open */
body.popup-open {
    overflow: hidden;
}

/* =========================================================
   METODOLOGÍA FORZA — POPUP / MODAL
   ========================================================= */
.met-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.met-modal[hidden] { display: none; }
.met-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.met-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.met-modal-dialog {
    position: relative;
    width: min(1180px, 100%);
    max-height: calc(100vh - 64px);
    overflow: hidden;
    border-radius: 22px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(12px) scale(.98);
    transition: transform .3s ease;
}
.met-modal.is-open .met-modal-dialog {
    transform: translateY(0) scale(1);
}

/* Diagonal yellow split background */
.met-modal-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.met-modal-bg::before {
    /* bright yellow base (whole surface) */
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow);
}
.met-modal-bg::after {
    /* soft yellow diagonal slab covering bottom-right portion */
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow-soft);
    clip-path: polygon(100% 0%, 100% 100%, 18% 100%);
}

/* Dark circular close button */
.met-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: transform .2s ease, background .2s ease;
}
.met-modal-close:hover {
    background: #000;
    transform: rotate(90deg);
}
.met-modal-close:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
}

/* Inner scrollable content */
.met-modal-inner {
    position: relative;
    z-index: 2;
    padding: 56px 64px 48px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--ink) transparent;
}
.met-modal-inner::-webkit-scrollbar { width: 8px; }
.met-modal-inner::-webkit-scrollbar-thumb {
    background: var(--ink);
    border-radius: 8px;
}

/* Head */
.met-modal-head {
    text-align: center;
    margin-bottom: 56px;
    padding-inline: 32px;
}
.met-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}
.met-modal-subtitle {
    margin: 0 auto;
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--ink);
    line-height: 1.5;
    max-width: 600px;
}

/* 5-column step grid */
.met-modal-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    align-items: start;
}
.met-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}
.met-step-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.met-step-icon svg {
    width: 100%;
    height: 100%;
}
.met-step-label {
    margin: 0;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.35;
    color: var(--ink);
    font-weight: 500;
    max-width: 18ch;
}

/* Closing statement */
.met-modal-foot {
    text-align: center;
    padding-top: 8px;
}
.met-modal-foot p {
    margin: 0;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.3;
    color: var(--ink);
}
.met-modal-foot p + p {
    margin-top: 4px;
    font-weight: 700;
}
.met-modal-foot strong { font-weight: 700; }

/* Tablet */
@media (max-width: 960px) {
    .met-modal-inner { padding: 48px 36px 40px; }
    .met-modal-head { margin-bottom: 36px; }
    .met-modal-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
        margin-bottom: 40px;
    }
    .met-step { gap: 18px; }
    .met-modal-bg::after {
        clip-path: polygon(100% 0%, 100% 100%, 10% 100%);
    }
}

/* Phone */
@media (max-width: 600px) {
    .met-modal { padding: 0; }
    .met-modal-dialog {
        border-radius: 0;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
    }
    .met-modal-inner {
        padding: 30px 22px 36px;
        max-height: 100vh;
    }
    .met-modal-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .met-modal-head { margin-bottom: 28px; padding-inline: 0; }
    .met-modal-title { font-size: 34px; }
    .met-modal-subtitle { font-size: 14px; }
    .met-modal-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        margin-bottom: 32px;
    }
    .met-step-icon { width: 60px; height: 60px; }
    .met-step-label { font-size: 13px; max-width: 16ch; }
    .met-modal-foot p { font-size: 16px; }
    .met-modal-bg::after {
        clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .sofia-modal-inner { padding: 40px 32px 44px; }
    .sofia-modal-head {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-right: 52px;
    }
    .sofia-modal-callout { font-size: 14px; }
    .sofia-block { grid-template-columns: 72px 1fr; gap: 18px; }
    .sofia-block-icon { width: 64px; height: 64px; }
}

/* Phone */
@media (max-width: 600px) {
    .sofia-modal { padding: 0; }
    .sofia-modal-dialog {
        border-radius: 0;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
    }
    .sofia-modal-inner {
        padding: 28px 20px 36px;
        max-height: 100vh;
    }
    .sofia-modal-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .sofia-modal-title { font-size: 48px; }
    .sofia-modal-subtitle { font-size: 14px; }
    .sofia-modal-callout { padding: 14px 16px; }
    .sofia-block { grid-template-columns: 56px 1fr; gap: 14px; }
    .sofia-block-icon { width: 52px; height: 52px; }
    .sofia-block-title { font-size: 20px; }
    .sofia-block-list > li,
    .sofia-block-sublist > li { font-size: 14px; }
}
