:root {
    --ink-900: #0E1730;
    --ink-700: #1F3A73;
    --accent-500: #2F6FED;
    --accent-600: #2559C7;
    --accent-300: #9DC0FF;
    --paper: #F5F7FB;
    --paper-line: #E1E6F0;
    --text-body: #4A5468;
    --white: #FFFFFF;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--ink-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ============ HEADER ============ */
.site-header {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 40px; */
    padding: 0 140px;
    background: var(--white);
    border-bottom: 1px solid var(--paper-line);
    position: relative;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    position: relative;
    flex-shrink: 0;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--ink-900);
}

.main-nav {
    display: flex;
    gap: 34px;
}

.main-nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-900);
    letter-spacing: -0.005em;
    position: relative;
    padding: 6px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-500);
    transition: width .25s ease;
}

.main-nav a:hover {
    color: var(--accent-600);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    width: 250px;
    height: 40px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 100px;
    padding: 0 8px 0 18px;
    transition: border-color .2s ease, background .2s ease;
}

.search-box:focus-within {
    border-color: var(--accent-500);
    background: var(--white);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13.5px;
    font-family: var(--font-body);
    color: var(--ink-900);
    width: 100%;
}

.search-box input::placeholder {
    color: #9AA3B4;
}

.search-box button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-body);
    flex-shrink: 0;
}

.search-box button:hover {
    background: var(--paper-line);
}

.icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ink-900);
    transition: background .25s ease;
    position: relative;
}

.icon-btn:hover {
    background: var(--paper);
}

.icon-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-500);
    border: 1.5px solid var(--white);
}

.hamburger {
    display: none;
}

.scanner-banner {
    position: relative;
}

.scanner-banner img {
    width: 100%;
    display: block;
}

.scanner-learn-btn,
.scanner-shop-btn {
    position: absolute;
    z-index: 10;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.scanner-learn-btn:hover,
.scanner-shop-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

/* Scanner Banner Learn */
.scanner-learn-btn {
    left: 50%;
    top: 70.5%;
    width: 8%;
    height: 10%;
}

/* Scanner Banner Shop */
.scanner-shop-btn {
    left: 60.5%;
    top: 70.5%;
    width: 8%;
    height: 10%;
}

.banner-clickable {
    position: relative;
}

.banner-clickable img {
    width: 100%;
    display: block;
}

.learn-btn-area,
.shop-btn-area {
    position: absolute;
    z-index: 10;
    display: block;
    transition: all 0.3s ease;
}

.learn-btn-area:hover,
.shop-btn-area:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

/* Learn Button */
.learn-btn-area {
    left: 7%;
    top: 73%;
    width: 9%;
    height: 10%;
}

.learn-btn-area:hover {
    opacity: 0.9;
}

/* Shop Button */
.shop-btn-area {
    left: 18%;
    top: 73%;
    width: 9%;
    height: 10%;
}

.hero-banner-slider .swiper-slide a {
    display: block;
}

.hero-banner-slider .swiper-slide img {
    width: 100%;
    display: block;
}

.hero-banner-wrapper {
    max-width: 1680px;
    margin: 20px auto;
    padding: 0 40px;
}

.hero-banner-slider {
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.hero-banner-slider .swiper-slide {
    height: auto;
}

.hero-banner-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* HP Style Pagination */
.hero-banner-slider .swiper-pagination {
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 25px !important;

    width: auto !important;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 16px 30px;
    border-radius: 50px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-banner-slider .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #111;
    opacity: 1;
    margin: 0 5px !important;
}

.hero-banner-slider .swiper-pagination-bullet-active {
    width: 45px;
    border-radius: 30px;
}

/* Responsive */
@media(max-width:768px) {

    .hero-banner-wrapper {
        padding: 0 15px;
        margin-top: 10px;
    }

    .hero-banner-slider .swiper-pagination {
        padding: 12px 20px;
        bottom: 10px !important;
    }

    .hero-banner-slider .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* ============ FEATURE SECTION ============ */
.feature-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 60px 110px;
    background: var(--white);
    justify-content: center;
}

.feature-visual {
    position: relative;
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.feature-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.feature-deco span {
    position: absolute;
    width: 60px;
    background: var(--accent-500);
    transform: skewX(-20deg);
}

.feature-deco span:nth-child(1) {
    top: 0;
    left: 26%;
    height: 38%;
}

.feature-deco span:nth-child(2) {
    bottom: 0;
    left: 56%;
    height: 42%;
}

.feature-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    /* width: 88%; */
    /* max-width: 460px; */
    display: block;
    border-radius: 10px;
}

.stat-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--paper-line);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(14, 23, 48, 0.10);
    font-size: 14px;
}

.stat-card .stat-icon {
    width: 18px;
    height: 18px;
    color: var(--ink-900);
    flex-shrink: 0;
}

.stat-card .stat-label {
    color: var(--ink-900);
    font-weight: 500;
    white-space: nowrap;
}

.stat-card .stat-trend {
    color: #1E9E5A;
    font-weight: 600;
    font-size: 13px;
}

.stat-card .stat-value {
    font-weight: 700;
    color: var(--ink-900);
}

.stat-card .stat-arrow {
    color: #9AA3B4;
}

.stat-card.pos-1 {
    top: 8%;
    left: 0;
}

.stat-card.pos-2 {
    top: 34%;
    left: 52%;
}

.stat-card.pos-3 {
    bottom: 14%;
    left: 2%;
}

.feature-content {
    flex: 1;
    max-width: 480px;
}

.feature-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--ink-900);
    margin-bottom: 22px;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 34px;
}

.feature-btn-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-outline {
    height: 48px;
    padding: 0 26px;
    border-radius: 8px;
    border: 1.5px solid var(--ink-900);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}

.btn-outline:hover {
    background: var(--ink-900);
    color: var(--white);
}

@media (max-width:1000px) {
    .feature-section {
        flex-direction: column;
        padding: 60px 24px;
    }

    .feature-content {
        max-width: 100%;
        text-align: left;
    }

    .feature-content h2 {
        font-size: 32px;
    }

    .feature-visual {
        min-height: 380px;
    }
}

.hp-musthave-section {
    /* background: #f2f2f2; */
    padding: 48px 0 56px;
}

.hp-musthave-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.hp-musthave-heading {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 400;
    font-size: 30px;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hp-musthave-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.hp-musthave-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp-musthave-image {
    /* background: #ececec; */
    border-radius: 2px;
    width: 100%;
    height: 232px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform .3s ease;
}

.hp-musthave-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.hp-musthave-card:hover .hp-musthave-image img {
    transform: scale(1.04);
}

.hp-musthave-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hp-musthave-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 18px;
    flex-grow: 1;
}

.hp-musthave-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: #0d5bce;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 500;
    border-radius: 4px;
    transition: background .25s ease;
}

.hp-musthave-btn:hover {
    background: #0947a3;
}

.hp-feature-banner {
    position: relative;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    height: 460px;
    background: #000000;
}

.hp-feature-banner-text {
    position: relative;
    z-index: 2;
    width: 42%;
    padding: 0 0 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.hp-feature-banner-subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hp-feature-banner-heading {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 420px;
}

.hp-feature-banner-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #e2e2e2;
    margin-bottom: 26px;
    max-width: 400px;
}

.hp-feature-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 22px;
    background: #f0f0f0;
    color: #1a1a1a;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 4px;
    transition: background .25s ease;
}

.hp-feature-banner-btn:hover {
    background: #ffffff;
}

.hp-feature-banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hp-feature-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.hp-feature-banner:hover .hp-feature-banner-image img {
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .hp-musthave-container {
        padding: 0 30px;
    }

    .hp-feature-banner-heading {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .hp-musthave-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hp-musthave-heading {
        font-size: 26px;
    }

    .hp-feature-banner {
        height: 420px;
    }

    .hp-feature-banner-text {
        width: 55%;
        padding-left: 32px;
    }

    .hp-feature-banner-heading {
        font-size: 26px;
    }

    .hp-feature-banner-image {
        width: 65%;
    }
}

@media (max-width: 767px) {
    .hp-musthave-section {
        padding: 36px 0 44px;
    }

    .hp-musthave-container {
        padding: 0 15px;
    }

    .hp-musthave-heading {
        font-size: 21px;
        margin-bottom: 18px;
    }

    .hp-musthave-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hp-musthave-image {
        height: 210px;
    }

    .hp-feature-banner {
        flex-direction: column;
        height: auto;
    }

    .hp-feature-banner-text {
        position: relative;
        width: 100%;
        padding: 32px 22px;
    }

    .hp-feature-banner-heading {
        font-size: 22px;
        max-width: 100%;
    }

    .hp-feature-banner-desc {
        max-width: 100%;
    }

    .hp-feature-banner-image {
        position: relative;
        width: 100%;
        height: 240px;
    }
}

/* ==========================
   Container
========================== */

.category-container {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 0 30px;
}

.category-row {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 50px;
}


/* ==========================
   Card
========================== */

.hp-banner-card {
    position: relative;
    background: #ececec;
    min-height: 325px;
    /* Desktop */
    padding: 35px 30px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: .3s;
    height: 100%;
}

.hp-banner-card:hover {
    background: #2c3136;
    transform: translateY(-5px);
}

.hp-banner-card:hover .category-title {
    color: #fff;
}

.hp-banner-card:hover .category-desc {
    color: #ddd;
}

.hp-banner-card:hover .shop-link {
    color: #fff;
}

.hp-banner-card:hover .shop-link::after {
    background: #fff;
}

.hp-banner-card.dark-theme {
    background: #2c3136;
}


/* ==========================
   Content
========================== */

.category-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.category-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
    margin-bottom: 10px;
}

.dark-theme .category-title {
    color: #fff;
}

.category-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 20px;
}

.dark-theme .category-desc {
    color: #ddd;
}


/* ==========================
   Shop Link
========================== */

.shop-link {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}

.shop-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 55px;
    height: 3px;
    background: #111;
}

.dark-theme .shop-link {
    color: #fff;
}

.dark-theme .shop-link::after {
    background: #fff;
}


/* ==========================
   Image
========================== */

.category-image-wrap {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 80%;
    z-index: 1;
}

.category-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =================================
          1400px
================================= */

@media (max-width:1400px) {

    .hp-banner-card {
        /* min-height:300px; */
        min-height: 280px;
        padding: 30px 25px;
    }

    .category-title {
        font-size: 28px;
    }

    .category-desc {
        font-size: 16px;
    }

}


/* =================================
          Laptop
================================= */

@media (max-width:1199px) {

    .hp-banner-card {
        min-height: 280px;
        padding: 25px;
    }

    .category-title {
        font-size: 26px;
    }

    .category-desc {
        font-size: 15px;
    }

}


/* =================================
          Tablet
================================= */

@media (max-width:991px) {

    .category-container {
        padding: 0 20px;
    }

    .category-row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 40px;
    }

    .hp-banner-card {
        min-height: 260px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-image-wrap {
        width: 75%;
        right: -25px;
        bottom: -25px;
    }

}


/* =================================
          Mobile
================================= */

@media (max-width:767px) {

    .category-container {
        padding: 0 15px;
    }

    .category-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 30px;
    }

    .hp-banner-card {
        min-height: 240px;
        padding: 20px;
    }

    .category-title {
        font-size: 22px;
    }

    .category-desc {
        font-size: 14px;
    }

    .shop-link {
        font-size: 16px;
    }

    .category-image-wrap {
        width: 70%;
        right: -15px;
        bottom: -15px;
    }

}


/* =================================
        Small Mobile
================================= */

@media (max-width:480px) {

    .hp-banner-card {
        min-height: 270px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-image-wrap {
        width: 65%;
    }

}

.hp-product-slider {
    padding: 20px 0 100px;
    background: #ffffff;
}

.hp-slider-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.hp-slider-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 38px;
    font-weight: 500;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 55px;
    letter-spacing: -0.01em;
}

.hp-slider-outer {
    position: relative;
    display: flex;
    align-items: center;
}

.hp-product-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 4px;
}

.hp-product-card {
    background: #ffffff;
    min-height: 460px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background .3s ease;
}

.hp-product-card:hover {
    background: #f5f5f5;
}
/* .swiper-slide-active .hp-product-card {
    background: #f5f5f5;
} */

.hp-card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.hp-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hp-card-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.hp-card-desc {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin-bottom: 30px;
    min-height: 44px;
}

.hp-shop-btn {
    display: block;
    width: 100%;
    padding: 15px 0;
    background: #ffffff;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    transition: background .25s ease, color .25s ease;
    margin-top: auto;
}

.hp-shop-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.hp-slider-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    transition: opacity .2s ease;
}

.hp-slider-arrow:hover {
    opacity: 0.6;
}

.hp-slider-arrow.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
}

.hp-slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.hp-slider-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cfcfcf;
    opacity: 1;
    margin: 0 !important;
    transition: all .25s ease;
}

.hp-slider-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 30px;
    background: #1a1a1a;
}

@media (max-width: 1200px) {
    .hp-slider-container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .hp-slider-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .hp-product-card {
        min-height: 420px;
        padding: 30px 20px;
    }

    .hp-card-image {
        height: 170px;
    }
}

@media (max-width: 767px) {
    .hp-product-slider {
        padding: 60px 0 70px;
    }

    .hp-slider-container {
        padding: 0 15px;
    }

    .hp-slider-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .hp-slider-arrow {
        width: 28px;
        height: 28px;
    }

    .hp-product-card {
        min-height: 400px;
        padding: 25px 15px;
    }
}

.hp-printer-tabs {
    padding: 90px 0 100px;
    background: #ffffff;
}

.hp-tabs-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.hp-tabs-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 300;
    font-size: 42px;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
}

.hp-tab-nav {
    display: flex;
    justify-content: center;
    gap: 70px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 55px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hp-tab-nav::-webkit-scrollbar {
    display: none;
}

.hp-tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 4px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b6b6b;
    position: relative;
    flex-shrink: 0;
    transition: color .25s ease;
}

.hp-tab-icon {
    transition: color .25s ease;
}

.hp-tab-label {
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.hp-tab-underline {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #d9d9d9;
    transform: scaleX(1);
    transition: background .25s ease, transform .3s ease;
}

.hp-tab-button:hover {
    color: #1a1a1a;
}

.hp-tab-button.hp-tab-active {
    color: #0068d6;
}

.hp-tab-button.hp-tab-active .hp-tab-underline {
    background: #0068d6;
}

.hp-tab-panels {
    position: relative;
}

.hp-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity .35s ease;
}

.hp-tab-panel.hp-panel-active {
    display: block;
}

.hp-tab-panel.hp-panel-visible {
    opacity: 1;
}

.hp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hp-printer-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.hp-printer-image {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    overflow: hidden;
}

.hp-printer-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.hp-printer-card:hover .hp-printer-image img {
    transform: scale(1.06);
}

.hp-printer-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 21px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hp-printer-desc {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 44px;
}

.hp-printer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.hp-price-msrp {
    font-size: 13.5px;
    color: #8a8a8a;
    text-decoration: line-through;
}

.hp-price-now {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

.hp-printer-shop {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: #ffffff;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    margin-top: auto;
    transition: background .25s ease, color .25s ease;
}

.hp-printer-shop:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.hp-tabs-bottom {
    text-align: center;
    margin-top: 50px;
}

.hp-view-all-link {
    display: inline-block;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
}

.hp-view-all-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
}

.hp-view-all-link:hover {
    color: #0068d6;
}

.hp-view-all-link:hover::after {
    background: #0068d6;
}

@media (max-width: 1200px) {
    .hp-tabs-container {
        padding: 0 30px;
    }

    .hp-tab-nav {
        gap: 45px;
    }
}

@media (max-width: 991px) {
    .hp-tabs-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    .hp-tab-nav {
        gap: 32px;
        justify-content: flex-start;
        margin-bottom: 40px;
    }

    .hp-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .hp-printer-tabs {
        padding: 60px 0 70px;
    }

    .hp-tabs-container {
        padding: 0 15px;
    }

    .hp-tabs-title {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .hp-tab-nav {
        gap: 24px;
        margin-bottom: 30px;
    }

    .hp-tab-label {
        font-size: 12.5px;
    }

    .hp-product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hp-tabs-bottom {
        margin-top: 34px;
    }
}

.hp-business-section {
    background: #ffffff;
    padding: 70px 0;
    opacity: 0;
    animation: hpBusinessFadeIn .7s ease forwards;
}

@keyframes hpBusinessFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-business-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 60px;
}

.hp-business-wrapper {
    display: flex;
    align-items: center;
    gap: 150px;
}

.hp-business-content {
    flex: 0 0 42%;
    max-width: 42%;
}

.hp-business-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #0d5bce;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.hp-business-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.hp-business-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #55606b;
    max-width: 420px;
    margin-bottom: 26px;
}

.hp-business-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hp-business-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    opacity: 0;
    animation: hpBusinessCheckFade .5s ease forwards;
}

.hp-business-list-item:nth-child(1) {
    animation-delay: .1s;
}

.hp-business-list-item:nth-child(2) {
    animation-delay: .2s;
}

.hp-business-list-item:nth-child(3) {
    animation-delay: .3s;
}

.hp-business-list-item:nth-child(4) {
    animation-delay: .4s;
}

@keyframes hpBusinessCheckFade {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hp-business-check {
    flex-shrink: 0;
    color: #0d5bce;
}

.hp-business-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hp-business-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    background: #0d5bce;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 6px;
    transition: background .25s ease;
}

.hp-business-btn-primary:hover {
    background: #0947a3;
}

.hp-business-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14.5px;
    font-weight: 600;
    border: 1.5px solid #1a1a1a;
    border-radius: 6px;
    transition: background .25s ease, color .25s ease;
}

.hp-business-btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.hp-business-image {
    flex: 0 0 58%;
    max-width: 48%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.hp-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.hp-business-image:hover img {
    transform: scale(1.04);
}

@media (max-width: 1200px) {
    .hp-business-container {
        padding: 0 30px;
    }

    .hp-business-title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .hp-business-wrapper {
        flex-direction: column;
    }

    .hp-business-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hp-business-image {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
        height: 320px;
    }

    .hp-business-content {
        order: 1;
    }

    .hp-business-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hp-business-section {
        padding: 50px 0;
    }

    .hp-business-container {
        padding: 0 15px;
    }

    .hp-business-wrapper {
        gap: 30px;
    }

    .hp-business-title {
        font-size: 24px;
    }

    .hp-business-image {
        height: 240px;
    }

    .hp-business-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-business-btn-primary,
    .hp-business-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.hp-tech-banner {
    background: #ffffff;
    padding: 55px 0;
    overflow: hidden;
    opacity: 0;
    animation: hpTechFadeIn .7s ease forwards;
}

@keyframes hpTechFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-tech-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hp-tech-left {
    flex: 0 0 auto;
    width: 26%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-tech-left img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}

.hp-tech-left:hover img {
    transform: scale(1.03);
}

.hp-tech-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.hp-tech-subheading {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 34px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
}

.hp-tech-heading {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.hp-tech-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    border-radius: 100px;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: background .25s ease, color .25s ease;
}

.hp-tech-button:hover {
    background: #ffffff;
    color: #0063F7;
}

.hp-tech-right {
    flex: 0 0 auto;
    width: 26%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-tech-right img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}

.hp-tech-right:hover img {
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .hp-tech-wrapper {
        padding: 0 30px;
        gap: 24px;
    }

    .hp-tech-heading {
        font-size: 38px;
    }

    .hp-tech-subheading {
        font-size: 28px;
    }
}

@media (max-width: 991px) {

    .hp-tech-left,
    .hp-tech-right {
        width: 22%;
    }

    .hp-tech-heading {
        font-size: 30px;
    }

    .hp-tech-subheading {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .hp-tech-banner {
        padding: 40px 0;
    }

    .hp-tech-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 26px;
    }

    .hp-tech-left,
    .hp-tech-right {
        width: 70%;
    }

    .hp-tech-left img,
    .hp-tech-right img {
        max-height: 200px;
    }

    .hp-tech-heading {
        font-size: 26px;
    }

    .hp-tech-subheading {
        font-size: 19px;
    }

    .hp-tech-button {
        width: 100%;
    }
}

.hp-news-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

.hp-news-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.hp-news-heading {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 400;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 34px;
    letter-spacing: -0.01em;
}

.hp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hp-news-card {
    display: flex;
    flex-direction: column;
}

.hp-news-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #eeeeee;
}

.hp-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.hp-news-card:hover .hp-news-image img {
    transform: scale(1.05);
}

.hp-news-image-special {
    display: flex;
    background: #ffffff;
}

.hp-news-special-left {
    position: relative;
    width: 42%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px 24px 0;
}

.hp-news-diagonal {
    position: absolute;
    top: 24px;
    left: 0;
    width: 68%;
    height: 15%;
    background: #0d5bce;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.hp-news-special-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hp-news-special-logo {
    flex-shrink: 0;
}

.hp-news-special-right {
    width: 58%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hp-news-special-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.hp-news-card:hover .hp-news-special-right img {
    transform: scale(1.05);
}

.hp-news-date {
    font-size: 13.5px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 10px;
}

.hp-news-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.32;
    margin-bottom: 14px;
}

.hp-news-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 18px;
    flex-grow: 1;
}

.hp-news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #0068d6;
    width: fit-content;
}

.hp-news-arrow {
    display: inline-block;
    transition: transform .25s ease;
}

.hp-news-link:hover .hp-news-arrow {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .hp-news-container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .hp-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .hp-news-heading {
        font-size: 26px;
    }

    .hp-news-image {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .hp-news-section {
        padding: 44px 0 56px;
    }

    .hp-news-container {
        padding: 0 15px;
    }

    .hp-news-heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .hp-news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hp-news-image {
        height: 220px;
    }

    .hp-news-title {
        font-size: 19px;
    }
}

.enterprise-footer {
    background: #0B0F14;
    background-image: linear-gradient(180deg, #0d1218 0%, #0B0F14 100%);
    padding: 56px 0 0;
}

.footer-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 44px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-name {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.footer-brand-desc {
    font-size: 17.5px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #161d26;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, color .25s ease;
}

.footer-social-icon:hover {
    background: #0d5bce;
    color: #ffffff;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 17.5px;
    color: #ffffff;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #4a90ff;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 17px;
    color: #ffffff;
    line-height: 1.5;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #4a90ff;
}

.footer-newsletter-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #9aa5b1;
    margin-bottom: 16px;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: #161d26;
    border-radius: 100px;
    padding: 4px 4px 4px 16px;
    overflow: hidden;
}

.footer-newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-family: inherit;
    min-width: 0;
}

.footer-newsletter-input::placeholder {
    color: #6b7684;
}

.footer-newsletter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0d5bce;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .25s ease;
}

.footer-newsletter-btn:hover {
    background: #0947a3;
}

.footer-bottom {
    border-top: 1px solid #1b232c;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copyright {
    font-size: 17.5px;
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    gap: 26px;
}

.footer-bottom-links a {
    font-size: 17.5px;
    color: #ffffff;
    transition: color .2s ease;
}

.footer-bottom-links a:hover {
    color: #4a90ff;
}

@media (max-width: 1200px) {
    .footer-wrapper {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .enterprise-footer {
        padding: 40px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}