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

        :root {
            --parchment: #F4F7FF;
            --parchment-mid: #E8EEFF;
            --parchment-dk: #D0DAFF;
            --parchment-txt: #162B80;
            --forest: #0F2060;
            --forest-mid: #162B80;
            --forest-lt: #1E3FAA;
            --sage: #3A6ACC;
            --moss: #7AAAE8;
            --ink: #0D1020;
            --ink-mid: #252A45;
            --ink-lt: #5C6285;
            --cream: #FAFBFF;
            --fd: 'Cormorant Garamond', serif;
            --fb: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--parchment);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
        }

        img {
            display: block;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(27, 63, 170, 0.25);
            border-radius: 2px;
        }

        /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 48px;
            transition: background 0.4s, border-bottom 0.4s;
        }

        .navbar.scrolled {
            background: var(--cream);
            border-bottom: 1px solid var(--parchment-dk);
        }

        .navbar__inner {
            max-width: 1360px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .navbar__logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar__logo-icon {
            width: 32px;
            height: 32px;
            background: var(--forest);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .navbar__logo-icon span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 600;
            font-style: italic;
            color: var(--parchment);
            line-height: 1;
        }

        .navbar__logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--ink);
            letter-spacing: -0.01em;
            transition: color 0.4s;
        }

        .navbar.scrolled .navbar__logo-text {
            color: var(--ink);
        }

        .navbar__links {
            display: flex;
            gap: 36px;
            align-items: center;
        }

        .navbar__links a {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--parchment);
            position: relative;
            /*padding: 4px 0;*/
            transition: color 0.3s;
        }

        .navbar__links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 100%;
            height: 1px;
            background: var(--moss);
            transition: right 0.3s;
        }

        .navbar__links a:hover::after {
            right: 0;
        }

        .navbar.scrolled .navbar__links a {
            color: var(--ink);
        }

        .navbar__links a:hover {
            color: var(--moss);
        }

        .navbar.scrolled .navbar__links a:hover {
            color: var(--forest);
        }

        .navbar__cta {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: var(--forest);
            color: var(--parchment) !important;
            padding: 10px 24px;
            border-radius: 50px;
        }

        .navbar__cta::after {
            display: none !important;
        }

        /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            overflow: hidden;
        }

        .hero__left {
            background: var(--parchment);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 140px 64px 80px;
        }

        .hero__eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--sage);
            margin-bottom: 24px;
        }

        .hero__h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(52px, 6.5vw, 88px);
            line-height: 1.05;
            margin-bottom: 0;
        }

        .hero__h1--light {
            font-weight: 300;
            color: var(--ink);
        }

        .hero__h1--italic {
            font-weight: 500;
            font-style: italic;
            color: var(--forest);
        }

        .hero__h1--last {
            font-weight: 300;
            color: var(--ink);
            margin-bottom: 36px;
        }

        .hero__desc {
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink-lt);
            max-width: 420px;
            margin-bottom: 48px;
        }

        .hero__btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--forest);
            color: var(--parchment);
            padding: 15px 34px;
            border-radius: 2px;
            border: none;
            cursor: pointer;
            display: inline-block;
            transition: background 0.2s;
        }

        .btn-outline-dark {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: transparent;
            color: var(--forest);
            padding: 15px 34px;
            border-radius: 2px;
            border: 1.5px solid var(--forest);
            display: inline-block;
            transition: all 0.2s;
        }

        .hero__stats {
            display: flex;
            gap: 40px;
            margin-top: 72px;
            padding-top: 40px;
            border-top: 1px solid var(--parchment-dk);
            flex-wrap: wrap;
        }

        .hero__stat-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 600;
            color: var(--forest);
            line-height: 1;
        }

        .hero__stat-lbl {
            font-size: 11px;
            font-weight: 500;
            color: var(--ink-lt);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-top: 6px;
        }

        .hero__right {
            background: var(--forest);
            position: relative;
            overflow: hidden;
        }

        .hero__right-bg {
            position: absolute;
            inset: 0;
            background: url('https://img.magnific.com/fotos-premium/cierre-lugar-trabajo-equipo-oficina-fotocopiadora_926199-4341906.jpg?uid=R5061478&ga=GA1.1.1654141173.1784766665&semt=ais_hybrid&w=740&q=80') center/cover no-repeat;
            /*background: url('assets/img/c658.png') center/cover no-repeat;*/
            opacity: 0.15;
        }

        .hero__right-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 56px;
        }

        .hero__card {
            background: rgba(200, 215, 255, 0.07);
            border: 1px solid rgba(200, 215, 255, 0.14);
            border-radius: 4px;
            padding: 28px 32px;
            backdrop-filter: blur(10px);
            max-width: 340px;
        }

        .hero__card-label {
            font-size: 10px;
            font-weight: 700;
            color: var(--moss);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .hero__card-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            font-weight: 500;
            color: var(--parchment);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .hero__card-spec {
            font-size: 13px;
            color: rgba(200, 215, 255, 0.55);
            margin-bottom: 18px;
        }

        .hero__card-footer {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

        .hero__card-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 600;
            color: var(--parchment);
        }

        .hero__card-rent {
            font-size: 11px;
            color: rgba(200, 215, 255, 0.4);
        }

        .hero__card-link {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--parchment);
            border-bottom: 1px solid var(--moss);
            padding-bottom: 2px;
        }

        .hero__bars {
            display: flex;
            gap: 6px;
            margin-top: 40px;
        }

        .hero__bars span {
            height: 3px;
            border-radius: 1px;
        }

        .hero__brand-tag {
            position: absolute;
            top: 96px;
            right: 48px;
            text-align: right;
        }

        .hero__brand-tag-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            font-style: italic;
            color: rgb(255, 255, 255);
            letter-spacing: 0.04em;
        }

        .hero__brand-tag-main {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: rgba(200, 215, 255, 0.6);
        }

        #img-konica {
            max-width: 200px;
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: brightness(1.1);
            transition: filter 0.3s ease;
        }

        #img-konica:hover {
            filter: brightness(1.3);
        }

        /* ══════════════════════════════════════
       BRANDS BAR
    ══════════════════════════════════════ */
        .brands {
            background: var(--parchment);
            padding: 26px 48px;
        }

        .brands__inner {
            max-width: 1360px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .brands__label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--parchment-txt);
            white-space: nowrap;
        }

        .brands__line {
            flex: 1;
            height: 1px;
            background: var(--parchment-txt);
        }

        .brands__name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            font-style: italic;
            color: rgba(200, 215, 255, 0.4);
            white-space: nowrap;
        }

        .brands__dots {
            display: flex;
            gap: 6px;
        }

        .brands__dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        /* ══════════════════════════════════════
       CATALOG
    ══════════════════════════════════════ */
        .catalog {
            background: var(--parchment);
        }

        .catalog__header-wrap {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .catalog__header {
            padding: 96px 0 56px;
            border-bottom: 1px solid var(--parchment-dk);
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

        .section-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--sage);
            margin-bottom: 14px;
        }

        .section-h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 4.5vw, 60px);
            font-weight: 400;
            font-style: italic;
            color: var(--ink);
            line-height: 1.1;
        }

        .catalog__count {
            font-size: 14px;
            color: var(--ink-lt);
        }

        .catalog__body {
            max-width: 1360px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 268px 1fr;
        }

        /* Sidebar */
        .catalog__sidebar {
            border-right: 1px solid var(--parchment-dk);
            padding: 48px 40px;
            position: sticky;
            top: 72px;
            height: fit-content;
            align-self: start;
        }

        .sidebar__title {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--ink-lt);
            margin-bottom: 20px;
        }

        .cat-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            background: none;
            border: none;
            border-bottom: 1px solid var(--parchment-mid);
            padding: 12px 0;
            cursor: pointer;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: var(--ink);
            transition: color 0.2s;
        }

        .cat-btn.active {
            font-weight: 600;
            color: var(--forest);
        }

        .cat-btn .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--forest);
            display: none;
        }

        .cat-btn.active .dot {
            display: block;
        }

        .sub-list {
            padding-left: 14px;
            display: none;
        }

        .sub-list.open {
            display: block;
        }

        .sub-btn {
            display: block;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            border-bottom: 1px solid var(--parchment-mid);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 400;
            color: var(--ink-lt);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.2s;
        }

        .sub-btn.active {
            font-weight: 600;
            color: var(--sage);
        }

        .color-list {
            padding-left: 14px;
            display: none;
        }

        .color-list.open {
            display: block;
        }

        .color-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 7px 0;
            width: 100%;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px;
            color: var(--ink-lt);
        }

        .color-btn .check {
            width: 14px;
            height: 14px;
            border-radius: 2px;
            flex-shrink: 0;
            border: 1.5px solid var(--ink-lt);
            background: transparent;
            transition: all 0.2s;
        }

        .color-btn.active .check {
            border-color: var(--forest);
            background: var(--forest);
        }

        .color-btn.active {
            color: var(--forest);
            font-weight: 600;
        }

        .btn-clear {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: none;
            border: 1.5px solid var(--forest);
            color: var(--forest);
            padding: 10px 20px;
            border-radius: 2px;
            cursor: pointer;
            width: 100%;
            margin-top: 24px;
            display: none;
        }

        .btn-clear.visible {
            display: block;
        }

        /* Products */
        .catalog__products {
            padding: 48px 0 80px 44px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .empty-state {
            text-align: center;
            padding: 80px 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-style: italic;
            color: var(--ink-lt);
        }

        /* Product Card */
        .product-card {
            background: var(--parchment);
            border: 1px solid var(--parchment-mid);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            background: var(--cream);
            border-color: var(--parchment-dk);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(13, 16, 32, 0.08);
        }

        .product-card__img {
            position: relative;
            height: 200px;
            background: var(--parchment-mid);
            overflow: hidden;
        }

        .product-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-card__img img {
            transform: scale(1.05);
        }

        .product-card__badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--forest);
            color: var(--parchment);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 2px;
        }

        .product-card__tags {
            position: absolute;
            top: 14px;
            right: 14px;
            display: flex;
            gap: 5px;
        }

        .tag-venta {
            background: var(--ink);
            color: var(--parchment);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 2px;
        }

        .tag-renta {
            background: var(--sage);
            color: var(--parchment);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 2px;
        }

        .product-card__body {
            padding: 22px 22px 26px;
        }

        .product-card__brand {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--sage);
            margin-bottom: 6px;
        }

        .product-card__name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            color: var(--ink);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .product-card__ppm {
            font-size: 13px;
            color: var(--ink-lt);
            margin-bottom: 24px;
        }

        .product-card__footer {
            border-top: 1px solid var(--parchment-dk);
            padding-top: 18px;
        }

        .btn-details {
            display: block;
            width: 100%;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: transparent;
            color: var(--forest);
            border: 1.5px solid var(--forest);
            padding: 11px;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-details:hover {
            background: var(--forest);
            color: var(--parchment);
        }

        /* ══════════════════════════════════════
       MODAL
    ══════════════════════════════════════ */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(13, 16, 32, 0.65);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal {
            background: var(--cream);
            border-radius: 6px;
            max-width: 860px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 32px 80px rgba(13, 16, 32, 0.3);
            animation: modalIn 0.22s ease;
        }

        @keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(0.96) translateY(8px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal__img-panel {
            position: relative;
            background: var(--parchment-mid);
            border-radius: 6px 0 0 6px;
            overflow: hidden;
            min-height: 340px;
        }

        .modal__img-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .modal__img-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--forest);
            color: var(--parchment);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 2px;
            display: none;
        }

        .modal__img-tags {
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: flex;
            gap: 6px;
        }

        .modal__body {
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
        }

        .modal__top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .modal__brand {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--sage);
        }

        .modal__close {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--ink-lt);
            font-size: 24px;
            line-height: 1;
            padding: 0;
            transition: color 0.2s;
        }

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

        .modal__name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 38px;
            font-weight: 500;
            color: var(--ink);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .modal__subtitle {
            font-size: 14px;
            color: var(--ink-lt);
            margin-bottom: 32px;
        }

        .modal__section-title {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--ink-lt);
            margin-bottom: 16px;
        }

        .modal__specs-block {
            border-top: 1px solid var(--parchment-dk);
            padding-top: 24px;
            margin-bottom: 32px;
        }

        .modal__specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }

        .modal__spec-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--ink-lt);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 3px;
        }

        .modal__spec-value {
            font-size: 14px;
            font-weight: 500;
            color: var(--ink);
        }

        .modal__desc-block {
            border-top: 1px solid var(--parchment-dk);
            padding-top: 24px;
            margin-bottom: 32px;
        }

        .modal__desc {
            font-size: 14px;
            color: var(--ink-lt);
            line-height: 1.7;
        }

        .modal__cta {
            display: block;
            text-align: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: var(--forest);
            color: var(--parchment);
            padding: 16px;
            border-radius: 2px;
            margin-top: auto;
            transition: background 0.2s;
        }

        .modal__cta:hover {
            background: var(--forest-lt);
        }

        /* ══════════════════════════════════════
       SERVICIOS
    ══════════════════════════════════════ */
        .servicios {
            background: var(--forest);
            padding: 100px 48px;
        }

        .servicios__inner {
            max-width: 1360px;
            margin: 0 auto;
        }

        .servicios__top {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 72px;
        }

        .servicios__subtitle {
            font-size: 14px;
            color: rgba(200, 215, 255, 0.45);
            max-width: 260px;
            line-height: 1.7;
            text-align: right;
        }

        .section-h2-light {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 4.5vw, 60px);
            font-weight: 400;
            font-style: italic;
            color: var(--parchment);
            line-height: 1.1;
        }

        .section-eyebrow-light {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--moss);
            margin-bottom: 14px;
        }

        .servicios__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid rgba(200, 215, 255, 0.08);
        }

        .servicio-item {
            padding: 44px 36px;
            border-right: 1px solid rgba(200, 215, 255, 0.08);
            border-bottom: 1px solid rgba(200, 215, 255, 0.08);
        }

        .servicio-item:nth-child(3n) {
            border-right: none;
        }

        .servicio-item:nth-child(4),
        .servicio-item:nth-child(5),
        .servicio-item:nth-child(6) {
            border-bottom: none;
        }

        .servicio-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            font-weight: 300;
            color: white;
            line-height: 1;
            margin-bottom: 20px;
        }

        .servicio-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 500;
            color: var(--parchment);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .servicio-desc {
            font-size: 14px;
            color: rgba(200, 215, 255, 0.5);
            line-height: 1.7;
        }

        .servicio-line {
            margin-top: 28px;
            width: 28px;
            height: 2px;
            background: var(--moss);
            border-radius: 1px;
        }

        /* ══════════════════════════════════════
       CERTIFICACIÓN
    ══════════════════════════════════════ */
        .cert {
            background: var(--parchment-mid);
            padding: 100px 48px;
        }

        .cert__inner {
            max-width: 1360px;
            margin: 0 auto;
        }

        .cert__top {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 72px;
            flex-wrap: wrap;
        }

        .cert__seal {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--forest);
            padding: 28px 36px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .cert__seal-icon {
            width: 52px;
            height: 52px;
            background: var(--moss);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 600;
            font-style: italic;
            color: var(--forest);
        }

        .cert__seal-sublabel {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--moss);
            margin-bottom: 5px;
        }

        .cert__seal-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--parchment);
            line-height: 1.2;
        }

        .cert__seal-role {
            font-size: 11px;
            color: rgba(200, 215, 255, 0.4);
            margin-top: 5px;
        }

        .cert__grid {
            border: 1px solid var(--parchment-dk);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .cert__step {
            background: white;
            padding: 44px 36px;
            border-right: 1px solid var(--parchment-dk);
            border-bottom: 1px solid var(--parchment-dk);
        }

        .cert__step:nth-child(2n) {
            border-right: none;
        }

        .cert__step:nth-child(n+3) {
            border-bottom: none;
        }

        .cert__step--dark {
            background: var(--forest);
        }

        .cert__step-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            font-weight: 300;
            line-height: 1;
            margin-bottom: 20px;
        }

        .cert__step-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .cert__step-desc {
            font-size: 14px;
            line-height: 1.7;
        }

        .cert__step-line {
            margin-top: 28px;
            width: 28px;
            height: 2px;
            border-radius: 1px;
        }

        .cert__footer {
            border: 1px solid var(--parchment-dk);
            border-top: none;
            background: var(--parchment);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .cert__stats {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
        }

        .cert__stat-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            font-weight: 600;
            color: var(--forest);
            line-height: 1;
        }

        .cert__stat-lbl {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--ink-lt);
            margin-top: 6px;
        }

        .cert__cta {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--forest);
            color: var(--parchment);
            padding: 15px 34px;
            border-radius: 2px;
            display: inline-block;
            transition: background 0.2s;
        }


        /* ══════════════════════════════════════
       NOSOTROS
    ══════════════════════════════════════ */
        .nosotros {
            background: var(--parchment);
            padding: 100px 48px;
        }

        .nosotros__inner {
            max-width: 1360px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .nosotros__text p {
            font-size: 15px;
            color: var(--ink-lt);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .nosotros__link {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--forest);
            border-bottom: 2px solid var(--forest);
            padding-bottom: 4px;
            display: inline-block;
        }

        .nosotros__stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }

        .stat-box {
            padding: 44px 32px;
        }

        .stat-box--mid {
            background: var(--parchment-mid);
        }

        .stat-box--dark {
            background: var(--forest);
        }

        .stat-box__val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-box__val--light {
            color: var(--forest);
        }

        .stat-box__val--dark {
            color: var(--parchment);
        }

        .stat-box__lbl {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .stat-box__lbl--light {
            color: var(--ink-lt);
        }

        .stat-box__lbl--dark {
            color: rgba(200, 215, 255, 0.55);
        }

        /* ══════════════════════════════════════
       CONTACTO
    ══════════════════════════════════════ */
        .contact {
            background: var(--forest);
        }

        .contact__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .contact__info {
            padding: 96px 72px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact__h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            font-style: italic;
            color: var(--parchment);
            line-height: 1.15;
            margin-bottom: 28px;
        }

        .contact__intro {
            font-size: 15px;
            color: rgba(200, 215, 255, 0.55);
            line-height: 1.8;
            margin-bottom: 52px;
            max-width: 340px;
        }

        .contact__detail {
            margin-bottom: 24px;
        }

        .contact__detail-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--moss);
            margin-bottom: 5px;
        }

        .contact__detail-value {
            font-size: 15px;
            color: rgba(200, 215, 255, 0.7);
        }

        .contact__form-wrap {
            background: var(--forest-mid);
            padding: 96px 72px;
        }

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

        .form-group {
            margin-bottom: 14px;
        }

        .form-label {
            display: block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(200, 215, 255, 0.4);
            margin-bottom: 7px;
        }

        .form-input {
            width: 100%;
            background: rgba(200, 215, 255, 0.06);
            border: 1px solid rgba(200, 215, 255, 0.14);
            border-radius: 2px;
            color: var(--parchment);
            padding: 13px 15px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-input::placeholder {
            color: rgba(200, 215, 255, 0.28);
        }

        .form-input:focus {
            border-color: rgba(200, 215, 255, 0.35);
        }

        textarea.form-input {
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            margin-top: 6px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: var(--parchment);
            color: var(--forest);
            border: none;
            border-radius: 2px;
            padding: 17px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .form-submit:hover {
            background: var(--parchment-mid);
        }

        .form-note {
            font-size: 11px;
            color: rgba(200, 215, 255, 0.3);
            text-align: center;
            margin-top: 10px;
        }

        /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
        .footer {
            background: var(--ink);
            padding: 60px 48px 36px;
        }

        .footer__inner {
            max-width: 1360px;
            margin: 0 auto;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 52px;
            padding-bottom: 52px;
            border-bottom: 1px solid rgba(200, 215, 255, 0.07);
        }

        .footer__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .footer__logo-icon {
            width: 30px;
            height: 30px;
            background: var(--forest);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer__logo-icon span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 17px;
            font-weight: 600;
            font-style: italic;
            color: var(--parchment);
        }

        .footer__logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--parchment);
        }

        .footer__tagline {
            font-size: 14px;
            color: rgba(200, 215, 255, 0.38);
            line-height: 1.8;
            max-width: 260px;
        }

        .footer__col-title {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(200, 215, 255, 0.28);
            margin-bottom: 18px;
        }

        .footer__link {
            display: block;
            font-size: 14px;
            color: rgba(200, 215, 255, 0.45);
            margin-bottom: 10px;
            transition: color 0.2s;
        }

        .footer__link:hover {
            color: rgba(200, 215, 255, 0.75);
        }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer__copy {
            font-size: 12px;
            color: rgba(200, 215, 255, 0.22);
        }

        .footer__bars {
            display: flex;
            gap: 5px;
        }

        .footer__bar {
            height: 3px;
            border-radius: 1px;
        }

        /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
        @media (max-width: 1100px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .navbar {
                padding: 0 24px;
            }

            .navbar__links {
                display: none;
            }

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

            .hero__right {
                display: none;
            }

            .hero__left {
                padding: 120px 32px 80px;
            }

            .hero__stats {
                gap: 24px;
            }

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

            .catalog__sidebar {
                position: static;
                border-right: none;
                border-bottom: 1px solid var(--parchment-dk);
            }

            .catalog__products {
                padding: 32px 24px 60px;
            }

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

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

            .servicio-item {
                border-right: none !important;
            }

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

            .nosotros__inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

            .contact__info {
                padding: 64px 32px;
            }

            .contact__form-wrap {
                padding: 64px 32px;
            }

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

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

            .modal__img-panel {
                display: none;
            }

            .catalog__header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .servicios__top {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .servicios__subtitle {
                text-align: left;
            }
        }

        @media (max-width: 500px) {
            .footer__grid {
                grid-template-columns: 1fr;
            }

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

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