/* ==========================================================================
   RENTING GAMMA - Sistema de Diseño Editorial Industrial
   Una estética distintiva que transmite 30 años de experiencia
   ========================================================================== */

/* --------------------------------------------------------------------------
   TIPOGRAFÍA - Bw Modelica
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'Bw Modelica';
    src: url('../fonts/BwModelica-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bw Modelica';
    src: url('../fonts/BwModelica-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bw Modelica';
    src: url('../fonts/BwModelica-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   VARIABLES CSS - Paleta Editorial Industrial
   -------------------------------------------------------------------------- */
:root {
    /* Colores de marca */
    --gamma-red: #C62828;
    --gamma-red-dark: #9B1C1C;
    --gamma-red-light: #EF5350;
    --gamma-yellow: #FFD600;
    --gamma-yellow-muted: #FFF3B0;

    /* Escala de grises refinada - Paleta Gamma */
    --gamma-gray-dark: #3D3A38;   /* CMYK 5 5 5 85 - Footer */
    --gamma-gray-medium: #8A8583; /* CMYK 5 5 5 45 */
    --ink: #1A1A1A;
    --ink-light: #2D2D2D;
    --charcoal: #404040;
    --slate: #6B6B6B;
    --pewter: #9E9E9E;
    --silver: #BDBDBD;
    --fog: #E8E8E8;
    --mist: #F5F5F5;
    --paper: #FAFAFA;
    --white: #FFFFFF;

    /* Tipografía */
    --font-primary: 'Bw Modelica', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Escala tipográfica editorial */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    --text-display: clamp(3rem, 8vw, 7rem);

    /* Espaciado sistemático */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-max: 1400px;
    --container-narrow: 900px;
    --gutter: clamp(1.5rem, 4vw, 3rem);

    /* Efectos */
    --shadow-subtle: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-dramatic: 0 24px 64px rgba(0,0,0,0.24);

    /* Transiciones */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
.text-balance {
    text-wrap: balance;
}

.eyebrow {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gamma-red);
}

.headline-display {
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.headline-xl {
    font-size: clamp(2rem, 5vw, var(--text-5xl));
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.headline-lg {
    font-size: clamp(1.5rem, 3vw, var(--text-4xl));
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.headline-md {
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.body-lg {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--charcoal);
}

.body-sm {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--slate);
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow var(--duration-base) var(--ease-out-expo),
                background var(--duration-base) var(--ease-out-expo);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--fog);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

@media (min-width: 768px) {
    .header__inner {
        height: 88px;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header__logo-img {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .header__logo-img {
        height: 48px;
    }
}

.header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .header__nav {
        display: flex;
        align-items: center;
        gap: var(--space-1);
    }
}

.header__nav-link {
    position: relative;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--duration-fast);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: var(--space-4);
    right: var(--space-4);
    height: 2px;
    background: var(--gamma-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-base) var(--ease-out-expo);
}

.header__nav-link:hover {
    color: var(--ink);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__nav-link--active {
    color: var(--ink);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header__cta {
    display: none;
}

@media (min-width: 768px) {
    .header__cta {
        display: flex;
    }
}

.header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--ink);
}

@media (min-width: 1024px) {
    .header__menu-btn {
        display: none;
    }
}

.header__menu-icon {
    width: 24px;
    height: 24px;
}

/* --------------------------------------------------------------------------
   MOBILE MENU
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu--open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.mobile-menu--open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 90vw);
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.mobile-menu--open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--fog);
}

.mobile-menu__title {
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: -12px;
    color: var(--ink);
}

.mobile-menu__close-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu__nav {
    flex: 1;
    padding: var(--space-6);
}

.mobile-menu__nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-menu__nav-link {
    display: block;
    padding: var(--space-4);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--ink);
    border-radius: 8px;
    transition: background var(--duration-fast);
}

.mobile-menu__nav-link:hover {
    background: var(--mist);
}

.mobile-menu__nav-link--active {
    color: var(--gamma-red);
}

.mobile-menu__footer {
    padding: var(--space-6);
    border-top: 1px solid var(--fog);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: 6px;
    transition: all var(--duration-base) var(--ease-out-expo);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gamma-red);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
}

.btn--primary:hover {
    background: var(--gamma-red-dark);
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: var(--gamma-gray-dark);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--gamma-gray-medium);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 2px var(--fog);
}

.btn--outline:hover {
    box-shadow: inset 0 0 0 2px var(--ink);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn--block {
    width: 100%;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   HERO PHOTO - Industrial Editorial Design
   -------------------------------------------------------------------------- */
.hero-photo {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
}

.hero-photo__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

@media (min-width: 768px) {
    .hero-photo__img {
        object-position: center center;
    }
}

.hero-photo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(61, 58, 56, 0.85) 0%,
        rgba(61, 58, 56, 0.6) 40%,
        rgba(61, 58, 56, 0.4) 60%,
        rgba(61, 58, 56, 0.7) 100%
    );
}

@media (min-width: 768px) {
    .hero-photo__overlay {
        background: linear-gradient(
            90deg,
            rgba(61, 58, 56, 0.92) 0%,
            rgba(61, 58, 56, 0.8) 40%,
            rgba(61, 58, 56, 0.3) 70%,
            transparent 100%
        );
    }
}

.hero-photo__container {
    position: relative;
    z-index: 1;
    display: contents;
}

/* Badge - Fixed at top */
.hero-photo__badge {
    position: absolute;
    top: calc(72px + var(--space-4));
    left: var(--gutter);
    z-index: 10;
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gamma-yellow);
    color: var(--gamma-gray-dark);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeSlideUp 0.6s var(--ease-out-expo) both;
}

@media (min-width: 768px) {
    .hero-photo__badge {
        position: static;
        grid-row: 1;
        justify-self: start;
        margin: calc(88px + var(--space-8)) var(--gutter) 0;
        z-index: auto;
    }
}

/* Logo - Mobile only */
.hero-photo__logo {
    width: 260px;
    margin-top: var(--space-12);
    margin-left: -0.5rem;
    margin-bottom: var(--space-2);
    animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.05s both;
}

@media (min-width: 768px) {
    .hero-photo__logo {
        width: 700px;
        margin: 0;
        margin-top: -6rem;
        transform: translateX(-10rem);
        animation: none;
        flex-shrink: 0;
    }
}

/* Content - Centered */
.hero-photo__content {
    position: relative;
    z-index: 5;
    grid-row: 2;
    align-self: start;
    padding-top: calc(72px + 3.5rem);
    max-width: 600px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

@media (min-width: 768px) {
    .hero-photo__content {
        position: static;
        z-index: auto;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        align-self: center;
        padding-top: 0;
        gap: var(--space-12);
        max-width: none;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
}

.hero-photo__text {
    flex: 1;
    margin-top: var(--space-4);
}

@media (min-width: 768px) {
    .hero-photo__text {
        margin-top: 0;
    }
}

.hero-photo__headline {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: var(--space-4);
    animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.1s both;
}

@media (min-width: 768px) {
    .hero-photo__headline {
        font-size: 4.5rem;
    }
}

.hero-photo__headline-accent {
    color: var(--gamma-yellow);
    display: block;
}

.hero-photo__description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: var(--space-10);
    animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.15s both;
}

@media (min-width: 768px) {
    .hero-photo__description {
        font-size: var(--text-lg);
    }
}

.hero-photo__actions {
    margin-top: var(--space-10);
    animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.2s both;
}

@media (min-width: 768px) {
    .hero-photo__actions {
        margin-top: 0;
    }
}

.hero-photo__actions .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .hero-photo__actions .btn {
        width: auto;
    }
}

/* --------------------------------------------------------------------------
   TABLET OVERRIDES (iPad portrait & landscape: 768px - 1279px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1279px) {
    .hero-photo__logo {
        width: 450px;
        margin-top: -2rem;
        transform: translateX(0);
    }

    .hero-photo__content {
        gap: var(--space-8);
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }

    .hero-photo__headline {
        font-size: 3.2rem;
    }

    .hero-photo__text {
        min-width: 300px;
    }
}

/* Stats - Fixed at bottom */
.hero-photo__stats {
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    padding: var(--space-5) var(--gutter);
    background: var(--gamma-gray-dark);
    animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.25s both;
}

@media (min-width: 768px) {
    .hero-photo__stats {
        display: flex;
        gap: var(--space-10);
        padding: var(--space-6) var(--gutter);
        background: rgba(61, 58, 56, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.hero-photo__stat {
    text-align: center;
}

@media (min-width: 768px) {
    .hero-photo__stat {
        text-align: left;
    }
}

.hero-photo__stat-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-photo__stat-value {
        font-size: var(--text-3xl);
    }
}

.hero-photo__stat-value span {
    color: var(--gamma-yellow);
}

.hero-photo__stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-1);
}

@media (min-width: 768px) {
    .hero-photo__stat-label {
        font-size: var(--text-xs);
    }
}

/* Botón ghost para fondos oscuros */
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* --------------------------------------------------------------------------
   HERO SECTION (versión sin foto)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    background: linear-gradient(165deg, var(--white) 0%, var(--mist) 50%, var(--fog) 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 88px;
    }
}

/* Decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '30';
    position: absolute;
    bottom: -5%;
    right: -2%;
    font-size: clamp(15rem, 35vw, 40rem);
    font-weight: 700;
    line-height: 1;
    color: var(--gamma-red);
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-12) 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__content {
        padding: var(--space-16) 0;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gamma-yellow);
    color: var(--ink);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--space-6);
    width: fit-content;
    animation: fadeSlideUp 0.8s var(--ease-out-expo) both;
}

.hero__headline {
    max-width: 14ch;
    margin-bottom: var(--space-6);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.1s both;
}

.hero__headline-accent {
    color: var(--gamma-red);
}

.hero__description {
    max-width: 520px;
    font-size: var(--text-lg);
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.2s both;
}

@media (min-width: 768px) {
    .hero__description {
        font-size: var(--text-xl);
    }
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero__cta-phone {
    font-size: var(--text-lg);
    font-weight: 700;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--fog);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.4s both;
}

@media (min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(3, auto);
        justify-content: start;
        gap: var(--space-16);
    }
}

.hero__stat-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: var(--space-1);
}

@media (min-width: 768px) {
    .hero__stat-value {
        font-size: var(--text-4xl);
    }
}

.hero__stat-value span {
    color: var(--gamma-red);
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--slate);
}

/* --------------------------------------------------------------------------
   SECTION COMMON
   -------------------------------------------------------------------------- */
.section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-24) 0;
    }
}

.section--mist {
    background: var(--mist);
}

.section--dark {
    background: var(--gamma-gray-dark);
    color: var(--white);
}

.section--red {
    background: var(--gamma-red);
    color: var(--white);
}

.section__header {
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: var(--space-16);
    }
}

.section__header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__eyebrow {
    margin-bottom: var(--space-4);
}

.section__title {
    margin-bottom: var(--space-4);
}

.section__description {
    font-size: var(--text-lg);
    color: var(--slate);
    max-width: 600px;
}

.section__header--center .section__description {
    margin-left: auto;
    margin-right: auto;
}

.section--dark .section__description {
    color: var(--silver);
}

/* --------------------------------------------------------------------------
   VALUE PROPOSITIONS
   -------------------------------------------------------------------------- */
.value-props {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .value-props {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }
}

.value-card {
    position: relative;
    padding: var(--space-8);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-base) var(--ease-out-expo);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gamma-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gamma-red) 0%, var(--gamma-red-dark) 100%);
    border-radius: 12px;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
}

.value-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.value-card__text {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FLEET SECTION
   -------------------------------------------------------------------------- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fleet-card {
    position: relative;
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--fog);
    border-radius: 12px;
    text-align: center;
    transition: all var(--duration-base) var(--ease-out-expo);
}

.fleet-card:hover {
    border-color: var(--gamma-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.fleet-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: var(--mist);
    border-radius: 50%;
    color: var(--gamma-red);
    transition: all var(--duration-base) var(--ease-out-expo);
}

.fleet-card:hover .fleet-card__icon {
    background: var(--gamma-red);
    color: var(--white);
}

.fleet-card__icon svg {
    width: 32px;
    height: 32px;
}

.fleet-card__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-1);
}

.fleet-card__subtitle {
    font-size: var(--text-sm);
    color: var(--slate);
}

/* Fleet Showcase - Con imágenes */
.fleet-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .fleet-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .fleet-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fleet-item {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-base) var(--ease-out-expo);
}

.fleet-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fleet-item__image {
    position: relative;
    aspect-ratio: 1;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--white) 0%, var(--mist) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleet-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--duration-base) var(--ease-out-expo);
}

.fleet-item:hover .fleet-item__image img {
    transform: scale(1.05);
}

.fleet-item__info {
    padding: var(--space-4);
    text-align: center;
    border-top: 1px solid var(--fog);
}

.fleet-item__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--gamma-gray-dark);
    margin-bottom: var(--space-1);
}

.fleet-item__use {
    font-size: var(--text-sm);
    color: var(--slate);
}

.fleet-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* --------------------------------------------------------------------------
   REASONS SECTION
   -------------------------------------------------------------------------- */
.reasons-grid {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--duration-base) var(--ease-out-expo);
}

.reason-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.reason-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gamma-yellow);
    border-radius: 10px;
    color: var(--ink);
}

.reason-item__icon svg {
    width: 24px;
    height: 24px;
}

.reason-item__content {
    flex: 1;
}

.reason-item__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.reason-item__text {
    font-size: var(--text-sm);
    color: var(--silver);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTORS SECTION
   -------------------------------------------------------------------------- */
.sectors-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

.sector-card {
    position: relative;
    padding: var(--space-10);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out-expo);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gamma-red);
}

.sector-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.sector-card__icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-6);
}

.sector-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sector-card__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.sector-card__text {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.sector-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.sector-card__tag {
    padding: var(--space-2) var(--space-3);
    background: var(--mist);
    border-radius: 6px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--gamma-red);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 214, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section__content {
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-size: clamp(1.75rem, 4vw, var(--text-4xl));
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.cta-section__subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-10);
    background: var(--white);
    color: var(--gamma-red);
    font-size: var(--text-2xl);
    font-weight: 700;
    border-radius: 12px;
    box-shadow: var(--shadow-dramatic);
    transition: all var(--duration-base) var(--ease-out-expo);
}

.cta-section__phone:hover {
    transform: scale(1.05);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.cta-section__phone svg {
    width: 32px;
    height: 32px;
}

.cta-section__alt {
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    opacity: 0.8;
}

.cta-section__alt a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--gamma-gray-dark);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__main {
    display: grid;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer__main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-8);
    }
}

.footer__brand-logo {
    height: 48px;
    margin-bottom: var(--space-4);
}

.footer__brand-text {
    font-size: var(--text-sm);
    color: var(--pewter);
    line-height: 1.7;
    max-width: 280px;
}

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 214, 0, 0.15);
    border: 1px solid rgba(255, 214, 0, 0.3);
    border-radius: 6px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gamma-yellow);
}

.footer__column-title {
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pewter);
    margin-bottom: var(--space-4);
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__nav-link {
    font-size: var(--text-base);
    color: var(--silver);
    transition: color var(--duration-fast);
}

.footer__nav-link:hover {
    color: var(--white);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    color: var(--silver);
}

.footer__contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--gamma-red);
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--slate);
}

/* --------------------------------------------------------------------------
   WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: var(--space-4);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-base) var(--ease-out-expo);
}

@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: var(--space-6);
        right: var(--space-6);
        width: 56px;
        height: 56px;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --------------------------------------------------------------------------
   INTERNAL PAGE HERO
   -------------------------------------------------------------------------- */
.hero-internal {
    padding: calc(72px + var(--space-16)) 0 var(--space-12);
    background: linear-gradient(165deg, var(--white) 0%, var(--mist) 100%);
}

@media (min-width: 768px) {
    .hero-internal {
        padding: calc(88px + var(--space-20)) 0 var(--space-16);
    }
}

.hero-internal__title {
    margin-bottom: var(--space-4);
}

.hero-internal__subtitle {
    font-size: var(--text-xl);
    color: var(--charcoal);
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE SPECIFIC
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-12);
    }
}

.contact-phone-card {
    padding: var(--space-10);
    background: var(--gamma-red);
    color: var(--white);
    border-radius: 16px;
    text-align: center;
}

.contact-phone-card__title {
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-6);
    opacity: 0.9;
}

.contact-phone-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    font-size: clamp(1.75rem, 5vw, var(--text-4xl));
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.contact-phone-card__number svg {
    width: 40px;
    height: 40px;
}

.contact-phone-card__schedule {
    font-size: var(--text-base);
    opacity: 0.85;
}

.contact-form-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: var(--space-10);
    }
}

.contact-form-card__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.contact-form-card__subtitle {
    font-size: var(--text-base);
    color: var(--slate);
    margin-bottom: var(--space-8);
}

/* --------------------------------------------------------------------------
   FORM ELEMENTS
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: var(--space-5);
}

.form-row {
    display: grid;
    gap: var(--space-5);
}

@media (min-width: 640px) {
    .form-row--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-2);
}

.form-label--required::after {
    content: ' *';
    color: var(--gamma-red);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-4);
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--ink);
    background: var(--mist);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all var(--duration-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--gamma-red);
    box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--pewter);
}

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

.form-submit {
    margin-top: var(--space-6);
}

/* Honeypot */
.form-honeypot {
    position: absolute;
    left: -9999px;
}

/* Mensajes de estado del formulario */
.form-message {
    display: none;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.form-message--success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.form-message--error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-message--visible {
    display: block;
}

/* --------------------------------------------------------------------------
   CONTENT PROSE (NOSOTROS)
   -------------------------------------------------------------------------- */
.content-prose p {
    margin-bottom: var(--space-6);
}

.content-prose p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   PHILOSOPHY GRID (NOSOTROS)
   -------------------------------------------------------------------------- */
.philosophy-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

.philosophy-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-base) var(--ease-out-expo);
}

.philosophy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.philosophy-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gamma-red);
    border-radius: 10px;
    margin-bottom: var(--space-5);
    color: var(--white);
}

.philosophy-card__icon svg {
    width: 24px;
    height: 24px;
}

.philosophy-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.philosophy-card__text {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   STATS GRID
   -------------------------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item__value {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-item__value span {
    color: var(--gamma-yellow);
}

.stat-item__label {
    font-size: var(--text-sm);
    color: var(--silver);
}

/* --------------------------------------------------------------------------
   COMPARISON TABLE (POR QUE RENTING)
   -------------------------------------------------------------------------- */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    border-bottom: 1px solid var(--fog);
}

.comparison-table th {
    background: var(--gamma-gray-dark);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th.comparison-table__highlight {
    background: var(--gamma-red);
}

.comparison-table td {
    font-size: var(--text-sm);
    color: var(--charcoal);
}

.comparison-table td.comparison-table__highlight {
    background: rgba(198, 40, 40, 0.05);
    color: var(--ink);
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   BENEFITS GRID (POR QUE RENTING)
   -------------------------------------------------------------------------- */
.benefits-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    position: relative;
    padding: var(--space-8);
    padding-left: var(--space-10);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-card__number {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gamma-red);
}

.benefit-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.benefit-card__text {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   OPERATIONAL GRID (POR QUE RENTING)
   -------------------------------------------------------------------------- */
.operational-grid {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .operational-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .operational-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.operational-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.operational-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gamma-yellow);
    border-radius: 10px;
    color: var(--ink);
}

.operational-item__icon svg {
    width: 24px;
    height: 24px;
}

.operational-item__title {
    font-size: var(--text-lg);
    font-weight: 600;
}

.operational-item__text {
    font-size: var(--text-sm);
    color: var(--silver);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   PROCESS STEPS (POR QUE RENTING)
   -------------------------------------------------------------------------- */
.process-steps {
    display: grid;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-step {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--mist);
    border-radius: 12px;
}

.process-step__number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gamma-red);
    color: var(--white);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: 50%;
}

.process-step__content {
    flex: 1;
}

.process-step__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.process-step__text {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FLEET DETAIL GRID (FLOTA)
   -------------------------------------------------------------------------- */
.fleet-detail-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .fleet-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fleet-detail-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.fleet-detail-card--centered {
    grid-column: 1 / 2;
    justify-self: center;
}

@media (min-width: 768px) {
    .fleet-detail-grid:has(.fleet-detail-card--centered) {
        justify-items: center;
    }

    .fleet-detail-card--centered {
        grid-column: 1 / -1;
        max-width: 50%;
    }
}

.fleet-detail-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.fleet-detail-card__image {
    width: 173px;
    height: 115px;
    flex-shrink: 0;
}

.fleet-detail-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fleet-detail-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
}

.fleet-detail-card__description {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.fleet-detail-card__uses {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.fleet-detail-card__tag {
    padding: var(--space-2) var(--space-3);
    background: var(--mist);
    border-radius: 6px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   BRANDS NOTE (FLOTA)
   -------------------------------------------------------------------------- */
.brands-note {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--gamma-yellow);
    border-radius: 16px;
}

.brands-note__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gamma-gray-dark);
    border-radius: 12px;
    color: var(--white);
}

.brands-note__icon svg {
    width: 28px;
    height: 28px;
}

.brands-note__content {
    flex: 1;
}

.brands-note__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.brands-note__text {
    font-size: var(--text-base);
    color: var(--ink);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SERVICES GRID (SERVICIOS)
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    padding: var(--space-6);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--duration-base) var(--ease-out-expo);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: var(--gamma-red);
    border-radius: 12px;
    color: var(--white);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.service-card__text {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   EQUIPMENT GRID (SERVICIOS)
   -------------------------------------------------------------------------- */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.equipment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--mist);
    border-radius: 12px;
    text-align: center;
}

.equipment-item svg {
    width: 32px;
    height: 32px;
    color: var(--gamma-red);
}

.equipment-item span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ink);
}

/* --------------------------------------------------------------------------
   DIFFERENTIATOR (SERVICIOS)
   -------------------------------------------------------------------------- */
.differentiator {
    max-width: 800px;
    margin: 0 auto;
}

.differentiator__title {
    margin-bottom: var(--space-6);
}

.differentiator__text {
    font-size: var(--text-lg);
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.differentiator__text:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   CONTRACT OPTIONS (SERVICIOS)
   -------------------------------------------------------------------------- */
.contract-options {
    display: grid;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contract-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contract-card {
    padding: var(--space-8);
    background: var(--mist);
    border-radius: 12px;
    border: 2px solid transparent;
}

.contract-card--featured {
    background: var(--white);
    border-color: var(--gamma-red);
    box-shadow: var(--shadow-md);
}

.contract-card__header {
    margin-bottom: var(--space-4);
}

.contract-card__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gamma-red);
    margin-bottom: var(--space-2);
}

.contract-card__duration {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
}

.contract-card__text {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SECTOR DETAIL (SECTORES)
   -------------------------------------------------------------------------- */
.sector-detail__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .sector-detail__header {
        flex-direction: row;
        align-items: center;
    }
}

.sector-detail__icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.sector-detail__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sector-detail__content {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .sector-detail__content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.sector-detail__text p {
    margin-bottom: var(--space-4);
}

.sector-detail__benefits-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.sector-benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.sector-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--charcoal);
}

.sector-benefits-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gamma-red);
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   OTHER SECTORS (SECTORES)
   -------------------------------------------------------------------------- */
.other-sectors {
    text-align: center;
    padding: var(--space-10);
    background: var(--mist);
    border-radius: 16px;
}

.other-sectors__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    background: var(--gamma-yellow);
    border-radius: 50%;
    color: var(--ink);
}

.other-sectors__icon svg {
    width: 32px;
    height: 32px;
}

.other-sectors__title {
    margin-bottom: var(--space-4);
}

.other-sectors__text {
    max-width: 600px;
    margin: 0 auto var(--space-4);
}

.other-sectors__text:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   CONTACT METHODS (CONTACTO)
   -------------------------------------------------------------------------- */
.contact-methods {
    display: grid;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-method {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-method__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: var(--gamma-red);
    border-radius: 12px;
    color: var(--white);
}

.contact-method__icon svg {
    width: 28px;
    height: 28px;
}

.contact-method__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.contact-method__link {
    font-size: var(--text-base);
    color: var(--gamma-red);
    font-weight: 500;
}
