/* Optomedic — Minimal · Sharp · Animated */

:root {
    /* Azules del logotipo OPTOMEDIC */
    --primary: #2050a0;
    --primary-dark: #103870;
    --primary-mid: #3090c0;
    --primary-light: #edf4fb;

    /* Verdes del logotipo (support + swooshes) */
    --accent: #7ab800;
    --accent-bright: #30c020;
    --accent-dark: #5a9200;
    --accent-light: #e8f6dc;
    --accent-mint: #b8e874;
    --accent-soft: #d4f0c0;

    --text: #0f1720;
    --text-muted: #5c6b7a;
    --bg: #ffffff;
    --bg-alt: #f6f9f4;
    --bg-dark: #0f1720;
    --footer-bg: #0f1720;
    --border: #e4e9ef;
    --border-strong: #c8d1db;
    --shadow: 0 2px 12px rgba(32, 80, 160, 0.06);
    --shadow-hover: 0 8px 28px rgba(32, 80, 160, 0.1);
    --radius: 6px;
    --radius-sm: 4px;
    --radius-lg: 10px;
    --radius-btn: 10px;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.35s var(--ease);
    --header-h: 72px;
    --product-photo-bg:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 255, 255, 0.9), transparent 70%),
        linear-gradient(160deg, #edf3f9 0%, #e8f2e4 100%);
}

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

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--accent-light);
    color: var(--primary-dark);
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

body.page-loaded .hero-content > * {
    animation: fadeUp 0.7s var(--ease) both;
}

body.page-loaded .hero-content h1 { animation-delay: 0.05s; }
body.page-loaded .hero-content .hero-line { animation-delay: 0.15s; }
body.page-loaded .hero-content p { animation-delay: 0.2s; }
body.page-loaded .hero-actions { animation-delay: 0.3s; }
body.page-loaded .hero-stats { animation-delay: 0.4s; }
body.page-loaded .hero-visual { animation: fadeUp 0.8s var(--ease) 0.25s both; }

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul { list-style: none; }

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

/* ── Reveal on scroll ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
}

.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius-btn);
    cursor: pointer;
    overflow: hidden;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    text-decoration: none;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-dark);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.btn-primary:hover {
    color: #fff;
    border-color: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-outline::before {
    background: var(--text);
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--accent-dark);
}

.btn-outline:hover::before {
    background: var(--accent);
}

.btn-white {
    background: #fff;
    color: var(--text);
    border-color: #fff;
}

.btn-white::before {
    background: var(--primary-light);
}

.btn-white:hover {
    color: var(--primary-dark);
    border-color: #fff;
}

.btn-sm {
    padding: 0.65rem 1.25rem;
    font-size: 0.72rem;
    border-radius: var(--radius-btn);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    transition: border-color var(--transition), transform 0.4s var(--ease), box-shadow var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border-strong);
    box-shadow: var(--shadow);
}

.site-header.hide-up {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition);
}

.logo:hover img {
    opacity: 0.75;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text);
    background: none;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.3s var(--ease);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 0.6rem 1.25rem;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown a::after { display: none; }

.dropdown a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 80, 160, 0.04) 0%, rgba(122, 184, 0, 0.06) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hero-content h1 .hero-title-line {
    display: block;
}

.hero-content h1 .hero-title-line:first-of-type {
    white-space: normal;
}

.hero-content h1 .hero-title-accent {
    color: var(--primary);
}

.hero-line {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-bright));
    margin-bottom: 1.75rem;
    transform-origin: left;
    animation: lineGrow 0.8s var(--ease) 0.3s both;
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 480px;
    font-weight: 400;
}

.hero-content p strong {
    font-weight: 600;
    color: var(--text);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-actions .btn {
    min-width: 11.5rem;
    padding-left: 2.6rem;
    padding-right: 2.6rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    padding: 1.25rem 1rem;
    text-align: left;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--accent-light);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual { position: relative; }

/* Hero equipment showcase */
.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-showcase-main {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    aspect-ratio: 4 / 5;
    max-height: 420px;
}

.hero-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.6s var(--ease);
}

.hero-showcase-main:hover img {
    transform: scale(1.03);
}

.hero-showcase-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--border);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.hero-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hero-showcase-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-showcase-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(48, 192, 32, 0.12);
}

.hero-showcase-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 0.75rem;
}

.hero-showcase-item span {
    display: block;
    padding: 0.45rem 0.5rem;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    background: #fff;
}

/* ── Home visual upgrade ── */
.hero--services {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    background-color: #1a2a3a;
    background-image: url('../images/fondo.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
}

.hero--services::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
    mask-image: none;
    background-image: none;
    filter: none;
    transform: none;
    background: linear-gradient(
        100deg,
        rgba(8, 18, 32, 0.72) 0%,
        rgba(8, 18, 32, 0.48) 42%,
        rgba(8, 18, 32, 0.28) 68%,
        rgba(8, 18, 32, 0.18) 100%
    );
    pointer-events: none;
}

.hero--services::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    clip-path: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0.1) 28%,
        rgba(0, 0, 0, 0.1) 72%,
        rgba(0, 0, 0, 0.28) 100%
    );
    pointer-events: none;
}

.hero-orb {
    display: none;
}

.hero--services .hero-grid {
    padding: 5rem 0 4.5rem;
    z-index: 1;
}

.hero--services .hero-grid--single {
    display: block;
}

.hero--services .hero-grid--single .hero-content {
    max-width: 560px;
    width: 100%;
}

.hero--services .hero-content {
    padding: 1.65rem 1.6rem 1.75rem;
    border-radius: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.hero--services .hero-content h1 {
    font-size: clamp(2.15rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero--services .hero-content h1 .hero-title-accent {
    color: #8fd4ff;
}

.hero--services .hero-content > p {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero--services .hero-content > p strong {
    color: #fff;
}

.hero--services .hero-line {
    background: linear-gradient(90deg, #8fd4ff, var(--accent-bright));
}

.hero--services .btn-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.hero--services .btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-mint);
    margin-bottom: 1.15rem;
    padding: 0.45rem 0.85rem 0.45rem 0.65rem;
    background: transparent;
    border: none;
    border-radius: 999px;
    backdrop-filter: none;
}

.hero-eyebrow-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 0 4px rgba(48, 192, 32, 0.22);
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(48, 192, 32, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(48, 192, 32, 0.08); }
}

.hero--services .hero-stats {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.hero--services .stat-item {
    background: transparent;
    border: none;
}

.hero--services .stat-item + .stat-item {
    border-left: none;
}

.hero--services .stat-item:hover {
    background: transparent;
}

.hero--services .hero-panel {
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero--services .hero-panel-glow {
    display: none;
}

.hero--services .hero-panel figcaption {
    background: transparent;
    border-top: none;
    backdrop-filter: none;
}

.hero--services .hero-panel-chip {
    background: transparent;
    border: none;
    color: #fff !important;
    padding-left: 0;
    padding-right: 0;
}

.hero--services .stat-item strong {
    color: #fff;
}

.hero--services .stat-item span {
    color: rgba(255, 255, 255, 0.72);
}

.hero--services .hero-panel figcaption strong {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero--services .hero-panel figcaption span:not(.hero-panel-chip) {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.hero--services .hero-stats .stat-item strong {
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    letter-spacing: -0.01em;
}

.hero-panel {
    position: relative;
    margin: 0;
    border: 1px solid rgba(32, 80, 160, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff 0%, #edf4fb 48%, #eef7e4 100%);
    box-shadow:
        0 20px 50px rgba(16, 56, 112, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
}

.hero-panel-glow {
    position: absolute;
    inset: auto -10% -20% 20%;
    height: 55%;
    background: radial-gradient(circle, rgba(122, 184, 0, 0.22), transparent 70%);
    pointer-events: none;
}

.hero-panel-media {
    position: relative;
    padding: 1.75rem 1.75rem 0.5rem;
}

.hero-panel-media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(16, 56, 112, 0.18));
    transition: transform 0.7s var(--ease);
}

.hero-panel:hover .hero-panel-media img {
    transform: translateY(-6px) scale(1.03);
}

.hero-panel figcaption {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem 1.4rem;
    border-top: 1px solid rgba(32, 80, 160, 0.1);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
}

.hero-panel figcaption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.hero-panel figcaption span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-panel-chip {
    flex-shrink: 0;
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary) !important;
    background: var(--primary-light);
    border: 1px solid rgba(32, 80, 160, 0.14);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
}

/* Home services — vertical cards */
.home-services {
    background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(32, 80, 160, 0.07), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f5f9f3 100%);
    overflow: hidden;
}

.home-services-header {
    max-width: 720px;
}

.home-services-header .section-label {
    margin-bottom: 0.65rem;
}

.home-services-header h2 {
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, var(--primary-dark) 10%, var(--primary) 45%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-services-header p {
    font-size: 1.02rem;
    max-width: 34rem;
    margin-inline: auto;
    opacity: 0.88;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.home-service {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.85rem 1.5rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(16, 56, 112, 0.08);
    transition:
        border-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        transform 0.55s var(--ease),
        opacity 0.55s var(--ease),
        filter 0.4s var(--ease);
}

.home-service--sale {
    background:
        linear-gradient(165deg, #0c2a52 0%, #143868 48%, #1a4578 100%);
    border-color: rgba(143, 184, 230, 0.18);
    color: #fff;
}

.home-service--advice {
    background:
        linear-gradient(165deg, #0d3d52 0%, #155a72 48%, #1c6d88 100%);
    border-color: rgba(140, 210, 230, 0.2);
    color: #fff;
}

.home-service--support {
    background:
        linear-gradient(165deg, #2f4a0a 0%, #3f6510 48%, #4f7c14 100%);
    border-color: rgba(184, 232, 116, 0.22);
    color: #fff;
}

.home-service.reveal {
    transition-delay: var(--service-delay, 0s);
}

.home-service.reveal.visible:hover {
    transform: translateY(-8px);
}

.home-service::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-bright));
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.home-service--sale::before {
    background: linear-gradient(90deg, #8fd4ff, #3090c0);
    transform: scaleX(1);
}

.home-service--advice::before {
    background: linear-gradient(90deg, #7ad4ef, #30c0c0);
    transform: scaleX(1);
}

.home-service--support::before {
    background: linear-gradient(90deg, #b8e874, #30c020);
    transform: scaleX(1);
}

.home-service::after {
    content: '';
    position: absolute;
    inset: auto -25% -40% 35%;
    height: 60%;
    pointer-events: none;
    opacity: 0.45;
    transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
}

.home-service--sale::after {
    background: radial-gradient(circle, rgba(143, 212, 255, 0.22), transparent 68%);
}

.home-service--advice::after {
    background: radial-gradient(circle, rgba(122, 220, 240, 0.22), transparent 68%);
}

.home-service--support::after {
    background: radial-gradient(circle, rgba(184, 232, 116, 0.24), transparent 68%);
}

.home-service:hover {
    box-shadow: 0 24px 52px rgba(8, 20, 40, 0.35);
    filter: saturate(1.08) brightness(1.05);
}

.home-service:hover::before {
    transform: scaleX(1);
}

.home-service:hover::after {
    opacity: 0.75;
    transform: translateY(-8px);
}

.home-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.35rem;
}

.home-service-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.home-service--sale .home-service-num { color: rgba(143, 212, 255, 0.35); }
.home-service--advice .home-service-num { color: rgba(122, 220, 240, 0.38); }
.home-service--support .home-service-num { color: rgba(184, 232, 116, 0.4); }

.home-service:hover .home-service-num {
    transform: translateY(-2px);
}

.home-service--sale:hover .home-service-num { color: #8fd4ff; }
.home-service--advice:hover .home-service-num { color: #7ad4ef; }
.home-service--support:hover .home-service-num { color: #b8e874; }

.home-service-icon {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.45s var(--ease);
}

.home-service--sale .home-service-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(143, 212, 255, 0.28);
}

.home-service--advice .home-service-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(122, 220, 240, 0.28);
}

.home-service--support .home-service-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(184, 232, 116, 0.3);
}

.home-service:hover .home-service-icon {
    transform: translateY(-4px) rotate(-4deg) scale(1.06);
    animation: iconBob 1.4s var(--ease) infinite;
}

@keyframes iconBob {
    0%, 100% { transform: translateY(-4px) rotate(-4deg) scale(1.06); }
    50% { transform: translateY(-8px) rotate(-2deg) scale(1.08); }
}

.home-service-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    transition: fill 0.35s var(--ease);
}

.home-service--sale .home-service-icon svg { fill: #8fd4ff; }
.home-service--advice .home-service-icon svg { fill: #7ad4ef; }
.home-service--support .home-service-icon svg { fill: #b8e874; }

.home-service-body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.home-service-body h3 {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-service--support .home-service-body h3 {
    color: #fff;
}

.home-service-body p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin-bottom: 1.1rem;
    line-height: 1.65;
}

.home-service-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.home-service-body li {
    position: relative;
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.55rem 0.75rem 0.55rem 1.7rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: none;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.home-service-body li::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.home-service--sale .home-service-body li::before { background: #8fd4ff; }
.home-service--advice .home-service-body li::before { background: #7ad4ef; }
.home-service--support .home-service-body li::before { background: #b8e874; }

.home-service:hover .home-service-body li {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
}

.home-service-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: auto;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f1720;
    text-decoration: none;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}

.home-service--sale .home-service-link {
    background: linear-gradient(135deg, #e8f4ff, #cfe7ff);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    color: #0c2a52;
}

.home-service--advice .home-service-link {
    background: linear-gradient(135deg, #e5f8fd, #c8eef8);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    color: #0d3d52;
}

.home-service--support .home-service-link {
    background: linear-gradient(135deg, #f0fad8, #dcefb0);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    color: #2f4a0a;
}

.home-service-link span {
    transition: transform 0.3s var(--ease);
}

.home-service-link:hover {
    transform: translateY(-2px);
}

.home-service--sale .home-service-link:hover {
    background: #fff;
    color: #0c2a52;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.home-service--advice .home-service-link:hover {
    background: #fff;
    color: #0d3d52;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.home-service--support .home-service-link:hover {
    background: #fff;
    color: #2f4a0a;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.home-service-link:hover span {
    transform: translateX(4px);
}

/* Catalog lite */
.catalog-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(32, 80, 160, 0.08), transparent 60%),
        radial-gradient(ellipse 45% 40% at 0% 100%, rgba(122, 184, 0, 0.07), transparent 55%),
        linear-gradient(180deg, #f4f7f2 0%, #ffffff 48%, #f6f9f4 100%);
}

.catalog-header {
    max-width: 640px;
}

.catalog-header h2 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

.catalog-lite {
    display: grid;
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
}

.catalog-lite-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.35rem;
    padding: 0.85rem 1.15rem 0.85rem 0.85rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(32, 80, 160, 0.1);
    border-radius: 18px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(16, 56, 112, 0.05);
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        transform 0.35s var(--ease),
        background 0.35s var(--ease);
}

.catalog-lite-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent-bright));
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.catalog-lite-item:hover {
    border-color: rgba(122, 184, 0, 0.35);
    box-shadow: 0 18px 40px rgba(16, 56, 112, 0.12);
    transform: translateY(-3px);
    background: #fff;
    color: inherit;
}

.catalog-lite-item:hover::before {
    opacity: 1;
}

.catalog-lite-media {
    position: relative;
    isolation: isolate;
    width: 104px;
    height: 84px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 255, 255, 0.9), transparent 70%),
        linear-gradient(160deg, #edf3f9 0%, #e8f2e4 100%);
    border: 1px solid rgba(32, 80, 160, 0.08);
}

.catalog-lite-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.45rem;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse 118% 112% at 50% 50%, #000 78%, transparent 100%);
    mask-image: radial-gradient(ellipse 118% 112% at 50% 50%, #000 78%, transparent 100%);
    transition: transform 0.45s var(--ease);
}

.catalog-lite-item:hover .catalog-lite-media img {
    transform: scale(1.08);
}

.catalog-lite-index {
    position: absolute;
    left: 0.4rem;
    top: 0.35rem;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 0.15rem 0.4rem;
    min-width: 0;
}

.catalog-lite-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.catalog-lite-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 34rem;
}

.catalog-lite-meta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #103870, #2050a0);
    color: #fff;
    box-shadow: 0 8px 18px rgba(16, 56, 112, 0.2);
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.catalog-lite-count {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.catalog-lite-arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s var(--ease);
}

.catalog-lite-item:hover .catalog-lite-meta {
    background: linear-gradient(135deg, #0c2c58, #103870);
    transform: translateX(2px);
}

.catalog-lite-item:hover .catalog-lite-arrow {
    transform: translateX(3px);
}

.section-footer-link {
    text-align: center;
    margin-top: 2rem;
}

.catalog-section .section-footer-link .btn {
    min-width: 220px;
}

/* Store highlight */
.store-highlight {
    position: relative;
    overflow: hidden;
    background-color: #103870;
    background-image: url('../images/tienda.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    border-bottom: none;
}

.store-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 18, 32, 0.78) 0%,
        rgba(8, 18, 32, 0.58) 45%,
        rgba(8, 18, 32, 0.42) 100%
    );
    pointer-events: none;
}

.store-highlight-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
    align-items: center;
}

.store-highlight .section-label {
    color: var(--accent-mint);
}

.store-highlight .section-label::before {
    background: linear-gradient(90deg, var(--accent-mint), #fff);
}

.store-highlight-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.12;
}

.store-highlight-content p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 36rem;
    margin-bottom: 1.85rem;
    font-size: 1.05rem;
}

.store-highlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.store-highlight .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.store-highlight .btn-primary:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.store-highlight .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.store-highlight .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.store-highlight-points {
    display: grid;
    gap: 0.85rem;
}

.store-highlight-point {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.15rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: background var(--transition), transform var(--transition);
}

.store-highlight-point:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(4px);
}

.store-highlight-ico {
    width: 2.2rem;
    height: 2.2rem;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(184, 232, 116, 0.2);
    color: var(--accent-mint);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.store-highlight-point strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.store-highlight-point span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

/* about-section styles defined below in About block */

/* ── Sections ── */
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
}

section:last-of-type {
    border-bottom: none;
}

.section-header {
    max-width: 560px;
    margin-bottom: 3.5rem;
}

.section-header.center {
    text-align: center;
    margin-inline: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-mint));
    border-radius: 1px;
    animation: pulseLine 2s ease infinite;
}

.section-header.center .section-label::before {
    display: none;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.bg-alt { background: var(--bg-alt); }

/* ── Service cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--bg);
    border-right: 1px solid var(--border);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background var(--transition);
}

.service-card:last-child { border-right: none; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-bright));
    transition: width 0.45s var(--ease);
}

.service-card:hover {
    background: var(--bg-alt);
    transform: none;
    box-shadow: none;
    border-color: var(--border);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition), background var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--accent);
    background: var(--accent-light);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    transition: fill var(--transition);
}

.service-card:hover .service-icon svg {
    fill: var(--accent-dark);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Categories ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.category-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: left;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '→';
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 1rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--transition), transform var(--transition);
}

.category-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    color: var(--text);
}

.category-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.category-card:hover p {
    color: var(--text-muted);
}

.category-card:hover .category-count {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-light);
}

.category-card-image {
    aspect-ratio: 4 / 3;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
    transition: transform 0.5s var(--ease);
}

.category-card:hover .category-card-image img {
    transform: scale(1.05);
}

.category-icon { display: none; }

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 1.1rem 1.25rem 0.5rem;
    letter-spacing: -0.01em;
}

.category-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 1.25rem 1rem;
    line-height: 1.55;
    transition: color var(--transition);
}

.category-count {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.65rem;
    margin: 0 1.25rem 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
}

/* ── Equipment gallery ── */
.equipment-gallery-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
}

.equipment-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0.75rem;
}

.equipment-gallery-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    margin: 0;
}

.equipment-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
    transition: transform 0.55s var(--ease);
}

.equipment-gallery-item:hover img {
    transform: scale(1.04);
}

.equipment-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.93);
    border-top: 1px solid var(--border);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.equipment-gallery-item--tall {
    grid-row: span 2;
}

.equipment-gallery-item--wide {
    grid-column: span 2;
}

/* ── Partners marquee ── */
.partners-section {
    padding: 4rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 0;
    margin-top: 2rem;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.partners-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-set {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.partner-logo {
    opacity: 0.45;
    filter: grayscale(100%);
    transition: opacity var(--transition), filter var(--transition);
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
}

.partner-logo img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

/* ── About ── */
.about-section {
    position: relative;
    background:
        radial-gradient(ellipse 55% 50% at 0% 50%, rgba(32, 80, 160, 0.06), transparent 65%),
        radial-gradient(ellipse 45% 40% at 100% 20%, rgba(122, 184, 0, 0.07), transparent 60%),
        linear-gradient(180deg, #f7faf6 0%, #ffffff 55%, #f4f8f2 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.about-image {
    position: relative;
    margin: 0;
}

.about-image-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 24px 50px rgba(16, 56, 112, 0.14),
        0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(8, 18, 32, 0.45) 100%
    );
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    right: -1.1rem;
    bottom: -1.1rem;
    border: 1px solid rgba(32, 80, 160, 0.18);
    border-radius: 24px;
    z-index: 0;
    pointer-events: none;
}

.about-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 22px;
}

.about-image-badge {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    padding: 0.95rem 1.1rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.about-image-badge-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.25rem;
}

.about-image-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
}

.about-content .section-label {
    margin-bottom: 0.85rem;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--primary-dark);
    margin-bottom: 1.35rem;
}

.about-lead {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: var(--text) !important;
    margin-bottom: 0.95rem !important;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 36rem;
}

.about-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.75rem 0 0;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(32, 80, 160, 0.08);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(16, 56, 112, 0.04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-points li:hover {
    transform: translateY(-2px);
    border-color: rgba(122, 184, 0, 0.28);
    box-shadow: 0 10px 24px rgba(16, 56, 112, 0.08);
}

.about-points-ico {
    width: 1.7rem;
    height: 1.7rem;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-light);
}

.about-points-ico svg {
    width: 0.85rem;
    height: 0.85rem;
    fill: var(--accent-dark);
}

.about-cta {
    margin-top: 1.85rem;
}

/* About page */
.page-hero--about {
    background:
        radial-gradient(ellipse 60% 55% at 10% 20%, rgba(32, 80, 160, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 80%, rgba(122, 184, 0, 0.1), transparent 50%),
        linear-gradient(180deg, #f4f8f2 0%, #ffffff 100%);
    text-align: center;
}

.page-hero--about .section-label {
    justify-content: center;
    margin-bottom: 0.85rem;
}

.page-hero--about h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    background: linear-gradient(120deg, var(--primary-dark) 10%, var(--primary) 50%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero--about p {
    max-width: 36rem;
    margin-inline: auto;
    font-size: 1.05rem;
}

.about-page-intro {
    border-bottom: 1px solid var(--border);
}

.about-mission {
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(32, 80, 160, 0.05), transparent 65%),
        #fff;
}

.about-mission-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: stretch;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.about-mission-image {
    position: relative;
    margin: 0;
    height: 100%;
}

.about-mission-image-frame {
    position: relative;
    height: 100%;
    min-height: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 24px 50px rgba(16, 56, 112, 0.14),
        0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.about-mission-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(8, 18, 32, 0.55) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
}

.about-mission-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
}

.about-mission-image-badge {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 2;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.about-mission-image-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.25rem;
}

.about-mission-image-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
}

.about-mission-card {
    position: relative;
    padding: 2rem 1.85rem 2.1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.1);
    box-shadow: 0 12px 32px rgba(16, 56, 112, 0.06);
    overflow: hidden;
}

.about-mission-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.about-mission-card--mission::before {
    background: linear-gradient(180deg, #103870, #3090c0);
}

.about-mission-card--vision::before {
    background: linear-gradient(180deg, #5a9200, #30c020);
}

.about-mission-card--mission {
    background:
        linear-gradient(145deg, rgba(237, 244, 251, 0.95) 0%, #ffffff 55%);
}

.about-mission-card--vision {
    background:
        linear-gradient(145deg, rgba(232, 246, 220, 0.95) 0%, #ffffff 55%);
}

.about-mission-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.15rem;
}

.about-mission-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.about-mission-card--mission .about-mission-tag {
    color: var(--primary-dark);
    background: rgba(32, 80, 160, 0.1);
}

.about-mission-card--vision .about-mission-tag {
    color: var(--accent-dark);
    background: rgba(122, 184, 0, 0.14);
}

.about-mission-num {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-mission-card--mission .about-mission-num {
    color: rgba(16, 56, 112, 0.22);
}

.about-mission-card--vision .about-mission-num {
    color: rgba(90, 146, 0, 0.28);
}

.about-mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.about-mission-card--vision h3 {
    color: #3f6a00;
}

.about-mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
    max-width: 34rem;
}

.about-values {
    background:
        radial-gradient(ellipse 55% 40% at 0% 0%, rgba(122, 184, 0, 0.07), transparent 55%),
        linear-gradient(180deg, #f6f9f4 0%, #ffffff 100%);
}

.about-values .home-service-link {
    display: none;
}

.about-values .home-service-body ul {
    display: none;
}

/* Services page hero — imagen servicios.png */
.page-hero--services {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: calc(var(--header-h) + 3rem) 0 3.25rem;
    background-color: #0c1a2e;
    background-image: url('../images/servicios.png');
    background-size: cover;
    background-position: center center;
    border-bottom: none;
    color: #fff;
}

.page-hero--services::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 1;
    background-image: none;
    background-size: auto;
    background:
        radial-gradient(ellipse 40% 50% at 90% 20%, rgba(48, 144, 192, 0.22), transparent 55%),
        linear-gradient(105deg, rgba(6, 14, 28, 0.9) 0%, rgba(8, 20, 40, 0.72) 48%, rgba(10, 28, 48, 0.5) 100%);
}

.page-hero-services-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.25rem;
    align-items: end;
}

.page-hero-services-copy .section-label {
    color: var(--accent-mint);
    margin-bottom: 0.85rem;
}

.page-hero-services-copy .section-label::before {
    background: linear-gradient(90deg, var(--accent-mint), #fff);
}

.page-hero--services h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 1rem;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.page-hero--services p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    margin-inline: 0;
}

.page-hero-services-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-hero--services .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.page-hero--services .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.page-hero-services-aside {
    padding: 1.5rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.page-hero-services-aside-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.85rem;
    max-width: none;
}

.page-hero-services-points {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.page-hero-services-points li {
    position: relative;
    padding: 0.55rem 0.75rem 0.55rem 1.55rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.page-hero-services-points li::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    top: 50%;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--accent-mint);
}

/* Services page detail */
.services-page-main {
    border-bottom: 1px solid var(--border);
}

.services-detail-section {
    background:
        radial-gradient(ellipse 55% 40% at 50% 0%, rgba(32, 80, 160, 0.05), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f9f4 100%);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.services-detail-item {
    position: relative;
    padding: 1.85rem 1.6rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.1);
    box-shadow: 0 12px 32px rgba(16, 56, 112, 0.05);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.services-detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(16, 56, 112, 0.1);
    border-color: rgba(32, 80, 160, 0.18);
}

.services-detail-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.services-detail-item--sale::before {
    background: linear-gradient(180deg, #103870, #3090c0);
}

.services-detail-item--advice::before {
    background: linear-gradient(180deg, #1a6f96, #30c0c0);
}

.services-detail-item--support::before {
    background: linear-gradient(180deg, #5a9200, #30c020);
}

.services-detail-item--sale {
    background: linear-gradient(145deg, rgba(237, 244, 251, 0.9) 0%, #ffffff 55%);
}

.services-detail-item--advice {
    background: linear-gradient(145deg, rgba(232, 246, 250, 0.9) 0%, #ffffff 55%);
}

.services-detail-item--support {
    background: linear-gradient(145deg, rgba(232, 246, 220, 0.9) 0%, #ffffff 55%);
}

.services-detail-head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.services-detail-tag {
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(32, 80, 160, 0.1);
}

.services-detail-item--advice .services-detail-tag {
    color: #1a6f96;
    background: rgba(48, 144, 192, 0.12);
}

.services-detail-item--support .services-detail-tag {
    color: var(--accent-dark);
    background: rgba(122, 184, 0, 0.14);
}

.services-detail-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    line-height: 1.3;
}

.services-detail-item--support h3 {
    color: #3f6a00;
}

.services-detail-item > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.services-detail-item ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.services-detail-item li {
    position: relative;
    padding: 0.55rem 0.7rem 0.55rem 1.55rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(32, 80, 160, 0.06);
    border-radius: 10px;
}

.services-detail-item li::before {
    content: '';
    position: absolute;
    left: 0.65rem;
    top: 50%;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--primary);
}

.services-detail-item--advice li::before { background: var(--primary-mid); }
.services-detail-item--support li::before { background: var(--accent-bright); }

/* Legacy about features (otras páginas) */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
}

.about-feature:nth-child(2n) { border-right: none; }
.about-feature:nth-child(n+3) { border-bottom: none; }

.about-feature svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-dark);
    flex-shrink: 0;
}

/* ── CTA ── */
.cta-section {
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(255, 255, 255, 0.04) 79px,
        rgba(255, 255, 255, 0.04) 80px
    );
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    opacity: 0.65;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-inline: auto;
    font-size: 0.95rem;
    position: relative;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
}

.cta-section .btn-white {
    background: #fff;
    color: var(--text);
}

.cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta-section .btn-outline::before {
    background: #fff;
}

.cta-section .btn-outline:hover {
    color: var(--text);
}

/* ── Page hero ── */
.page-hero {
    padding: calc(var(--header-h) + 4rem) 0 3.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
}

.page-hero.page-hero--about {
    padding: calc(var(--header-h) + 2.25rem) 0 2rem;
    border-bottom: none;
    background:
        radial-gradient(ellipse 60% 55% at 10% 20%, rgba(32, 80, 160, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 80%, rgba(122, 184, 0, 0.1), transparent 50%),
        linear-gradient(180deg, #f4f8f2 0%, #ffffff 100%);
}

.page-hero.page-hero--about::before {
    opacity: 0.12;
    background-image:
        radial-gradient(ellipse 60% 55% at 10% 20%, rgba(32, 80, 160, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 80%, rgba(122, 184, 0, 0.1), transparent 50%);
    background-size: auto;
}

.page-hero.page-hero--services {
    padding: calc(var(--header-h) + 3rem) 0 3.25rem;
    border-bottom: none;
    background-color: #0c1a2e;
    background-image: url('../images/servicios.png');
    background-size: cover;
    background-position: center center;
    color: #fff;
    text-align: left;
}

.page-hero.page-hero--services::before {
    opacity: 1;
    background-image: none;
    background-size: auto;
    background:
        radial-gradient(ellipse 40% 50% at 90% 20%, rgba(48, 144, 192, 0.22), transparent 55%),
        linear-gradient(105deg, rgba(6, 14, 28, 0.9) 0%, rgba(8, 20, 40, 0.72) 48%, rgba(10, 28, 48, 0.5) 100%);
}

.page-hero.page-hero--services h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.page-hero.page-hero--services p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    margin-inline: 0;
}

.page-hero.page-hero--products {
    padding: calc(var(--header-h) + 3rem) 0 3.25rem;
    border-bottom: none;
    background-color: #0c1a2e;
    background-image: url('../images/fondo.jpg');
    background-size: cover;
    background-position: center center;
    color: #fff;
    text-align: left;
}

.page-hero.page-hero--products::before {
    opacity: 1;
    background-image: none;
    background-size: auto;
    background:
        radial-gradient(ellipse 42% 55% at 88% 18%, rgba(122, 184, 0, 0.2), transparent 55%),
        linear-gradient(105deg, rgba(6, 14, 28, 0.9) 0%, rgba(8, 20, 40, 0.74) 48%, rgba(10, 28, 48, 0.52) 100%);
}

.page-hero.page-hero--products h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.page-hero.page-hero--products p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    margin-inline: 0;
}

.page-hero-products-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.25rem;
    align-items: end;
}

.page-hero-products-copy .section-label {
    color: var(--accent-mint);
    margin-bottom: 0.85rem;
}

.page-hero-products-copy .section-label::before {
    background: linear-gradient(90deg, var(--accent-mint), #fff);
}

.page-hero--products .page-hero-products-copy p {
    margin-bottom: 1.5rem;
}

.page-hero-products-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-hero--products .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.page-hero--products .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.page-hero-products-aside {
    padding: 1.5rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.page-hero-products-aside-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.55rem;
    max-width: none;
}

.page-hero-products-aside-count {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}

.page-hero-products-aside-count strong {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.page-hero-products-aside-count span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-products-aside-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: none;
}

.page-hero-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
}

.page-hero-image {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    overflow: hidden;
    aspect-ratio: 1;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
}

/* ── Products ── */
.products-page {
    position: relative;
    isolation: isolate;
    padding: 2.5rem 0 4.5rem;
    background-color: #f5f8f3;
    background-image: url('../images/servicios.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.products-page::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(245, 248, 243, 0.92) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(245, 248, 243, 0.96) 100%),
        radial-gradient(ellipse 55% 40% at 50% 0%, rgba(32, 80, 160, 0.08), transparent 60%);
}

.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.75rem;
    align-items: start;
    padding: 0;
    border-bottom: none;
}

.products-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
    border-right: none;
    padding: 0;
    min-height: 0;
}

.products-sidebar-card {
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.1);
    box-shadow: 0 14px 36px rgba(16, 56, 112, 0.06);
}

.products-sidebar-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-mid);
    margin-bottom: 0.85rem;
    padding-inline: 0.35rem;
}

.sidebar-nav {
    display: grid;
    gap: 0.35rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border: 1px solid transparent;
    border-left: none;
    border-radius: 12px;
    background: transparent;
    transition: all var(--transition);
}

.sidebar-nav a span {
    min-width: 0;
}

.sidebar-nav a em {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(32, 80, 160, 0.08);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

.sidebar-nav a:hover {
    background: rgba(32, 80, 160, 0.05);
    color: var(--primary-dark);
    border-color: rgba(32, 80, 160, 0.08);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, rgba(232, 246, 220, 0.95), rgba(237, 244, 251, 0.9));
    color: var(--primary-dark);
    border-color: rgba(122, 184, 0, 0.28);
    box-shadow: 0 8px 18px rgba(90, 146, 0, 0.08);
}

.sidebar-nav a.active em {
    background: rgba(122, 184, 0, 0.18);
    color: var(--accent-dark);
}

.products-sidebar-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.products-content {
    padding: 0;
    display: grid;
    gap: 2.25rem;
}

.products-toolbar {
    margin-bottom: 0;
}

.products-group {
    padding: 1.5rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.08);
    box-shadow: 0 14px 36px rgba(16, 56, 112, 0.05);
}

.products-group-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(32, 80, 160, 0.08);
}

.products-group-head .section-label {
    margin-bottom: 0.45rem;
}

.products-group-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.products-group-head h2 a {
    color: inherit;
}

.products-group-head h2 a:hover {
    color: var(--primary);
}

.products-group-head p {
    max-width: 36rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

.products-group-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.products-group-link:hover {
    color: var(--accent-dark);
}

.products-group-footer {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(32, 80, 160, 0.08);
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.1rem;
}

.product-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.1);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(16, 56, 112, 0.04);
    content-visibility: auto;
    contain-intrinsic-size: auto 380px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-item.reveal,
.products-group.reveal {
    opacity: 1;
    transform: none;
}

.product-item:hover {
    border-color: rgba(32, 80, 160, 0.22);
    box-shadow: 0 18px 40px rgba(16, 56, 112, 0.1);
    transform: translateY(-4px);
}

.product-item-image {
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    aspect-ratio: 4 / 3;
    background: var(--product-photo-bg);
    border-bottom: 1px solid rgba(32, 80, 160, 0.06);
    overflow: hidden;
    cursor: zoom-in;
    font: inherit;
    text-align: inherit;
}

.product-item-photos {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 3;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(32, 80, 160, 0.1);
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(16, 56, 112, 0.08);
}

.product-item-title {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: zoom-in;
}

.product-item-title:hover {
    color: var(--primary);
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.7rem 0.75rem;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse 118% 112% at 50% 50%, #000 78%, transparent 100%);
    mask-image: radial-gradient(ellipse 118% 112% at 50% 50%, #000 78%, transparent 100%);
    transition: transform 0.45s var(--ease);
}

.product-item:hover .product-item-image img {
    transform: scale(1.05);
}

.product-item-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.05rem 1.15rem 1.2rem;
}

.product-item-meta {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-mid);
    margin-bottom: 0.35rem;
}

.product-item h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    line-height: 1.3;
    margin: 0 0 0.45rem;
}

.product-item p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.55;
    flex: 1;
}

.product-item .btn {
    margin: 0;
    align-self: flex-start;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.product-lightbox.is-open {
    display: flex;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.78);
    backdrop-filter: blur(8px);
}

.product-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100vh - 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.product-lightbox-close {
    position: absolute;
    top: -0.2rem;
    right: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
}

.product-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.24);
}

.product-lightbox-close svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.product-lightbox-kicker {
    margin: 0 2.5rem 0 0;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.product-lightbox-stage {
    position: relative;
    isolation: isolate;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--product-photo-bg);
    border-radius: 18px;
    overflow: hidden;
}

.product-lightbox-stage img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(68vh, 560px);
    object-fit: contain;
    padding: 1.25rem;
    mix-blend-mode: multiply;
}

.product-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 56, 112, 0.72);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.product-lightbox-nav:hover {
    background: rgba(16, 56, 112, 0.9);
}

.product-lightbox-nav svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.product-lightbox-nav--prev { left: 0.7rem; }
.product-lightbox-nav--next { right: 0.7rem; }

.product-lightbox.is-single .product-lightbox-nav {
    display: none;
}

.product-lightbox-count {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.product-lightbox-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    max-width: 100%;
}

.product-lightbox-thumb {
    width: 64px;
    height: 48px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: var(--product-photo-bg);
    cursor: pointer;
    opacity: 0.7;
}

.product-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.15rem;
    mix-blend-mode: multiply;
}

.product-lightbox-thumb.is-active,
.product-lightbox-thumb:hover {
    opacity: 1;
    border-color: var(--accent);
}

.product-lightbox.is-single .product-lightbox-thumbs {
    display: none;
}

body.lightbox-open {
    overflow: hidden;
}

/* ── Store / Tienda ── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Store page hero — contraste fotográfico vs heroes claros */
.page-hero--store {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: calc(var(--header-h) + 3.5rem) 0 3.75rem;
    background-color: #0c1a2e;
    background-image: url('../images/tienda.jpg');
    background-size: cover;
    background-position: center center;
    border-bottom: none;
    color: #fff;
}

.page-hero--store::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 1;
    background-image: none;
    background-size: auto;
    background:
        radial-gradient(ellipse 45% 55% at 90% 15%, rgba(122, 184, 0, 0.2), transparent 55%),
        linear-gradient(105deg, rgba(6, 14, 28, 0.9) 0%, rgba(8, 20, 40, 0.74) 50%, rgba(10, 28, 48, 0.52) 100%);
}

.page-hero-store-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.5rem;
    align-items: end;
}

.page-hero-store-copy .section-label {
    color: var(--accent-mint);
    margin-bottom: 0.85rem;
}

.page-hero-store-copy .section-label::before {
    background: linear-gradient(90deg, var(--accent-mint), #fff);
}

.page-hero--store h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero--store p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.store-hero-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.store-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem 0.45rem 0.55rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.store-hero-point-ico {
    display: grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--accent-mint);
}

.store-hero-aside {
    padding: 1.6rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.store-hero-aside-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.55rem;
}

.store-hero-aside-count {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}

.store-hero-aside-count strong {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.store-hero-aside-count span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.store-hero-aside-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.15rem;
    max-width: none;
}

.store-hero-aside .btn-white {
    width: 100%;
    justify-content: center;
}

.store-section {
    padding: 3.5rem 0 5rem;
    background:
        radial-gradient(ellipse 55% 35% at 50% 0%, rgba(32, 80, 160, 0.05), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f5f8f3 100%);
}

.store-section-header {
    margin-bottom: 1.5rem;
    max-width: 40rem;
}

.store-section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.store-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.1);
    box-shadow: 0 12px 32px rgba(16, 56, 112, 0.06);
}

.store-toolbar-search {
    position: relative;
    flex: 1 1 240px;
    min-width: 0;
}

.store-toolbar-ico {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    transform: translateY(-50%);
    fill: var(--text-muted);
    pointer-events: none;
}

.store-toolbar input[type="search"] {
    width: 100%;
    font: inherit;
    padding: 0.75rem 1rem 0.75rem 2.55rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-alt);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.store-toolbar input[type="search"]:focus {
    outline: none;
    border-color: var(--primary-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(48, 144, 192, 0.15);
}

.store-count {
    margin-left: auto;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.store-count strong {
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-weight: 700;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.store-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(32, 80, 160, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(16, 56, 112, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.store-card:hover {
    border-color: rgba(32, 80, 160, 0.22);
    box-shadow: 0 22px 48px rgba(16, 56, 112, 0.12);
    transform: translateY(-5px);
}

.store-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 255, 255, 0.9), transparent 70%),
        linear-gradient(160deg, #edf3f9 0%, #e8f2e4 100%);
    overflow: hidden;
}

.store-card-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 3;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-bright));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(90, 146, 0, 0.28);
}

.store-card-photos {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(32, 80, 160, 0.1);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
}

.store-card-image > img,
.store-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.15rem;
    transition: transform 0.5s var(--ease);
}

.store-card:hover .store-card-image > img,
.store-card:hover .store-carousel-slide.is-active img {
    transform: scale(1.05);
}

.store-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.store-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.store-carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.store-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(16, 56, 112, 0.15);
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity var(--transition), background var(--transition), color var(--transition);
}

.store-carousel:hover .store-carousel-btn,
.store-carousel:focus-within .store-carousel-btn {
    opacity: 1;
}

.store-carousel-btn:hover {
    background: var(--primary);
    color: #fff;
}

.store-carousel-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

.store-carousel-btn--prev { left: 0.6rem; }
.store-carousel-btn--next { right: 0.6rem; }

.store-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.65rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.store-carousel-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 32, 0.22);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.store-carousel-dot.is-active {
    background: var(--primary);
    transform: scale(1.25);
}

.store-carousel-dot:hover {
    background: var(--primary-mid);
}

.store-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.35rem 1.4rem;
    border-top: 1px solid rgba(32, 80, 160, 0.06);
}

.store-card-meta {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-mid);
    margin-bottom: 0.4rem;
}

.store-card h2 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.28;
    color: var(--primary-dark);
    margin-bottom: 0.55rem;
}

.store-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre-line;
}

.store-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 0.4rem;
}

.store-card-price {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
    line-height: 1.15;
}

.store-card-price-old {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.store-card-iva {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: rgba(32, 80, 160, 0.06);
}

.store-card-garantia {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1.05rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: rgba(122, 184, 0, 0.1);
    border: 1px solid rgba(122, 184, 0, 0.16);
}

.store-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.store-card-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
}

.store-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    border: 1px solid rgba(32, 80, 160, 0.12);
    border-radius: 20px;
    background:
        radial-gradient(ellipse 50% 60% at 50% 0%, rgba(32, 80, 160, 0.05), transparent 65%),
        #fff;
    box-shadow: 0 12px 32px rgba(16, 56, 112, 0.05);
}

.store-empty h2 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.store-empty p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* ── Forms ── */
.form-section {
    padding: 4rem 0 6rem;
}

.contact-page {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(ellipse 55% 40% at 50% 0%, rgba(32, 80, 160, 0.05), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f5f8f3 100%);
}

.contact-page .contact-page-header {
    max-width: 40rem;
    margin-bottom: 1.35rem;
}

.contact-page-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.contact-page-header p {
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-layout {
    gap: 1.25rem;
    border: none;
    border-radius: 0;
    overflow: visible;
    align-items: stretch;
}

.contact-info-card {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-right: 1px solid var(--border);
}

.contact-layout .contact-info-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(122, 184, 0, 0.18), transparent 55%),
        linear-gradient(165deg, #103870 0%, #0c1a2e 55%, #0a1624 100%);
    color: #fff;
    box-shadow: 0 18px 44px rgba(8, 20, 40, 0.22);
}

.contact-info-head {
    margin-bottom: 1.75rem;
}

.contact-info-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.65rem;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.contact-layout .contact-info-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.55rem;
}

.contact-info-head p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.contact-layout .contact-info-item {
    align-items: center;
    gap: 0.9rem;
    margin: 0;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-layout .contact-info-item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.9rem;
}

.contact-info-ico {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    background: rgba(184, 232, 116, 0.14);
    border: 1px solid rgba(184, 232, 116, 0.22);
    box-sizing: border-box;
    line-height: 0;
    overflow: hidden;
}

.contact-info-item > svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-dark);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-ico svg,
.contact-layout .contact-info-ico svg,
.contact-info-item .contact-info-ico svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.15rem;
    height: 1.15rem;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
    display: block;
    fill: var(--accent-mint);
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.3rem;
}

.contact-info-item a,
.contact-info-item span {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-info-item a + a {
    margin-top: 0.15rem;
}

.contact-info-item a:hover {
    color: var(--accent-mint);
}

.contact-whatsapp-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.contact-form {
    background: var(--bg);
    padding: 2.5rem;
    box-shadow: none;
    border: none;
}

.contact-layout .contact-form {
    padding: 2rem 1.85rem 1.9rem;
    border: 1px solid rgba(32, 80, 160, 0.1);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 56, 112, 0.07);
}

.contact-form-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(32, 80, 160, 0.08);
}

.contact-form-head h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.contact-form-head p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-layout .form-group input,
.contact-layout .form-group select,
.contact-layout .form-group textarea {
    padding: 0.9rem 1.05rem;
    border-radius: 12px;
    background: var(--bg-alt);
    border-color: rgba(32, 80, 160, 0.12);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(122, 184, 0, 0.15);
}

.contact-layout .form-group input:focus,
.contact-layout .form-group select:focus,
.contact-layout .form-group textarea:focus {
    background: #fff;
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(48, 144, 192, 0.14);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.35rem;
}

.contact-form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 18rem;
    line-height: 1.4;
}

.contact-form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28rem;
}

.form-success-panel {
    text-align: center;
    max-width: 26rem;
    margin-inline: auto;
    padding: 1rem 0.5rem;
}

.form-success-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.15rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(122, 184, 0, 0.18), rgba(48, 192, 32, 0.12));
    border: 1px solid rgba(122, 184, 0, 0.28);
    color: var(--accent-dark);
}

.form-success-ico svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: currentColor;
}

.form-success-panel h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
    margin-bottom: 0.65rem;
}

.form-success-panel p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.form-success-panel .btn {
    min-width: 14rem;
    justify-content: center;
}

.contact-layout .alert ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

/* PQRS page */
.pqrs-layout {
    grid-template-columns: 0.95fr 1.35fr;
}

.pqrs-type-list {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.pqrs-type-item {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.pqrs-type-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.pqrs-type-item span {
    display: block;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

.pqrs-info-note {
    margin-top: auto;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(184, 232, 116, 0.22);
    background: rgba(184, 232, 116, 0.1);
}

.pqrs-info-note strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 0.3rem;
}

.pqrs-info-note span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
}

.pqrs-page .contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c6b7a' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    border: 1px solid;
    border-radius: var(--radius);
}

.alert-success {
    background: #f0faf4;
    color: #1a5c36;
    border-color: #b8e0c8;
}

.alert-error {
    background: #fdf2f2;
    color: #7a2020;
    border-color: #f0c0c0;
}

/* ── Services detail ── */
.services-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
}

.service-detail-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.service-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: -0.01em;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    color: var(--text-muted);
}

.service-detail-card li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.service-detail-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-dark);
}

/* ── Footer ── */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2.25rem 0 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

.footer-brand-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.15rem;
    transition: color var(--transition);
    line-height: 1.2;
}

.footer-brand-support {
    display: block;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: var(--accent-bright);
    margin-bottom: 0.75rem;
}

.footer-brand-name:hover {
    color: var(--accent-mint);
}

.footer-brand-name:hover .footer-brand-support {
    color: var(--accent-mint);
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.55;
    max-width: 280px;
}

.footer-hours {
    margin-top: 0.65rem;
    font-size: 0.8rem;
}

.footer-col h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
}

.footer-col ul li { margin-bottom: 0.4rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-cert .cert-text {
    font-size: 0.68rem;
    margin-bottom: 0.6rem;
    line-height: 1.45;
    max-width: 200px;
}

.footer-cert img {
    max-width: 150px;
    opacity: 0.9;
}

.footer-bottom {
    padding: 0.85rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    transition: background var(--transition), border-color var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* ── WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: var(--accent-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s var(--ease), box-shadow var(--transition);
    border: 2px solid #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(48, 192, 32, 0.35);
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 8px 28px rgba(48, 192, 32, 0.45);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

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

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

    .partners-track {
        animation: none;
    }

    .home-service:hover .home-service-icon {
        animation: none;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .form-grid,
    .store-highlight-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-hero-store-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .page-hero-services-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        align-items: start;
    }

    .page-hero-products-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        align-items: start;
    }

    .page-hero-products-aside,
    .page-hero-services-aside,
    .store-hero-aside {
        max-width: 320px;
    }

    .about-mission-layout {
        grid-template-columns: 1fr;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto;
    }

    .catalog-lite-item {
        grid-template-columns: auto 1fr;
        gap: 0.9rem 1rem;
        padding: 0.85rem;
    }

    .catalog-lite-meta {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
    }

    .services-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .equipment-gallery-item--tall {
        grid-row: span 1;
    }

    .equipment-gallery-item--wide {
        grid-column: span 2;
    }

    .service-card,
    .category-card {
        border-bottom: 1px solid var(--border);
    }

    .service-card:nth-child(2n),
    .category-card:nth-child(2n) {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .products-sidebar {
        position: static;
        min-height: auto;
        border-right: none;
        border-bottom: none;
        padding: 0;
    }

    .products-content {
        padding: 0;
        gap: 1.5rem;
    }

    .products-group {
        padding: 1.15rem;
    }

    .products-group-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar-nav {
        display: grid;
        gap: 0.35rem;
    }

    .sidebar-nav a {
        border-left: none;
        border-bottom: none;
        padding: 0.75rem 0.85rem;
    }

    .sidebar-nav a.active {
        border-left: none;
        border-bottom: none;
    }

    .contact-info-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pqrs-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout .contact-info-card {
        border-bottom: none;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services-detail {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .service-detail-card:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 16, 28, 0.62);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 1.75rem 1.5rem 2.5rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .main-nav.open { transform: translateX(0); }

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0;
    }

    .nav-list a {
        padding: 1rem 0.15rem;
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.95rem;
        letter-spacing: 0.06em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list a:hover,
    .nav-list a.active {
        color: #fff;
        background: transparent;
    }

    .nav-list a.active {
        color: var(--accent-mint);
    }

    .nav-list a::after { display: none; }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0.35rem 0.85rem;
        display: block;
        border-radius: 0;
        min-width: 0;
    }

    .has-dropdown .dropdown a {
        padding: 0.7rem 0.15rem;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.62);
        border-bottom-color: rgba(255, 255, 255, 0.06);
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .has-dropdown .dropdown a:hover,
    .has-dropdown .dropdown a.active {
        color: #fff;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        background: #fff;
        color: var(--primary-dark);
        border-color: #fff;
    }

    .nav-cta:hover {
        background: var(--accent-mint);
        color: var(--primary-dark);
        border-color: var(--accent-mint);
    }

    .hero {
        min-height: auto;
        padding-top: var(--header-h);
    }

    .hero-grid { padding: 2.5rem 0; }

    .page-hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .page-hero-image {
        max-width: 240px;
        margin-inline: auto;
    }

    .page-hero-text p {
        margin-inline: auto;
    }

    .page-hero--store {
        padding: calc(var(--header-h) + 2.5rem) 0 2.75rem;
    }

    .page-hero--store h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .page-hero--services {
        padding: calc(var(--header-h) + 2.5rem) 0 2.75rem;
    }

    .page-hero--services h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .page-hero--products {
        padding: calc(var(--header-h) + 2.5rem) 0 2.75rem;
    }

    .page-hero--products h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .page-hero-products-aside,
    .page-hero-services-aside,
    .store-hero-aside {
        max-width: none;
    }

    .products-page {
        background-attachment: scroll;
    }

    .product-lightbox {
        padding: 0.75rem;
        align-items: center;
        justify-content: center;
    }

    .product-lightbox-dialog {
        max-height: calc(100dvh - 1.5rem);
        justify-content: center;
    }

    .product-lightbox-stage {
        max-height: none;
        border-radius: 14px;
    }

    .product-lightbox-stage img {
        max-height: min(62dvh, 480px);
        padding: 0.85rem;
    }

    .product-lightbox-close {
        top: -0.2rem;
        bottom: auto;
    }

    .store-toolbar {
        padding: 0.75rem;
    }

    .store-count {
        margin-left: 0;
        width: 100%;
    }

    .store-card-actions .btn {
        flex: 1 1 100%;
    }

    .hero-stats { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }

    .home-service-link {
        width: 100%;
        justify-content: center;
    }

    .catalog-lite-item {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .catalog-lite-media {
        width: 100%;
        height: 140px;
    }

    .catalog-lite-meta {
        grid-column: auto;
    }

    .hero-panel figcaption {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero--services {
        min-height: auto;
    }

    .home-services-header h2 {
        font-size: clamp(2.3rem, 12vw, 3.2rem);
    }

    .services-grid,
    .categories-grid,
    .services-detail {
        grid-template-columns: 1fr;
    }

    .service-card,
    .category-card {
        border-right: none !important;
    }

    .about-features { grid-template-columns: 1fr; }
    .about-feature { border-right: none !important; }
    .about-points { grid-template-columns: 1fr; }
    .about-mission-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-mission-image img {
        min-height: 280px;
        aspect-ratio: 16 / 10;
        height: auto;
    }

    .about-mission-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }

    .about-image::before {
        display: none;
    }

    .about-image img {
        aspect-ratio: 5 / 4;
    }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .equipment-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .equipment-gallery-item--wide {
        grid-column: span 1;
    }

    .product-item {
        contain-intrinsic-size: auto 320px;
    }

    .product-item:hover {
        transform: none;
        box-shadow: 0 10px 24px rgba(16, 56, 112, 0.04);
    }

    .product-item-image img {
        mix-blend-mode: normal;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .product-item:hover .product-item-image img {
        transform: none;
    }

    .products-load-more {
        text-align: center;
    }

    .products-load-more .btn {
        width: 100%;
        justify-content: center;
    }
}
