/* ==========================================================================
   Reset Fitness Ibiza — Main Stylesheet
   Pixel-perfect from Pencil prototype (RESET_Master landing.pen)
   ========================================================================== */

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    --accent:    #04fff6;
    --dark:      #1e1e1e;
    --body-gray: #3b3b3b;
    --white:     #ffffff;

    --font-heading: 'Core Sans C', Arial, sans-serif;
    --font-body:    'JetBrains Mono', monospace;
}

/* ==========================================================================
   2. @font-face — Core Sans C (7 weights, WOFF2)
   ========================================================================== */

@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-95Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-85Heavy.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-75ExtraBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-55Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-35Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-25ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-15Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   3. Reset
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.04;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ==========================================================================
   4. Shared Typography Helpers
   ========================================================================== */

.jbm-light  { font-family: var(--font-body); font-weight: 300; }
.jbm-bold   { font-family: var(--font-body); font-weight: 800; }
.jbm-thin   { font-family: var(--font-body); font-weight: 200; }

/* Desktop/Mobile visibility helpers */
.mob-only   { display: none; }

/* ==========================================================================
   5. Shared CTA Button (used in Section-01, Section-02, Contacto)
   ========================================================================== */

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, var(--accent) 50%, var(--dark) 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    padding: 20px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background-position 0.4s ease-out, color 0.3s ease-out;
}

.btn-cta:hover {
    background-position: left center;
    color: var(--dark);
}

.btn-cta-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    transition: transform 0.3s ease-out;
}

.btn-cta-icon svg {
    width: 100%;
    height: 100%;
}

.btn-cta-icon svg path {
    fill: var(--accent);
    transition: fill 0.3s ease-out;
}

.btn-cta:hover .btn-cta-icon {
    transform: rotate(45deg) translateX(4px);
}

.btn-cta:hover .btn-cta-icon svg path {
    fill: var(--dark);
}

.btn-cta-desc {
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 12px;
    letter-spacing: -0.4px;
    line-height: 1;
    text-align: center;
    color: var(--dark);
    margin-top: 9px;
}

.btn-cta-desc--dark {
    color: var(--dark);
}

/* ==========================================================================
   6. HERO SECTION — #1e1e1e, 1440x900
   ========================================================================== */

.section-hero {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--dark);
    background-image: url('../img/hero-desktop-bg2.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-logo {
    position: absolute;
    top: 40px;
    left: 64px;
    width: 150px;
    height: 84px;
    z-index: 2;
}

.hero-logo svg {
    width: 100%;
    height: 100%;
}

.hero-logo svg path {
    fill: var(--white);
}

.hero-content {
    position: absolute;
    top: 180px;
    left: 204px;
    width: 800px;
    z-index: 2;
}

/* Title block: position relative, 800x500, layout:none (children absolute) */
.hero-title-block {
    position: relative;
    width: 800px;
    height: 500px;
}

.hero-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 128px;
    line-height: 0.78;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-o-space {
    display: inline-block;
    width: 85px;
    letter-spacing: normal;
}

.hero-dumbell {
    position: absolute;
    top: 366px;
    left: 82px;
    width: 85px;
    height: 125px;
}

.hero-dumbell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Subtitle block: x:420, y:105, flex align-end gap:2 */
.hero-subtitle {
    position: absolute;
    top: 105px;
    left: 405px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.hero-subtitle-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 280px;
}

.hero-subtitle-line1 {
    display: flex;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.04;
    color: var(--white);
}

.hero-subtitle-line1 .jbm-light {
    font-weight: 300;
}

.hero-subtitle-line1 .jbm-bold {
    font-weight: 800;
}

.hero-subtitle-rest {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.04;
    color: var(--white);
}

/* Hero 2bars — override to white (prototype overrides cyan to white) */
.hero-2bars {
    flex-shrink: 0;
    width: 31px;
    height: 36px;
    margin-left: -20px;
}

.hero-2bars svg {
    width: 100%;
    height: 100%;
}

.hero-2bars svg path {
    fill: var(--white);
}

/* --- Scroll indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    z-index: 5;
    opacity: 0.7;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator::before,
.scroll-indicator::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translateX(-50%) rotate(45deg);
}

.scroll-indicator::before {
    top: 0;
    opacity: 0.4;
}

.scroll-indicator::after {
    top: 12px;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Dark variant for sections with light backgrounds */
.scroll-indicator--dark::before,
.scroll-indicator--dark::after {
    border-right-color: var(--dark);
    border-bottom-color: var(--dark);
}

/* ==========================================================================
   7. SECTION-01 — Photo background, 1440x900
   ========================================================================== */

.section-01 {
    position: relative;
    width: 100%;
    min-height: 900px;
    overflow: visible;
    background-image: url('../img/section01-bg.jpg');
    background-size: cover;
    background-position: center center;
}

.s01-logo {
    position: absolute;
    top: 59px;
    left: 77px;
    width: 150px;
    height: 84px;
    z-index: 2;
}

.s01-logo svg {
    width: 100%;
    height: 100%;
}

/* Override ALL logo paths to black */
.s01-logo svg path {
    fill: var(--dark);
}

.s01-arrow {
    position: absolute;
    top: 69px;
    left: 379px;
    width: 99px;
    height: 72px;
    z-index: 2;
}

.s01-arrow svg {
    width: 100%;
    height: 100%;
}

/* Content frame: x:58, y:184, 894x550 */
.s01-content {
    position: absolute;
    top: 184px;
    left: 58px;
    width: 894px;
    height: 550px;
}

.s01-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 90px;
    line-height: 0.87;
    color: var(--dark);
    text-transform: uppercase;
    width: 914px;
}

.s01-subtitle {
    position: absolute;
    top: 483px;
    left: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.04;
    color: #000000;
    width: 300px;
}

/* Icons: x:396 y:247 in content frame */
.s01-icons {
    position: absolute;
    top: 247px;
    left: 396px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.s01-ico-circle {
    width: 37px;
    height: 37px;
}

.s01-ico-circle svg {
    width: 100%;
    height: 100%;
}

.s01-ico-2bars {
    width: 32px;
    height: 37px;
}

.s01-ico-2bars svg {
    width: 100%;
    height: 100%;
}

/* Bottom row: y:755, full width, padding 0 62, flex gap:80 — wraps on narrow viewports */
.s01-bottom {
    position: absolute;
    left: 0;
    top: 755px;
    width: 100%;
    padding: 0 58px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
    align-items: flex-start;
}

.s01-sub-hero {
    position: relative;
    width: 668px;
    min-width: 400px;
    flex-shrink: 1;
    height: 94px;
}

.s01-ya-sabes {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 40px;
    line-height: 0.87;
    color: var(--accent);
    width: 442px;
}

.s01-ciclo-row {
    position: absolute;
    top: 0;
    left: 379px;
}

.s01-ciclo {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.04;
    color: var(--dark);
    width: 299px;
}

/* CTA in Section-01 */
.s01-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 317px;
}

/* ==========================================================================
   8. SECTION-02 / METODO — bg: #04fff6 (cyan), 1440x900
   ========================================================================== */

.section-02 {
    position: relative;
    width: 100%;
    min-height: 900px;
    overflow: hidden;
    background-color: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

/* Header: centered, flex align-end gap:25 */
.s02-header {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    justify-content: center;
    padding-top: 64px;
}

/* Reset Method logo: single SVG component (brand/the-reset-method) */
.s02-logo {
    flex-shrink: 0;
}

.s02-logo svg {
    height: 78px;
    width: auto;
}

/* Description block */
.s02-desc-block {
    position: relative;
    width: 280px;
    height: 60px;
}

.s02-desc-lines {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.04;
    color: var(--dark);
}

.s02-desc-lines p {
    display: flex;
    gap: 4px;
}

/* Combo-pesas: Pencil XOpvB scaled 50% — total ~89x65
   Original: pesas(0,0 90x130), circle(65,50 55x55), paralelas(130,52 48x55)
   Scaled:   pesas(0,0 45x65), circle(33,25 27x27), paralelas(65,26 24x28) */
.s02-combo-pesas {
    position: absolute;
    top: 5px;
    left: 215px;
    width: 89px;
    height: 65px;
}

/* Image in front (z-index 2) */
.combo-pesas-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 65px;
    object-fit: contain;
    z-index: 2;
}

/* Circle behind pesas (black, z-index 1) — overlaps bottom-right of image */
.combo-circle {
    position: absolute;
    left: 33px;
    top: 25px;
    width: 27px;
    height: 27px;
    z-index: 1;
}

.combo-circle svg {
    width: 100%;
    height: 100%;
}

.combo-circle svg path,
.combo-circle svg circle,
.combo-circle svg ellipse {
    fill: var(--dark);
}

/* Parallel lines (black, z-index 1) — aligned bottom with circle */
.combo-2bars {
    position: absolute;
    left: 65px;
    top: 26px;
    width: 24px;
    height: 28px;
    z-index: 1;
}

.combo-2bars svg {
    width: 100%;
    height: 100%;
}

.combo-2bars svg path {
    fill: var(--dark);
}

/* Return arrow hidden in this combo — not in XOpvB original */
.combo-retourn {
    display: none;
}

/* Main content: centered, max-width container */
.s02-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1268px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 86px 0;
}

/* Phases row: flex with uniform 100px gap, top-aligned */
.phases-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
}

/* Phase card: 370px, flex-col align-center gap:5 */
.phase-card {
    width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.phase-label {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.04;
    color: #000000;
    text-align: center;
    width: 100%;
}

.phase-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 65px;
    line-height: 1;
    letter-spacing: -2.6px;
    color: var(--white);
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.phase-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.04;
    color: #000000;
    text-align: center;
    width: 100%;
}

.phase-desc p {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* Upgrade block: 500px wide */
.upgrade-block {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.upgrade-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 75px;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--dark);
    text-align: center;
    width: 100%;
}

/* Phase separators — desktop: hidden */
.phase-sep {
    display: none;
}

/* CTA wrapper */
.s02-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 317px;
    padding-top: 30px;
}

/* ==========================================================================
   9. SECTION-CONTACTO — bg: white, 1440x900
   ========================================================================== */

.section-contacto {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    background-color: var(--white);
}

/* Photo: x:0 y:0, 960x640 */
.contacto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 640px;
    overflow: hidden;
}

.contacto-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

/* Garantia block: x:450 y:431, 400x140 */
.contacto-garantia {
    position: absolute;
    top: 431px;
    left: 580px;
    width: 400px;
    height: 140px;
    z-index: 2;
}

.garantia-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    color: var(--white);
    text-align: left;
}

.garantia-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: var(--white);
    margin-top: 8px;
    max-width: 380px;
    width: 100%;
}

.garantia-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.garantia-retourn {
    width: 30px;
    height: 22px;
}

.garantia-retourn svg {
    width: 100%;
    height: 100%;
}

.garantia-sin-letra {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
}

.garantia-2bars {
    width: 21px;
    height: 22px;
}

.garantia-2bars svg {
    width: 100%;
    height: 100%;
}

/* Form header: x:1000 y:0, 441x87, bg cyan */
.contacto-form-header {
    position: absolute;
    top: 0;
    left: 1000px;
    width: 441px;
    height: 87px;
    background-color: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 19px 48px;
}

.form-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -1.05px;
    line-height: 1;
    color: var(--dark);
}

.form-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: -0.53px;
    line-height: 1;
    color: var(--dark);
    margin-top: 6px;
}

/* Form fields: x:1027 y:129, w:389, flex-col gap:16 */
.contacto-form {
    position: absolute;
    top: 129px;
    left: 1027px;
    width: 389px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-label {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    color: var(--dark);
}

.form-field input,
.form-field select {
    width: 100%;
    height: 40px;
    border: 1px solid var(--accent);
    background: transparent;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--dark);
    padding: 0 12px;
    outline: none;
}

.form-field input::placeholder,
.form-field select option[disabled] {
    color: #a5a5a5;
}

.form-label-optional {
    font-weight: 300;
}

.form-hint {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.3;
    color: #a5a5a5;
    margin-top: 4px;
}

/* CTA block: x:1050 y:561 */
.contacto-cta {
    position: absolute;
    top: 561px;
    left: 1050px;
    width: 317px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacto-cta .btn-cta {
    padding: 14px 20px;
}

/* Footer icons: x:1150 y:671, 160x74 */
.contacto-icons {
    position: absolute;
    top: 671px;
    left: 1150px;
    width: 160px;
    height: 74px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.ico-dumbell {
    width: 42px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.ico-circle-cyan {
    width: 34px;
    height: 34px;
    position: relative;
    top: -5px;
    left: -25px;
    z-index: 1;
}

.ico-circle-cyan svg {
    width: 100%;
    height: 100%;
}

.ico-2bars-cyan {
    width: 30px;
    height: 34px;
    position: relative;
    top: -5px;
    left: -25px;
}

.ico-2bars-cyan svg {
    width: 100%;
    height: 100%;
}

.ico-retourn-dark {
    width: 46px;
    height: 34px;
    position: relative;
    top: -5px;
    left: -25px;
}

.ico-retourn-dark svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   10a. RESPONSIVE — Tablet/narrow desktop breakpoint
   ========================================================================== */

@media (max-width: 1200px) {
    /* Section-01: stack bottom row vertically before elements overlap */
    .s01-bottom {
        flex-direction: column;
        gap: 30px;
        padding: 0 58px 60px;
    }

    .s01-sub-hero {
        width: 100%;
        min-width: unset;
        height: auto;
    }

    .s01-cta {
        align-items: flex-start;
    }

    /* Section-01 needs to grow for stacked content */
    .section-01 {
        min-height: 1000px;
    }

    /* Section-CONTACTO: switch to flow layout */
    .section-contacto {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contacto-bg {
        position: relative;
        width: 100%;
        height: auto;
    }

    .contacto-bg img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Garantia: reposition for tablet */
    .contacto-garantia {
        top: 200px;
        left: auto;
        right: 30px;
        width: 300px;
    }

    .contacto-form-header {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }

    .contacto-form {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 440px;
        padding: 32px 48px 0;
    }

    .contacto-cta {
        position: relative;
        top: auto;
        left: auto;
        padding: 32px 48px 0;
    }

    .contacto-cta .btn-cta {
        white-space: nowrap;
    }

    .contacto-icons {
        position: relative;
        top: auto;
        left: auto;
        padding: 32px 48px 48px;
        height: auto;
        width: auto;
    }

    .ico-dumbell {
        width: 42px;
        height: 60px;
    }

    .ico-circle-cyan {
        width: 34px;
        height: 34px;
    }

    .ico-2bars-cyan {
        width: 30px;
        height: 34px;
    }

    .ico-retourn-dark {
        width: 46px;
        height: 34px;
    }
}

/* ==========================================================================
   10b. RESPONSIVE — 768px breakpoint
   ========================================================================== */

@media (max-width: 768px) {

    body {
        max-width: 390px;
        margin: 0 auto;
    }

    /* --- Hero --- Pencil frame e33EF: 390x844, layout:none */
    .section-hero {
        height: 844px;
    }

    .hero-bg {
        background-image: url('../img/hero-mobile-bg.jpg');
        background-size: cover;
        background-position: center;
    }

    /* Pencil 00CP6: 100x56, x:46 y:40 */
    .hero-logo {
        top: 40px;
        left: 46px;
        width: 100px;
        height: 56px;
    }

    /* Pencil cACix: x:46 y:136, w:311 */
    .hero-content {
        top: 136px;
        left: 46px;
        width: 311px;
        padding: 0;
    }

    /* Pencil aQHiS: 311x530, layout:none */
    .hero-title-block {
        width: 311px;
        height: 530px;
    }

    /* Pencil Pdlt2: 96px/0.78, w:311 */
    .hero-title {
        width: 311px;
        font-size: 96px;
    }

    /* 71px gap matches kettlebell width */
    .hero-o-space {
        display: inline-block;
        width: 71px;
        letter-spacing: normal;
    }

    /* Pencil bYwg7: 71x104, x:70 y:414 — ajustado left para centrar entre B y DY */
    .hero-dumbell {
        top: 414px;
        left: 60px;
        width: 71px;
        height: 104px;
        margin: 0;
    }

    /* Pencil j34qx: x:127 y:300 */
    .hero-subtitle {
        top: 300px;
        left: 127px;
        margin-top: 0;
        gap: 6px;
    }

    /* Pencil lQgEs: w:159, gap:2 */
    .hero-subtitle-text {
        width: 159px;
        gap: 1px;
    }

    /* Show/hide helpers */
    .desk-only  { display: none; }
    .mob-only   { display: inline; }

    .hero-subtitle-line1 {
        font-size: 11px;
        gap: 4px;
        line-height: 1;
    }

    .hero-subtitle-rest {
        font-size: 11px;
        line-height: 1;
    }

    /* Pencil SVleu: 19x22 */
    .hero-2bars {
        width: 19px;
        height: 22px;
        margin-left: 0;
    }

    /* --- Section-01 — Pencil mAg4Z: 390x844, layout:none --- */
    .section-01 {
        height: 844px;
        padding: 0;
        background-size: cover;
        background-position: top right -150px;
    }

    /* Pencil OW8fC: x:45 y:40, 114x64 */
    .s01-logo {
        top: 40px;
        left: 45px;
        width: 114px;
        height: 64px;
        margin-bottom: 0;
    }

    .s01-arrow {
        display: none;
    }

    /* Pencil hcTMe: x:43 y:144, 296x640, layout:none */
    .s01-content {
        position: absolute;
        top: 144px;
        left: 43px;
        width: 296px;
        height: 640px;
    }

    /* Pencil Dqdc7: y:43 within content, 296w, 40px */
    .s01-title {
        position: absolute;
        top: 43px;
        left: 0;
        font-size: 40px;
        line-height: 0.87;
        width: 296px;
    }

    /* Pencil wcrLw: y:327 within content, 159w, 11px */
    .s01-subtitle {
        position: absolute;
        top: 327px;
        left: 0;
        width: 159px;
        font-size: 11px;
        line-height: 1.04;
        margin-top: 0;
    }

    /* Desktop icons hidden on mobile (mob-only icons in ciclo-row instead) */
    .s01-icons {
        display: none;
    }

    /* s01-bottom: overlay full section for absolute positioning */
    .s01-bottom {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        display: block;
        gap: 0;
    }

    /* Pencil: ya-sabes at content y:381 → section y:525 */
    .s01-sub-hero {
        position: absolute;
        top: 525px;
        left: 43px;
        width: 296px;
        height: auto;
    }

    /* Pencil Mi78b: 278w, 32px, lh 0.87 */
    .s01-ya-sabes {
        font-size: 32px;
        line-height: 0.87;
        width: 278px;
    }

    /* Pencil: ciclo-row at content y:469 → 88px below ya-sabes */
    .s01-ciclo-row {
        position: absolute;
        top: 88px;
        left: 0;
        display: flex;
        align-items: flex-end;
        gap: 12px;
        width: 296px;
    }

    /* Pencil kfBej: 159w, JBM 700, 11px */
    .s01-ciclo {
        width: 159px;
        font-size: 11px;
        font-weight: 700;
        margin-top: 0;
    }

    /* Mobile ciclo icons: flex, align-end, gap 12 */
    .s01-ciclo-icons {
        display: flex;
        align-items: flex-end;
        gap: 12px;
    }

    .s01-ciclo-icons .s01-ico-circle {
        width: 37px;
        height: 37px;
    }

    .s01-ciclo-icons .s01-ico-2bars {
        width: 32px;
        height: 37px;
    }

    /* Pencil 3i7UG: x:58 y:551 within content → section x:101 y:695 */
    .s01-cta {
        position: absolute;
        top: 695px;
        left: 101px;
        width: 188px;
    }

    .s01-cta .btn-cta {
        font-size: 14px;
        padding: 7px 10px;
        gap: 6px;
    }

    .s01-cta .btn-cta-desc {
        width: 188px;
        font-size: 10px;
    }

    /* --- Section-02 — Pencil xAMQ4: 390x844, bg $accent ---
       Mobile: centered content, 296px max-width */
    .section-02 {
        height: 844px;
        min-height: unset;
        padding: 40px 47px 0;
        align-items: center;
        gap: 20px;
        padding-bottom: 0;
    }

    /* Pencil Z8IZE: header, flex-col — centered */
    .s02-header {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        margin-bottom: 0;
        width: 296px;
        padding-top: 0;
    }

    /* Pencil GGwol: bloque_texto, 229w 44h, layout:none */
    .s02-desc-block {
        width: 229px;
        height: auto;
    }

    /* Pencil DQ29U: desc-block, 165w, 11px */
    .s02-desc-lines {
        font-size: 11px;
        width: 165px;
    }

    /* Combo-pesas mobile — pulled up closer to text */
    .s02-combo-pesas {
        top: 6px;
        left: 170px;
        width: 60px;
        height: 30px;
        transform: scale(0.8);
        transform-origin: top left;
    }

    /* Pencil 9QzG5: bloque_reset, flex-col, centered, w:296, padding-top:25 */
    .s02-main {
        width: 296px;
        max-width: none;
        gap: 0;
        padding: 25px 0 0;
        margin: 0 auto;
    }

    /* Pencil: phases stack vertically with separators */
    .phases-row {
        flex-direction: column;
        gap: 0;
    }

    /* Pencil: each phase block, fill_container, gap:3 */
    .phase-card {
        width: 100%;
        gap: 3px;
    }

    /* Pencil: 12px JBM 800 */
    .phase-label {
        font-size: 12px;
    }

    /* Pencil: 48px Core Sans C 900, ls:-1.92 */
    .phase-title {
        font-size: 48px;
        letter-spacing: -1.92px;
    }

    /* Pencil: 10px JBM */
    .phase-desc {
        font-size: 10px;
    }

    .upgrade-block {
        width: 100%;
        gap: 3px;
    }

    /* Pencil: UPGRADE also 48px in mobile (not 100px) */
    .upgrade-title {
        font-size: 48px;
        letter-spacing: -1.92px;
    }

    /* Pencil separators: 28h, padding 10/0/18/0, centered 50px 0.5px line */
    .phase-sep {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 28px;
        padding: 10px 0 18px;
    }

    .phase-sep::after {
        content: '';
        display: block;
        width: 50px;
        height: 0.5px;
        background: #000000;
    }

    /* Pencil nPvk3: CTA wrapper, padding-top:30, fill_container, centered */
    .s02-cta {
        width: 100%;
        padding-top: 30px;
        align-items: center;
    }

    .s02-cta .btn-cta {
        font-size: 14px;
        padding: 7px 10px;
        gap: 6px;
        width: auto;
    }

    .s02-cta .btn-cta-desc {
        width: 188px;
        font-size: 10px;
    }

    /* --- Section-CONTACTO Mobile — flow layout --- */
    .section-contacto {
        height: auto;
        min-height: unset;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* Photo: full width, proportional height */
    .contacto-bg {
        position: relative;
        width: 100%;
        height: auto;
    }

    .contacto-bg img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Garantia overlay on photo — bottom-right of image (~260px tall) */
    .contacto-garantia {
        position: absolute;
        top: 90px;
        left: auto;
        right: 15px;
        width: 165px;
        background: none;
        padding: 0;
        height: auto;
        text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    }

    .garantia-title {
        font-size: 16px;
        text-align: left;
    }

    .garantia-text {
        font-size: 10px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        width: 100%;
        max-width: none;
    }

    .garantia-footer {
        margin-top: 8px;
        gap: 6px;
    }

    .garantia-retourn {
        width: 20px;
        height: 14px;
    }

    .garantia-sin-letra {
        font-size: 10px;
    }

    .garantia-2bars {
        width: 16px;
        height: 13px;
    }

    /* Form header band: in flow, below image */
    .contacto-form-header {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 79px;
        padding: 17px 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--accent);
    }

    .form-title {
        font-size: 24px;
        letter-spacing: -0.96px;
        width: 309px;
    }

    .form-subtitle {
        font-size: 12px;
        letter-spacing: -0.48px;
        width: 298px;
    }

    /* Form fields: in flow */
    .contacto-form {
        position: relative;
        top: auto;
        left: auto;
        width: 309px;
        gap: 12px;
        padding: 32px 44px 0;
    }

    .form-field {
        gap: 6px;
    }

    .form-label {
        font-size: 10px;
    }

    .form-field input,
    .form-field select {
        height: 32px;
        padding: 4px 8px;
        font-size: 12px;
        background: transparent;
        border: 1px solid var(--accent);
    }

    /* CTA: in flow */
    .contacto-cta {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding: 24px 44px 0;
        align-items: center;
    }

    .contacto-cta .btn-cta {
        font-size: 14px;
        padding: 7px 10px;
    }

    .contacto-cta .btn-cta-desc {
        width: 188px;
        font-size: 10px;
        text-align: center;
    }

    /* Icons: in flow */
    .contacto-icons {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding: 24px 44px 32px;
        justify-content: center;
    }
}
