:root {
    --navy-950: #0a1930;
    --navy-900: #102744;
    --navy-800: #1c3b63;
    --slate-100: #f2f6fb;
    --slate-200: #e3eaf3;
    --slate-500: #5a6b81;
    --slate-700: #33445a;
    --white: #ffffff;
    --red-600: #dc2626;
    --red-700: #dc2626;
    --container: min(1240px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--navy-950);
    background: var(--white);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    background: #dc2626;
    color: #ffffff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 1.35;
}

.topbar-contact a:hover {
    color: var(--white);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--slate-200);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: var(--white);
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--navy-900);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-700);
}

.site-nav a {
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--red-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--red-600);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(220, 38, 38, 0.26);
}

.btn-ghost {
    border: 1px solid #22c55e;
    color: #ffffff;
    background: #22c55e;
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.28);
}

.btn-ghost:hover {
    background: #16a34a;
    border-color: #16a34a;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--slate-200);
    background: var(--white);
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 700;
    color: var(--navy-900);
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: url('../img/slidehome2.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(10, 25, 48, 0.9), rgba(10, 25, 48, 0.54) 55%, rgba(10, 25, 48, 0.28));
}

.hero-inner {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 52px 0;
    max-width: 840px;
    transform: translateX(clamp(-110px, -7vw, -36px));
}

.hero-kicker {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #b6cbee;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.hero-lead {
    max-width: 760px;
    font-size: clamp(16px, 1.4vw, 22px);
    color: #dce8f7;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-links {
    margin-top: -38px;
    position: relative;
    z-index: 3;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.quick-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 16px 36px rgba(16, 39, 68, 0.1);
}

.quick-item h3 {
    font-size: 20px;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.quick-item p {
    color: var(--slate-500);
}

.brands-marquee {
    margin-top: 6px;
    padding: 0 0 8px;
}

.brands-intro {
    text-align: center;
    margin-bottom: 6px;
}

.brands-intro h2 {
    margin: 0 0 4px;
    color: var(--navy-900);
    font-size: clamp(28px, 2vw, 38px);
    font-weight: 800;
    line-height: 1.1;
}

.brands-intro p {
    margin: 0;
    color: var(--slate-500);
    font-size: clamp(14px, 0.95vw, 17px);
}

.brands-window {
    border: 0;
    background: transparent;
    overflow: hidden;
    border-radius: 0;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: brandsScroll 28s linear infinite;
}

.brands-list {
    display: flex;
    align-items: center;
    gap: 38px;
    min-width: max-content;
    padding: 12px 20px;
}

.brands-list img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.brands-list img:hover {
    filter: none;
    transform: translateY(-1px);
}

.windforce-highlight {
    padding: 12px 0 18px;
    background:
        linear-gradient(180deg, #f5f7fb 0%, #f7f9fc 62%, #ffffff 100%);
}

.windforce-head {
    margin-bottom: 14px;
}

.windforce-overline {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #69758a;
    font-size: clamp(14px, 0.95vw, 20px);
    font-weight: 700;
}

.windforce-overline::before,
.windforce-overline::after {
    content: "";
    width: min(220px, 24vw);
    height: 1px;
    background: #dbe2ee;
}

.windforce-title {
    margin: 10px 0 0;
    text-align: left;
    color: #102744;
    font-size: clamp(32px, 2.35vw, 50px);
    line-height: 1.1;
    font-weight: 800;
}

.windforce-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 0;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dce4ef;
    background:
        linear-gradient(90deg, rgba(248, 250, 253, 0.98) 0%, rgba(248, 250, 253, 0.95) 54%, rgba(248, 250, 253, 0.62) 68%),
        linear-gradient(135deg, #eef3f9, #f7f9fc 55%, #edf2f8);
    box-shadow: 0 6px 16px rgba(16, 39, 68, 0.05);
}

.windforce-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 34px;
    max-width: none;
}

.windforce-media {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 280px;
    background:
    url('../img/windforce-adjunta.png') center/cover no-repeat,
        url('../img/slidehome2.jpg') center/cover no-repeat;
}

.windforce-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 250, 253, 0.74) 0%, rgba(248, 250, 253, 0.2) 34%, rgba(248, 250, 253, 0) 58%);
}

.windforce-logo {
    width: min(380px, 82%);
    height: auto;
    object-fit: contain;
    margin-top: 2px;
}

.windforce-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(16px, 0.95vw, 20px);
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(180deg, #ef4d42, #cc251b);
    box-shadow: 0 8px 20px rgba(204, 37, 27, 0.26);
}

.windforce-copy p {
    margin: 0;
    color: #29384f;
    font-size: clamp(18px, 1.08vw, 28px);
    line-height: 1.38;
    max-width: 900px;
}

.windforce-copy strong {
    color: #0e2341;
}

.top-sales {
    background: #ffffff;
    overflow: hidden;
}

.top-sales .container {
    position: relative;
}

.top-sales-header {
    max-width: 720px;
    margin-bottom: 18px;
    padding-left: 18px;
    border-left: 4px solid var(--red-600);
}

.top-sales-kicker {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 1.8vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.top-sales-subtitle {
    margin: 4px 0 0;
    color: #748092;
    font-size: clamp(16px, 1vw, 18px);
}

.top-sales-slider {
    position: relative;
    min-height: 560px;
}

.top-sales-viewport {
    position: relative;
    min-height: inherit;
}

.top-sales-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    display: grid;
    justify-items: center;
    align-content: start;
    text-align: center;
}

.top-sales-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.top-sales-copy {
    max-width: 760px;
}

.top-sales-brand {
    width: min(180px, 36vw);
    height: auto;
    object-fit: contain;
    margin: 0 auto 8px;
}

.top-sales-copy h3 {
    margin: 0;
    color: #101010;
    font-size: clamp(22px, 1.35vw, 30px);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.top-sales-copy p {
    max-width: 720px;
    margin: 10px auto 0;
    color: #6f766f;
    font-size: clamp(15px, 0.95vw, 19px);
    line-height: 1.45;
}

.top-sales-media {
    margin-top: 8px;
}

.top-sales-media img {
    width: min(250px, 24vw);
    height: auto;
    display: block;
    object-fit: contain;
}

.top-sales-media img.aplus-tyre-img {
    width: min(360px, 34vw);
}

.top-sales-arrow {
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 0;
    background: transparent;
    color: #232323;
    font-size: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.top-sales-arrow-left {
    left: -18px;
}

.top-sales-arrow-right {
    right: -18px;
}

.top-sales-arrow:hover {
    color: var(--red-600);
}

.top-sales-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.top-sales-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #c7ced8;
    cursor: pointer;
}

.top-sales-dots button.is-active {
    width: 28px;
    background: var(--red-600);
}

.promo-split {
    background: #ffffff;
    padding-top: 6px;
}

.promo-split-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(18, 24, 33, 0.09);
}

.promo-split-left,
.promo-split-right {
    padding: 30px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-split-left {
    background:
        linear-gradient(180deg, rgba(97, 15, 21, 0.42), rgba(31, 18, 21, 0.18)),
        radial-gradient(140% 120% at 0% 0%, rgba(193, 34, 46, 0.34), transparent 58%),
        linear-gradient(135deg, #2d2325, #433233 48%, #2b2323);
    color: #ffffff;
    padding-right: 24px;
}

.promo-split-left h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 2.8vw, 56px);
    line-height: 1.02;
    font-weight: 800;
    max-width: 420px;
}

.promo-split-left p {
    margin: 0;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 1.15vw, 24px);
    line-height: 1.35;
}

.promo-split-center {
    width: min(300px, 24vw);
    margin: 0 auto;
    align-self: end;
}

.promo-split-center img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-split-right {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 247, 0.96)),
        linear-gradient(180deg, #f7f1ef, #f4eeeb);
    align-items: flex-start;
    padding-left: 34px;
}

.promo-split-right h3 {
    margin: 0 0 24px;
    color: #222428;
    font-size: clamp(28px, 2vw, 42px);
    font-weight: 500;
    line-height: 1.08;
    max-width: 440px;
}

.promo-split-btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red-600);
    color: #ffffff;
    font-size: clamp(19px, 1.05vw, 24px);
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.promo-split-btn:hover {
    filter: brightness(1.05);
}

.promo-split-note {
    margin: 10px 0 0;
    color: #4b5563;
    font-size: clamp(13px, 0.8vw, 16px);
    font-weight: 600;
}

.pro-cta-strip {
    background: #ffffff;
    padding-top: 0;
}

.pro-cta-strip-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 28px;
    border-radius: 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(8, 25, 48, 0.94), rgba(8, 25, 48, 0.9)),
        url('../DSC_0099-1024x681.jpg') center/cover no-repeat;
    box-shadow: 0 16px 34px rgba(9, 25, 46, 0.2);
}

.pro-cta-strip-copy h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(24px, 2vw, 38px);
    font-weight: 800;
    line-height: 1.08;
}

.pro-cta-strip-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.pro-cta-strip-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(218, 230, 244, 0.96);
    font-size: clamp(14px, 0.9vw, 17px);
    font-weight: 600;
}

.pro-cta-strip-points i {
    color: #7ee0ad;
}

.pro-cta-strip-btn {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, #e2342d, #bd211d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(15px, 0.95vw, 18px);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(187, 33, 29, 0.24);
}

.pro-cta-strip-btn:hover {
    filter: brightness(1.06);
}

.brand-categories {
    background: #ffffff;
}

.brand-categories-head {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto 28px;
}

.brand-categories-head h2 {
    margin: 0 0 10px;
    color: #303742;
    font-size: clamp(34px, 2.6vw, 56px);
    font-weight: 800;
    line-height: 1.06;
}

.brand-categories-head p {
    margin: 0 auto;
    color: #767d87;
    font-size: clamp(17px, 1.2vw, 24px);
    line-height: 1.35;
    max-width: 980px;
}

.brand-category-panels {
    position: relative;
    min-height: 180px;
}

.brand-category-panel {
    display: none;
}

.brand-category-panel.is-active {
    display: block;
}

.brand-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px 22px;
    align-items: center;
    min-height: 180px;
}

.brand-category-grid img {
    width: 100%;
    max-width: 170px;
    height: 44px;
    margin: 0 auto;
    object-fit: contain;
    display: block;
}

.brand-category-tabs {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
}

.brand-category-tabs button {
    min-height: 52px;
    min-width: 170px;
    padding: 0 24px;
    border: 0;
    border-radius: 16px;
    background: #2f3135;
    color: #ffffff;
    font-size: clamp(18px, 1vw, 22px);
    font-weight: 700;
    cursor: pointer;
}

.brand-category-tabs button.is-active {
    background: linear-gradient(180deg, #ff241b, #d11410);
}

@keyframes brandsScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.stats {
    padding: 54px 0 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.stats-grid article {
    background: #f8fbff;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.stats-grid h3 {
    font-size: clamp(32px, 3.5vw, 46px);
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 6px;
}

.stats-grid p {
    color: var(--slate-500);
    font-size: 14px;
    font-weight: 600;
}

.section-space {
    padding: 34px 0;
}

.mix-section .container {
    display: grid;
    gap: 10px;
}

.mix-dark {
    border: 1px solid var(--slate-200);
    background: #ffffff;
    color: var(--navy-900);
}

.mix-figures {
    padding: 18px 20px;
    border: 0;
    background: transparent;
}

.mix-figures h2 {
    font-size: clamp(24px, 1.8vw, 34px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.mix-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mix-kpi {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mix-kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff1f1;
    border: 1px solid #f1d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mix-kpi-icon img {
    width: 30px;
    height: 30px;
    filter: invert(17%) sepia(94%) saturate(3028%) hue-rotate(346deg) brightness(86%) contrast(93%);
}

.mix-kpi-copy h3 {
    font-size: clamp(28px, 2.2vw, 44px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 4px;
}

.mix-kpi-copy h4 {
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.2;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.mix-kpi-copy p {
    color: var(--slate-700);
    font-size: clamp(13px, 0.88vw, 15px);
    line-height: 1.25;
}

.mix-warehouse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.mix-warehouse-copy {
    padding: 26px 28px 28px;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    background: #ffffff;
}

.mix-warehouse-copy .mini {
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--red-600);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mix-warehouse-copy h2 {
    font-size: clamp(44px, 3.2vw, 68px);
    line-height: 1.06;
    margin-bottom: 12px;
    max-width: 680px;
}

.mix-warehouse-copy p {
    color: var(--slate-700);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.35;
    margin-bottom: 24px;
    max-width: 620px;
}

.mix-warehouse-copy .btn {
    min-height: 44px;
    padding: 0 24px;
    border-radius: 12px;
}

.mix-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mix-benefits div {
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    color: var(--navy-900);
    background: #f8fbff;
    font-size: 26px;
    line-height: 1.15;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mix-warehouse-media {
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    min-height: 360px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(16, 39, 68, 0.12)),
        url('../img/almacen.jpeg') center/cover no-repeat;
}

.services-light {
    padding-top: 26px;
}

.why-mix {
    margin-top: 10px;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.why-mix-head {
    margin-bottom: 10px;
}

.why-mix-head p {
    color: var(--red-600);
    letter-spacing: 1.2px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 2px;
}

.why-mix-head h2 {
    color: #101f3a;
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 1.12;
}

.why-mix-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.why-mix-card {
    border: 1px solid #d8e0eb;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px 10px 10px;
    box-shadow: 0 2px 4px rgba(16, 31, 58, 0.08);
    text-align: center;
}

.why-mix-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 999px;
    background: var(--red-600);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-mix-copy {
    padding: 0;
}

.why-mix-copy h3 {
    color: var(--navy-900);
    font-size: clamp(18px, 1.25vw, 28px);
    line-height: 1.15;
    margin-bottom: 3px;
}

.why-mix-copy p {
    color: var(--slate-500);
    font-size: clamp(14px, 0.98vw, 24px);
    line-height: 1.25;
    margin: 0;
}

.why-mix-copy .why-mix-note {
    margin-top: 3px;
    color: #6b7480;
}

.section-head {
    margin-bottom: 18px;
}

.section-head p {
    color: var(--red-600);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
}

.section-head h2 {
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.15;
    max-width: 900px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-card {
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 22px;
    background: var(--white);
}

.service-card h3 {
    color: var(--navy-900);
    font-size: 22px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--slate-500);
}

/* ── About Intro ─────────────────────────────────── */
.about-intro {
    background: #ffffff;
    padding: 26px 0 34px;
}

.about-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.about-showcase-left h2 {
    color: var(--navy-900);
    font-size: clamp(34px, 2.4vw, 44px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 14px;
}

.about-showcase-lead {
    color: var(--slate-500);
    font-size: clamp(16px, 1.02vw, 20px);
    line-height: 1.45;
    margin: 0 0 18px;
}

.about-feature-list {
    display: grid;
    gap: 12px;
}

.about-feature-item {
    background: #eef0f4;
    border: 1px solid #e3e7ee;
    border-radius: 10px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: start;
}

.about-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #fdeced;
    color: var(--red-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.about-feature-item h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(20px, 1.25vw, 27px);
    line-height: 1.2;
}

.about-feature-item p {
    margin: 2px 0 0;
    color: #3d4b5f;
    font-size: clamp(13px, 0.92vw, 16px);
    line-height: 1.35;
}

.about-showcase-right {
    display: grid;
    gap: 14px;
}

.about-intro-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dce3ed;
    border: 1px solid #d9e1ec;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-media-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(16, 39, 68, 0.34);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    pointer-events: none;
}

.about-media-play i {
    margin-left: 6px;
}

.about-commitment-card {
    background: #eef0f4;
    border: 1px solid #e3e7ee;
    border-radius: 10px;
    padding: 20px 22px;
}

.about-commitment-card h3 {
    margin: 0 0 10px;
    color: var(--navy-900);
    font-size: clamp(30px, 1.8vw, 40px);
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-commitment-card h3 i {
    color: var(--red-600);
    font-size: 0.85em;
}

.about-commitment-card p {
    margin: 0;
    color: #2f3e53;
    font-size: clamp(16px, 1.02vw, 21px);
    line-height: 1.35;
}

/* ── How It Works ─────────────────────────────────── */
.how-it-works {
    background: #ffffff;
    padding-top: 14px;
}

.how-it-works .section-head {
    text-align: center;
    margin-bottom: 24px;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--red-600);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.how-it-works .section-head h2 {
    color: var(--navy-900);
    font-size: clamp(30px, 2.2vw, 44px);
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 22px 20px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(14, 29, 48, 0.06);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--red-600);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(197, 22, 36, 0.3);
}

.step-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--red-600);
}

.step-body {
    position: relative;
}

.step-body h3 {
    color: var(--navy-900);
    font-size: clamp(22px, 1.3vw, 30px);
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.2;
}

.step-body p {
    color: var(--slate-500);
    font-size: clamp(16px, 0.98vw, 20px);
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 1201px) {
    .step-item:not(:last-child)::after {
        content: "\2192";
        position: absolute;
        right: -14px;
        top: 50%;
        transform: translateY(-50%);
        color: #f59aa4;
        font-size: 18px;
        font-weight: 800;
        z-index: 1;
    }
}

/* ── Lo Que Nos Hace Diferentes ───────────────────── */
.tyresna-diff {
    background: #ffffff;
    padding-top: 8px;
}

.tyresna-diff-head {
    text-align: center;
    margin-bottom: 18px;
}

.tyresna-diff-head h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(30px, 2vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    white-space: nowrap;
}

.tyresna-diff-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tyresna-diff-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #dbe2ec;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(14, 29, 48, 0.06);
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: start;
}

.tyresna-diff-icon {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #fff0f0;
    color: var(--red-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.tyresna-diff-card h4 {
    margin: 0 0 8px;
    color: #17243a;
    font-size: clamp(32px, 1.8vw, 44px);
    line-height: 1.15;
}

.tyresna-diff-card p {
    margin: 0;
    color: #4d5c71;
    font-size: clamp(20px, 1.1vw, 28px);
    line-height: 1.35;
}

/* ── Reviews ───────────────────────────────────────── */
.reviews-section {
    background: #ffffff;
    padding-top: 28px;
    border-top: 0;
}

.reviews-title {
    margin: 0 0 20px;
    color: var(--navy-900);
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    font-size: clamp(42px, 3vw, 58px);
    font-weight: 800;
}

.reviews-section .section-kicker {
    text-align: center;
}

.how-it-works .section-kicker,
.tyresna-diff .section-kicker,
.reviews-section .section-kicker {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(14, 29, 48, 0.06);
}

.review-quote {
    margin: 0 0 16px;
    color: #4f5c70;
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.45;
    font-style: italic;
}

.review-quote::before {
    content: "❝";
    color: var(--red-600);
    font-size: 28px;
    line-height: 0;
    margin-right: 6px;
    vertical-align: -6px;
}

.review-card h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(22px, 1.28vw, 30px);
    font-weight: 800;
    line-height: 1.15;
}

.review-city {
    margin: 4px 0 0;
    color: #8a95a5;
    font-size: clamp(15px, 0.9vw, 18px);
}

.reviews-score {
    margin: 18px 0 0;
    color: #475468;
    text-align: center;
    font-size: clamp(20px, 1.08vw, 24px);
    font-weight: 700;
}

.reviews-score span {
    color: #f4b000;
    letter-spacing: 0.14em;
    font-weight: 900;
}

.tyresna-cta-strip {
    padding-top: 0;
}

.tyresna-cta-shell {
    background:
        linear-gradient(180deg, rgba(188, 13, 13, 0.92), rgba(156, 8, 8, 0.95)),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08) 0 12%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0 10%, transparent 45%);
    color: #ffffff;
    border-radius: 0;
    padding: 26px 20px 18px;
    text-align: center;
}

.tyresna-cta-shell h2 {
    margin: 0;
    font-size: clamp(34px, 2.4vw, 50px);
    line-height: 1.15;
}

.tyresna-cta-shell p {
    margin: 8px 0 0;
    font-size: clamp(18px, 1.08vw, 24px);
}

.tyresna-cta-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tyresna-cta-btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: clamp(18px, 1vw, 22px);
    font-weight: 700;
}

.tyresna-cta-btn-light {
    background: #ffffff;
    color: #1b2f4d;
}

.tyresna-cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.tyresna-cta-btn-dark {
    background: rgba(16, 26, 43, 0.86);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.16);
}

.tyresna-cta-btn-dark:hover {
    background: rgba(16, 26, 43, 1);
}

.tyresna-cta-points {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: clamp(15px, 0.9vw, 18px);
    font-weight: 600;
}

.tyresna-cta-points i {
    margin-right: 6px;
}

/* ── Industries ────────────────────────────────────── */
.industries {
    background: #ffffff;
    border-top: 0;
    border-bottom: 0;
}

.industries .section-head {
    text-align: center;
}

.industries .section-head h2 {
    color: var(--navy-900);
    max-width: none;
    margin-bottom: 2px;
    font-size: clamp(30px, 2.7vw, 44px);
}

.vehicles-subtitle {
    color: var(--slate-500);
    font-size: clamp(14px, 1.05vw, 18px);
    margin-bottom: 0;
}

.vehicles-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.vehicle-item {
    border: 1px solid var(--slate-200);
    background: #ffffff;
    padding: 8px 8px 10px;
    border-radius: 12px;
    overflow: hidden;
}

.vehicle-item h3 {
    color: var(--navy-900);
    font-size: clamp(22px, 1.65vw, 30px);
    font-weight: 500;
    margin-bottom: 7px;
    line-height: 1.15;
}

.vehicle-item img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--slate-200);
}

.vehicle-btn {
    margin-top: 9px;
    min-height: 40px;
    width: 100%;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, var(--red-600), #7f1313);
    color: var(--white);
    font-size: clamp(16px, 1.15vw, 20px);
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.vehicle-btn:hover {
    filter: brightness(1.08);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.coverage-copy {
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
}

.coverage-copy .mini {
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--red-600);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.coverage-copy h2 {
    font-size: clamp(24px, 2.15vw, 34px);
    line-height: 1.12;
    margin-bottom: 10px;
}

.coverage-copy > p:not(.mini) {
    color: var(--slate-500);
    margin-bottom: 14px;
}

.coverage-delivery-card {
    margin-top: 2px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fafd, #f3f6fb);
    padding: 12px;
}

.coverage-delivery-kicker {
    margin: 0;
    color: var(--red-600);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: clamp(12px, 0.74vw, 15px);
    font-weight: 900;
}

.coverage-delivery-card h3 {
    margin: 0 0 8px;
    color: #0f203a;
    font-size: clamp(30px, 2.3vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.2px;
}

.coverage-delivery-card p {
    margin: 0;
    color: #6a7381;
    font-size: clamp(15px, 0.98vw, 20px);
    line-height: 1.28;
}

.coverage-map-mini {
    position: relative;
    margin-top: 12px;
    min-height: 126px;
    border-radius: 12px;
    border: 0 !important;
    outline: 0;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
}

.coverage-map-mini::before,
.coverage-map-mini::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #f3f6fb;
    z-index: 2;
    pointer-events: none;
}

.coverage-map-mini::before {
    top: 0;
}

.coverage-map-mini::after {
    bottom: 0;
}

.coverage-map-embed {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    display: block;
    border: 0 !important;
    outline: 0;
    box-shadow: none;
    border-radius: 12px;
    z-index: 0;
}

.coverage-delivery-badge {
    position: absolute;
    right: 14px;
    bottom: 10px;
    z-index: 1;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    background: var(--red-600);
}

.coverage-delivery-badge:hover {
    filter: brightness(1.08);
}

.coverage-media {
    border-radius: 16px;
    min-height: 282px;
    background:
        linear-gradient(135deg, rgba(16, 39, 68, 0.2), rgba(16, 39, 68, 0.3)),
        url('../img/almacen.jpeg') center/cover no-repeat;
}

.final-cta {
    margin-top: 18px;
    background:
        url('../img/fondo de abajo.jpeg') center/cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
}

.final-cta-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 8px 2px;
}

.final-cta-copy {
    min-width: 0;
    color: var(--white);
}

.final-cta-copy h2 {
    font-size: clamp(26px, 2.1vw, 40px);
    line-height: 1.12;
    margin: 0 0 2px;
}

.final-cta-sub {
    color: rgba(241, 247, 255, 0.92);
    font-size: clamp(13px, 1vw, 18px);
    margin: 0;
}

.final-cta-points {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
}

.final-cta-points span {
    color: rgba(229, 238, 251, 0.95);
    font-size: clamp(12px, 0.92vw, 16px);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.final-cta-points i {
    color: #22c55e;
    margin-right: 7px;
    font-size: 13px;
}

.final-cta-action {
    flex: 0 0 auto;
    text-align: right;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(18px, 1.05vw, 22px);
    font-weight: 800;
    background: var(--red-600);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.final-cta-btn:hover {
    filter: brightness(1.08);
}

.final-cta-action p {
    margin: 5px 0 0;
    font-size: clamp(12px, 0.78vw, 14px);
    color: rgba(214, 227, 243, 0.95);
}

.site-footer {
    position: relative;
    background: #0d0d0d;
    color: #e6edf8;
    border-top: 0;
    padding: 0 0 14px;
    overflow: hidden;
}

.site-footer.no-top-line {
    border-top: 0;
}

.site-footer.no-top-line .footer-hero::before {
    background: #f3f4f6;
    box-shadow: none;
    border-bottom: 4px solid #d90e18;
}

.site-footer.no-top-line .footer-hero::after {
    display: none;
}

.site-footer.no-top-line .footer-hero {
    padding: 56px 0 52px;
}

.footer-hero {
    position: relative;
    text-align: center;
    padding: 40px 0 36px;
    border-bottom: 0;
    margin-bottom: 0;
    z-index: 1;
}

.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 248, 0.96) 100%),
        radial-gradient(circle at 10% 50%, rgba(13, 29, 48, 0.04) 0%, rgba(13, 29, 48, 0) 54%),
        radial-gradient(circle at 90% 50%, rgba(13, 29, 48, 0.04) 0%, rgba(13, 29, 48, 0) 54%);
    border-top: 0;
    box-shadow: inset 0 3px 0 #e42424, inset 0 -3px 0 #e42424;
    z-index: -1;
}

.footer-hero::after {
    display: none;
}

.footer-hero > * {
    position: relative;
    z-index: 1;
}

.footer-main-logo {
    width: min(240px, 66%);
    height: auto;
    display: inline-block;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-hero h3 {
    margin: 0;
    font-size: clamp(36px, 2.6vw, 50px);
    line-height: 1.25;
    color: #141b27;
}

.footer-hero p {
    margin: 8px 0 0;
    font-size: clamp(15px, 1.1vw, 22px);
    color: #4c5668;
}

.footer-hero-btn {
    margin-top: 16px;
    min-height: 46px;
    padding: 0 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(16px, 1vw, 20px);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: var(--red-600);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 22px rgba(226, 38, 38, 0.28);
}

.footer-hero-btn:hover {
    filter: brightness(1.08);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    justify-content: center;
    column-gap: clamp(24px, 4vw, 72px);
    gap: 24px;
    align-items: start;
    padding: 42px 0 24px;
    border-bottom: 0;
    justify-items: start;
}

.footer-top-col {
    text-align: left;
    display: block;
}

.footer-top-col h4 {
    position: relative;
    display: inline-block;
    font-size: clamp(22px, 1.5vw, 30px);
    letter-spacing: 0.4px;
    color: #ffffff;
    margin-bottom: 14px;
    text-align: left;
    padding-bottom: 8px;
}

.footer-top-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: #ef2b2b;
}

.footer-top-col a,
.footer-top-col p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: clamp(14px, 1.02vw, 20px);
    color: #eef3fb;
    margin-bottom: 10px;
    line-height: 1.5;
    text-decoration: none;
}

.footer-top-col a i,
.footer-top-col p i {
    width: 16px;
    min-width: 16px;
    margin-right: 8px;
    margin-top: 4px;
    color: #ef2b2b;
    text-align: center;
}

.footer-top-col a:hover {
    color: #ffffff;
}

.footer-follow-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px 0 14px;
    border-top: 1px solid rgba(229, 237, 248, 0.2);
}

.footer-follow-row p {
    margin: 0;
    font-size: clamp(19px, 1.15vw, 24px);
    font-weight: 700;
    color: #ffffff;
}

.footer-social-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-pills a {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(14px, 0.95vw, 18px);
    font-weight: 700;
}

.pill-whatsapp {
    background: #22a652;
}

.pill-facebook {
    background: #3b5998;
}

.pill-instagram {
    background: linear-gradient(90deg, #f58529, #dd2a7b);
}

.footer-social-pills a:hover {
    filter: brightness(1.08);
}

.footer-legal-row {
    text-align: center;
    padding-top: 8px;
}

.footer-legal-row p {
    margin: 0;
    color: #c4d0e1;
    font-size: clamp(13px, 0.86vw, 16px);
}

@media (max-width: 1100px) {
    .desktop-cta {
        display: none;
    }

    .site-nav {
        gap: 16px;
        font-size: 14px;
    }

    .quick-links-grid,
    .stats-grid,
    .services-grid,
    .reviews-grid,
    .vehicles-grid,
    .why-mix-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-it-works .section-head h2 {
        white-space: normal;
    }

    .top-sales-slider {
        min-height: 580px;
    }

    .top-sales-media img {
        width: min(360px, 46vw);
    }

    .top-sales-media img.aplus-tyre-img {
        width: min(460px, 56vw);
    }

    .promo-split-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(150px, 0.6fr) minmax(0, 0.95fr);
        min-height: 300px;
    }

    .promo-split-left {
        padding-right: 20px;
    }

    .promo-split-center {
        width: min(220px, 22vw);
    }

    .promo-split-right {
        padding-left: 24px;
    }

    .pro-cta-strip-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .pro-cta-strip-btn {
        align-self: flex-start;
    }

    .brand-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .windforce-card {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .windforce-copy {
        padding: 22px;
    }

    .windforce-media {
        min-height: 220px;
    }

    .brand-category-tabs {
        gap: 18px;
    }

    .brands-list {
        gap: 26px;
        padding: 10px 14px;
    }

    .brands-list img {
        height: 28px;
    }

    .mix-kpis,
    .mix-benefits {
        grid-template-columns: 1fr;
    }

    .about-showcase {
        grid-template-columns: 1fr;
    }

    .about-showcase-right {
        gap: 12px;
    }

    .mix-kpi {
        border-bottom: 1px solid var(--slate-200);
        padding-bottom: 10px;
    }

    .mix-kpi:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .tyresna-diff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mix-warehouse {
        grid-template-columns: 1fr;
    }

    .final-cta-shell {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .final-cta-action {
        text-align: left;
    }

    .footer-follow-row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 820px) {
    :root {
        --container: calc(100% - 24px);
    }

    .topbar {
        font-size: 11px;
    }

    .topbar-inner {
        min-height: auto;
        padding: 8px 0;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .topbar-contact {
        width: 100%;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--slate-200);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 12px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero {
        min-height: 430px;
    }

    .hero-inner {
        max-width: 100%;
        padding: 24px 0 28px;
    }

    .hero h1 {
        font-size: clamp(30px, 8vw, 42px);
        max-width: 11ch;
    }

    .quick-links {
        margin-top: -18px;
    }

    .quick-links-grid {
        gap: 10px;
    }

    .quick-item {
        padding: 18px;
        border-radius: 12px;
    }

    .quick-item h3 {
        font-size: 18px;
    }

    .quick-item p {
        font-size: 15px;
    }

    .quick-links-grid,
    .stats-grid,
    .services-grid,
    .reviews-grid,
    .vehicles-grid,
    .why-mix-grid {
        grid-template-columns: 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .tyresna-diff-grid {
        grid-template-columns: 1fr;
    }

    .tyresna-diff-head h2 {
        white-space: normal;
    }

    .tyresna-diff-card {
        grid-template-columns: 56px 1fr;
        gap: 10px;
    }

    .tyresna-cta-shell {
        padding: 20px 14px 16px;
    }

    .tyresna-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tyresna-cta-btn {
        justify-content: center;
        width: 100%;
    }

    .tyresna-cta-points {
        flex-direction: column;
        gap: 8px;
    }

    .about-feature-item {
        grid-template-columns: 46px 1fr;
        gap: 10px;
        padding: 12px;
    }

    .about-feature-icon {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .about-media-play {
        width: 74px;
        height: 74px;
        font-size: 24px;
    }

    .about-commitment-card {
        padding: 16px;
    }

    .brands-marquee {
        margin-top: 8px;
    }

    .brands-track {
        animation-duration: 42s;
    }

    .top-sales-header {
        max-width: none;
        margin-bottom: 14px;
    }

    .top-sales-slider {
        min-height: 420px;
    }

    .top-sales-copy h3 {
        font-size: clamp(20px, 6.2vw, 28px);
    }

    .top-sales-copy p {
        font-size: clamp(14px, 4vw, 18px);
        margin-top: 8px;
    }

    .top-sales-media img {
        width: min(210px, 58vw);
    }

    .top-sales-media img.aplus-tyre-img {
        width: min(280px, 72vw);
    }

    .top-sales-arrow {
        top: 58%;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .top-sales-arrow-left {
        left: -8px;
    }

    .top-sales-arrow-right {
        right: -8px;
    }

    .promo-split-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .promo-split-left,
    .promo-split-right {
        padding: 22px 18px;
    }

    .promo-split-left {
        padding-right: 18px;
    }

    .promo-split-left h2,
    .promo-split-left p {
        max-width: none;
    }

    .promo-split-center {
        width: min(220px, 62vw);
        margin: 4px auto 6px;
        order: 2;
        align-self: center;
    }

    .promo-split-right {
        order: 3;
        padding-left: 18px;
        align-items: stretch;
    }

    .promo-split-right h3 {
        margin-bottom: 16px;
        font-size: clamp(24px, 7vw, 34px);
    }

    .promo-split-btn {
        width: 100%;
        text-align: center;
        font-size: 17px;
        letter-spacing: 0.02em;
    }

    .pro-cta-strip-shell {
        padding: 18px;
        gap: 16px;
    }

    .pro-cta-strip-copy h2 {
        font-size: clamp(22px, 6.8vw, 30px);
    }

    .pro-cta-strip-points {
        flex-direction: column;
        gap: 8px;
    }

    .pro-cta-strip-btn {
        width: 100%;
        justify-content: center;
    }

    .brand-categories-head {
        margin-bottom: 22px;
        text-align: left;
    }

    .brand-categories-head h2 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .brand-categories-head p {
        font-size: clamp(16px, 4.7vw, 19px);
    }

    .brand-category-panels {
        min-height: auto;
    }

    .brand-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
        min-height: auto;
    }

    .brand-category-grid img {
        max-width: 140px;
        height: 38px;
    }

    .brand-category-tabs {
        gap: 12px;
        justify-content: stretch;
    }

    .brand-category-tabs button {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        font-size: 16px;
    }

    .brands-list {
        gap: 18px;
        padding: 8px 10px;
    }

    .brands-list img {
        height: 24px;
    }

    .windforce-highlight {
        padding: 10px 0 12px;
    }

    .windforce-card {
        border-radius: 14px;
        gap: 0;
        padding: 0;
    }

    .windforce-overline {
        gap: 8px;
        font-size: clamp(13px, 3.8vw, 16px);
    }

    .windforce-overline::before,
    .windforce-overline::after {
        width: 18vw;
    }

    .windforce-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .windforce-logo {
        width: min(260px, 90%);
    }

    .windforce-badge {
        min-height: 36px;
        padding: 0 14px;
        font-size: clamp(14px, 4.2vw, 18px);
    }

    .windforce-copy p {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .windforce-copy {
        max-width: 100%;
        padding: 16px;
    }

    .windforce-media {
        min-height: 180px;
    }

    .mix-figures {
        padding: 12px;
    }

    .mix-warehouse {
        gap: 12px;
    }

    .mix-warehouse-copy {
        padding: 16px;
    }

    .mix-warehouse-media {
        min-height: 260px;
    }

    .mix-benefits div {
        font-size: 20px;
        min-height: 72px;
    }

    .vehicle-item h3 {
        font-size: 24px;
    }

    .vehicle-btn {
        font-size: 18px;
    }

    .coverage-map-mini {
        min-height: 150px;
        padding: 0;
    }

    .coverage-delivery-badge {
        min-height: 34px;
        font-size: 14px;
        padding: 0 12px;
    }

    .hero {
        min-height: 520px;
    }

    .commercial-banner {
        padding-top: 0;
    }

    .commercial-banner-inner {
        padding: 12px;
        gap: 12px;
    }

    .commercial-banner-media {
        min-height: 225px;
        max-height: 255px;
    }

    .commercial-banner-copy h3 {
        font-size: clamp(30px, 8.2vw, 42px);
    }

    .commercial-banner-copy p {
        font-size: clamp(17px, 4.6vw, 24px);
    }

    .commercial-banner-list li {
        font-size: clamp(16px, 4.4vw, 22px);
    }

    .commercial-banner-btn {
        width: 100%;
        min-height: 56px;
        font-size: clamp(22px, 5.6vw, 30px);
    }

    .hero-inner {
        padding: 24px 0 28px;
        transform: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn,
    .btn-primary,
    .btn-ghost {
        width: 100%;
        min-height: 50px;
    }

    .final-cta-shell {
        align-items: center;
        text-align: center;
    }

    .final-cta-points {
        justify-content: center;
    }

    .final-cta-action {
        width: 100%;
        text-align: center;
    }

    .final-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        row-gap: 16px;
        padding: 28px 0 14px;
    }

    .footer-top-col {
        width: min(420px, 100%);
    }

    .footer-top-col h4 {
        text-align: center;
    }

    .footer-top-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-hero {
        text-align: center;
    }

    .footer-main-logo {
        width: min(260px, 92%);
    }

    .footer-hero-btn {
        width: min(320px, 100%);
        font-size: 17px;
    }

    .footer-hero::after {
        display: none;
    }

    .footer-follow-row {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-social-pills {
        width: auto;
        gap: 8px;
        justify-content: center;
    }

    .footer-social-pills a {
        flex: 0 1 auto;
        justify-content: center;
        min-width: 122px;
    }

    .topbar-inner {
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation: none;
    }
}

/* ================================================================
   Selector de idioma (lang-switcher)
   ================================================================ */
.topbar-inner {
    position: relative;
}

.lang-switcher {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: inherit;
    border-radius: 5px;
    padding: 3px 9px;
    font-size: 12px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lang-arrow {
    font-size: 9px;
    transition: transform 0.18s;
}

.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 9000;
    min-width: 150px;
}

.lang-menu.is-open {
    display: block;
    animation: langMenuIn 0.15s ease;
}

@keyframes langMenuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: 0;
    color: #d0d6e0;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background 0.14s, color 0.14s;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.lang-option.is-active {
    color: #ffffff;
    font-weight: 700;
    background: rgba(213, 48, 63, 0.22);
}

/* Responsive: ocultar en mobile muy pequeño si no hay espacio */
@media (max-width: 480px) {
    .footer-hero::after {
        display: none;
    }

    .topbar-contact span:nth-child(n + 3) {
        display: none;
    }

    .header-inner {
        min-height: 64px;
    }

    .hero {
        min-height: 380px;
    }

    .hero-inner {
        padding: 18px 0 22px;
    }

    .hero h1 {
        font-size: clamp(28px, 10vw, 36px);
    }

    .quick-links {
        margin-top: -10px;
    }

    .quick-item {
        padding: 16px;
    }

    .quick-item h3 {
        font-size: 17px;
    }

    .quick-item p {
        font-size: 14px;
    }

    .lang-btn {
        padding: 3px 7px;
        font-size: 11px;
    }
}