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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
}

body.zc-mobile-menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.zc-shell {
    width: min(calc(100% - 40px), var(--zc-container-width));
    margin: 0 auto;
}

.site-main {
    overflow: clip;
}

.section-heading {
    margin: 0 auto 42px;
    max-width: 760px;
}

.section-heading--center {
    text-align: center;
}

.section-heading__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--zc-accent);
}

.section-heading__kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px;
    font-family: var(--zc-heading-font);
    line-height: 1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
    margin: 0 0 16px;
    color: var(--zc-muted);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: calc(var(--zc-radius) - 6px);
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.zc-btn:hover {
    transform: translateY(-2px);
}

.zc-btn-primary {
    background: var(--zc-accent);
    color: #fff;
    box-shadow: 0 18px 38px rgba(220, 38, 38, calc(var(--zc-shadow-strength) + 0.05));
}

.zc-btn-primary:hover {
    background: var(--zc-highlight);
}

.zc-btn-outline {
    border-color: rgba(220, 38, 38, 0.28);
    background: rgba(255, 255, 255, 0.8);
    color: var(--zc-accent);
}

.zc-btn-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(16px);
}

.zc-btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.92rem;
}

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

.zc-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--zc-accent);
}

.zc-inline-link::after {
    content: "";
    width: 22px;
    height: 12px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 12'%3E%3Cpath stroke='black' stroke-width='2' d='M1 6h21M18 1l5 5-5 5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-actions {
    margin-top: 36px;
    text-align: center;
}

.promo-bar {
    position: relative;
    z-index: 40;
    background: var(--zc-accent-alt);
    color: #fff;
}

.promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
}

.promo-bar__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.promo-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.promo-bar__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.promo-bar__icon svg {
    width: 100%;
    height: 100%;
}

.promo-bar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 229, 244, 0.7);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 34px rgba(15, 36, 71, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 96px;
}

.site-branding {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-branding__mark {
    width: clamp(40px, 3vw, 48px);
    height: clamp(40px, 3vw, 48px);
    flex: 0 0 auto;
    color: var(--zc-accent);
}

.site-branding__mark svg {
    width: 100%;
    height: 100%;
}

.site-branding__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-branding__title {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--zc-accent-alt);
    font-family: var(--zc-heading-font);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.site-branding__title img,
.site-branding__title .custom-logo {
    width: auto;
    height: var(--zc-logo-height);
}

.site-branding__tagline {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--zc-muted);
}

.site-header__nav {
    flex: 1 1 auto;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 34px);
}

.primary-menu a,
.mobile-menu a,
.footer-menu a {
    position: relative;
    color: var(--zc-text);
    font-weight: 600;
}

.primary-menu a::after,
.footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--zc-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.primary-menu a:hover::after,
.footer-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
    transform: scaleX(1);
}

/* sub-menu on items with children: suppress parent underline, show chevron */
.primary-menu .menu-item-has-children > a::after {
    display: none;
}

.primary-menu .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.primary-menu .menu-item-has-children > a::before {
    content: '';
    order: 1;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.55;
    transition: transform 0.2s ease;
}

.primary-menu .menu-item-has-children:hover > a::before,
.primary-menu .menu-item-has-children:focus-within > a::before {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Desktop dropdown panel ──────────────────────────────────── */
.primary-menu .menu-item-has-children {
    position: relative;
}

.primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 210px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(219, 229, 244, 0.9);
    box-shadow: 0 22px 46px rgba(15, 36, 71, 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s;
    z-index: 200;
}

/* bridge gap so mouse can reach dropdown */
.primary-menu .sub-menu::before {
    content: '';
    position: absolute;
    inset: -22px -12px auto;
    height: 22px;
}

.primary-menu .menu-item-has-children:hover .sub-menu,
.primary-menu .menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.primary-menu .sub-menu li a {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 0.91rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--zc-text);
    transition: background 0.15s, color 0.15s;
}

.primary-menu .sub-menu li a::after,
.primary-menu .sub-menu li a::before {
    display: none;
}

.primary-menu .sub-menu li a:hover,
.primary-menu .sub-menu .current-menu-item > a {
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
}

.primary-menu .sub-menu .zc-subnav-all a {
    border-bottom: 1px solid rgba(219, 229, 244, 0.7);
    border-radius: 8px 8px 0 0;
    margin-bottom: 4px;
    color: var(--zc-accent);
    font-weight: 700;
}

/* ── Mobile submenu ──────────────────────────────────────────── */
.mobile-menu .sub-menu {
    display: grid;
    gap: 0;
    margin: 2px 0 8px 18px;
    list-style: none;
    padding: 0;
}

.mobile-menu .sub-menu li a {
    padding: 8px 0;
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--zc-muted);
    border-bottom: 1px solid rgba(219, 229, 244, 0.55);
}

.mobile-menu .sub-menu .zc-subnav-all a {
    color: var(--zc-accent);
    font-weight: 700;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__language {
    position: relative;
    z-index: 5;
}

.site-header__language .fanyi2-language-switcher {
    display: inline-flex;
}

.site-header__language .fanyi2-switcher-current {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(219, 229, 244, 0.9);
    border-radius: 999px;
    background: #fff;
    color: var(--zc-accent-alt);
    box-shadow: none;
}

.site-header__language .fanyi2-switcher-current:hover {
    border-color: rgba(220, 38, 38, 0.42);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.1);
}

.site-header__language .fanyi2-switcher-dropdown {
    top: calc(100% + 10px);
    right: 0;
    bottom: auto;
    left: auto;
    margin: 0;
    border-color: rgba(220, 38, 38, 0.14);
    box-shadow: 0 20px 42px rgba(63, 17, 17, 0.16);
}

.site-header__language .fanyi2-lang-option:hover,
.site-header__language .fanyi2-lang-option.active {
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
}

.site-header__icon,
.site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(219, 229, 244, 0.9);
    border-radius: 999px;
    background: #fff;
    color: var(--zc-text);
}

.site-header__icon svg,
.site-header__toggle svg {
    width: 20px;
    height: 20px;
}

.site-header__cart {
    position: relative;
}

.site-header__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--zc-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.site-header__toggle {
    display: none;
}

.site-search-panel {
    padding: 0 0 18px;
}

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: calc(var(--zc-radius) + 2px);
    background: #fff;
    border: 1px solid rgba(219, 229, 244, 0.85);
    box-shadow: 0 18px 42px rgba(15, 36, 71, 0.08);
}

.search-form label {
    flex: 1 1 auto;
}

.search-field {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--zc-text);
}

.search-submit {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--zc-accent);
    color: #fff;
}

.search-submit svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-panel {
    position: absolute;
    inset: 100% 0 auto;
    padding: 16px 0 24px;
    background: rgba(246, 249, 255, 0.98);
    border-bottom: 1px solid rgba(219, 229, 244, 0.88);
    box-shadow: 0 20px 44px rgba(15, 36, 71, 0.12);
}

.mobile-menu-panel__inner {
    border-radius: calc(var(--zc-radius) + 6px);
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(219, 229, 244, 0.85);
}

.mobile-menu-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-menu {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(219, 229, 244, 0.72);
}

.home-hero {
    position: relative;
    padding: 54px 0 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 40%),
        linear-gradient(180deg, #fff7f7 0%, #fff1f2 100%);
}

.home-hero__slider,
.home-hero__slides {
    position: relative;
}

.home-hero__slides {
    display: grid;
}

.home-hero__slide {
    position: relative;
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.home-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(246, 249, 255, 0.92) 0%, rgba(246, 249, 255, 0.72) 36%, rgba(246, 249, 255, 0.18) 100%);
    pointer-events: none;
}

.home-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 47%);
    gap: clamp(34px, 4vw, 52px);
    align-items: center;
}

.home-hero__content {
    padding: 14px 0;
}

.home-hero__title {
    max-width: 620px;
    margin-bottom: 14px;
    color: var(--zc-accent-alt);
    font-size: clamp(2.8rem, 5.2vw, 4.8rem);
    text-transform: uppercase;
}

.home-hero__text {
    max-width: 560px;
    font-size: 1.02rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.home-hero__actions .zc-btn-ghost {
    border-color: rgba(220, 38, 38, 0.26);
    background: rgba(255, 255, 255, 0.86);
    color: var(--zc-accent);
    box-shadow: 0 14px 30px rgba(220, 38, 38, 0.08);
}

.home-hero__actions .zc-btn-ghost:hover {
    background: rgba(220, 38, 38, 0.08);
}

.home-hero__trust {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--zc-accent);
    font-weight: 700;
}

.home-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero__chips li {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(219, 229, 244, 0.9);
    background: rgba(255, 255, 255, 0.82);
    color: var(--zc-accent-alt);
    font-weight: 600;
}

.home-hero__visual {
    position: relative;
}

.home-hero__frame {
    position: relative;
    min-height: 460px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(63, 17, 17, 0.1), rgba(63, 17, 17, 0.02)),
        var(--zc-hero-bg) center/cover no-repeat,
        linear-gradient(135deg, #ffe4e6 0%, #ffffff 100%);
    box-shadow: 0 30px 80px rgba(127, 29, 29, 0.14);
}

.home-hero__frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.44) 100%);
}

.home-hero__glass,
.home-hero__stats-card {
    position: absolute;
    backdrop-filter: blur(16px);
    background: rgba(15, 36, 71, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 36px rgba(15, 36, 71, 0.26);
}

.home-hero__glass {
    left: 30px;
    bottom: 32px;
    padding: 18px 20px;
    border-radius: 22px;
    max-width: 280px;
}

.home-hero__glass span,
.home-hero__stats-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.home-hero__glass strong,
.home-hero__stats-card strong {
    font-family: var(--zc-heading-font);
    font-size: 1.5rem;
    line-height: 1.05;
}

.home-hero__stats-card {
    right: 30px;
    top: 30px;
    padding: 18px 22px;
    border-radius: 22px;
}

.home-hero__controls {
    position: absolute;
    inset: auto 0 40px;
    z-index: 2;
    pointer-events: none;
}

.home-hero__controls-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    pointer-events: auto;
}

.home-hero__pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-hero__dot,
.home-hero__arrow {
    border: 0;
}

.home-hero__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: inset 0 0 0 1px rgba(15, 36, 71, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease, width 0.25s ease;
}

.home-hero__dot.is-active {
    width: 36px;
    background: #fff;
}

.home-hero__arrows {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.home-hero__arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 36, 71, 0.68);
    color: #fff;
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-hero__arrow:hover {
    transform: translateY(-2px);
    background: rgba(220, 38, 38, 0.88);
}

.home-hero__arrow.is-prev svg {
    transform: rotate(180deg);
}

.home-features {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

.home-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    background: var(--zc-surface);
    border: 1px solid rgba(219, 229, 244, 0.88);
    box-shadow: 0 18px 42px rgba(15, 36, 71, 0.08);
}

.feature-card {
    display: flex;
    gap: 18px;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 244, 255, 0.6));
    border-right: 1px solid rgba(219, 229, 244, 0.72);
}

.feature-card:last-child {
    border-right: 0;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
}

.feature-card__icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.96rem;
}

.home-products,
.home-about,
.home-faq,
.home-news,
.home-partners,
.home-inquiry {
    padding: 92px 0;
}

.product-grid,
.news-grid,
.zc-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card,
.news-card,
.zc-post-card,
.zc-search-result,
.zc-empty-state,
.zc-page-content,
.zc-sidebar-card,
.zc-comments,
.zc-single-product-inquiry {
    border-radius: calc(var(--zc-radius) + 4px);
    background: var(--zc-surface);
    border: 1px solid rgba(219, 229, 244, 0.85);
    box-shadow: 0 18px 42px rgba(15, 36, 71, 0.08);
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card__image,
.news-card__image,
.zc-post-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff1f2;
}

.product-card__image {
    aspect-ratio: 4 / 3;
}

.news-card__image,
.zc-post-card__image {
    aspect-ratio: 16 / 10;
}

.product-card__image img,
.news-card__image img,
.zc-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img,
.news-card:hover .news-card__image img,
.zc-post-card:hover .zc-post-card__image img {
    transform: scale(1.04);
}

.product-card__placeholder,
.product-card__image.is-fallback,
.news-card__placeholder,
.zc-post-card__placeholder,
.news-card__image--fallback {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    background:
        radial-gradient(circle at 25% 25%, rgba(244, 63, 94, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(255, 255, 255, 0.88));
}

.tax-product_cat.term-home-service-menu .zc-product-cats {
    display: none;
}

.product-card__image.is-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__fallback-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--zc-accent);
}

.product-card__fallback-icon svg {
    width: 34px;
    height: 34px;
}

.product-card__body,
.news-card__body,
.zc-post-card__content {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.product-card__meta,
.news-card__date,
.zc-post-card__date,
.zc-search-result__type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-card__body h2,
.product-card__body h3,
.news-card__body h3,
.zc-post-card__title {
    margin-bottom: 0;
}

.product-card__body p,
.news-card__body p,
.zc-post-card__content p {
    margin-bottom: 0;
}

.product-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.product-card__actions .button,
.product-card__actions .added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: calc(var(--zc-radius) - 8px);
    background: var(--zc-accent);
    color: #fff;
    font-weight: 700;
}

.home-showcase {
    background: #fff;
}

.home-showcase__heading {
    max-width: 880px;
    margin: 0 auto 54px;
    text-align: center;
}

.home-showcase__mark {
    display: inline-grid;
    justify-items: center;
    margin-bottom: 24px;
    color: #080808;
    font-family: var(--zc-body-font);
    font-size: clamp(4rem, 9vw, 6.4rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-showcase__mark::after {
    content: "";
    width: 54px;
    height: 8px;
    margin-top: 18px;
    background: currentColor;
}

.home-showcase__heading .section-heading__kicker {
    justify-content: center;
    margin-bottom: 10px;
}

.home-showcase__heading h2 {
    margin-bottom: 12px;
    color: #6f6f6f;
    font-family: var(--zc-body-font);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.45;
}

.home-showcase__heading p {
    max-width: 640px;
    margin: 0 auto;
    color: #9a9a9a;
    font-size: 0.96rem;
    line-height: 1.8;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 132px;
    grid-auto-flow: dense;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.home-service-tile {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(43, 21, 21, 0.1);
    background: #fff;
}

.home-service-tile--1 {
    grid-column: 1 / 9;
    grid-row: span 2;
}

.home-service-tile--2 {
    grid-column: 9 / 13;
    grid-row: span 2;
}

.home-service-tile--3 {
    grid-column: 1 / 5;
    grid-row: span 4;
}

.home-service-tile--4 {
    grid-column: 5 / 13;
    grid-row: span 2;
}

.home-service-tile--5 {
    grid-column: 5 / 9;
    grid-row: span 2;
}

.home-service-tile--6 {
    grid-column: 9 / 13;
    grid-row: span 2;
}

.home-service-tile__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: inherit;
}

.home-service-tile__visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff7f7;
}

.home-service-tile__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.02);
}

.home-service-tile__visual.is-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-service-tile__visual.is-fallback::before,
.home-service-tile__visual.is-fallback::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.home-service-tile__visual.is-fallback::before {
    width: 58%;
    height: 44%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 34px rgba(63, 17, 17, 0.07);
}

.home-service-tile__visual.is-fallback::after {
    right: 14%;
    bottom: 18%;
    width: 28%;
    height: 18%;
    border-radius: 999px;
    border: 8px solid rgba(220, 38, 38, 0.16);
    border-left-color: transparent;
    border-right-color: transparent;
}

.home-service-tile--2 .home-service-tile__visual.is-fallback {
    background: #fff1f2;
}

.home-service-tile--3 .home-service-tile__visual.is-fallback {
    background: var(--zc-accent-alt);
    color: #fff;
}

.home-service-tile--3 .home-service-tile__visual.is-fallback::before {
    background: rgba(255, 255, 255, 0.12);
}

.home-service-tile--4 .home-service-tile__visual.is-fallback {
    background: #fff;
}

.home-service-tile--5 .home-service-tile__visual.is-fallback {
    background: #fef2f2;
}

.home-service-tile--6 .home-service-tile__visual.is-fallback {
    background: #fff1f2;
}

.home-service-tile__icon {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--zc-accent);
}

.home-service-tile--3 .home-service-tile__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.home-service-tile__icon svg {
    width: 38px;
    height: 38px;
}

.home-service-tile__content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 6px;
    max-width: 420px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(43, 21, 21, 0.06);
    box-shadow: 0 12px 26px rgba(43, 21, 21, 0.08);
}

.home-service-tile__content span {
    color: var(--zc-accent);
    font-size: 0.78rem;
    font-weight: 800;
}

.home-service-tile__content h3 {
    margin: 0;
    color: var(--zc-accent-alt);
    font-size: clamp(1rem, 1.32vw, 1.32rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.home-service-tile__price {
    color: var(--zc-accent);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.25;
}

.home-service-tile__price .service-plan-card__price-prefix {
    display: inline;
    margin-right: 4px;
    color: var(--zc-muted);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
}

.home-service-tile__content p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.48;
}

.services-page__summary {
    padding: 28px 0 0;
}

.services-page__perks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 26px;
    color: var(--zc-accent-alt);
    font-weight: 700;
}

.services-page__perks span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.services-page__perks svg {
    width: 20px;
    height: 20px;
    color: var(--zc-accent);
}

.services-page__plans {
    padding: 70px 0 104px;
}

.service-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
}

.service-plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border-radius: calc(var(--zc-radius) + 6px);
    background: var(--zc-surface);
    border: 1px solid rgba(254, 205, 211, 0.92);
    box-shadow: 0 22px 54px rgba(63, 17, 17, 0.08);
}

.service-plan-card.is-featured {
    border-color: rgba(220, 38, 38, 0.62);
    box-shadow: 0 26px 70px rgba(220, 38, 38, 0.18);
}

.service-plan-card:not(.is-featured)::before {
    content: "";
    display: block;
    min-height: 46px;
}

.service-plan-card__ribbon {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: var(--zc-accent);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-plan-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(252, 165, 165, 0.34), rgba(255, 255, 255, 0.78));
}

.service-plan-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-plan-card:hover .service-plan-card__image img {
    transform: scale(1.035);
}

.service-plan-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
}

.service-plan-card__meta {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
    font-size: 0.8rem;
    font-weight: 800;
}

.service-plan-card h2 {
    margin: 0;
    min-height: 2.08em;
    font-size: clamp(1.8rem, 2.3vw, 2.45rem);
    line-height: 1;
}

.service-plan-card h2 a {
    color: inherit;
}

.service-plan-card__text {
    min-height: 136px;
    margin: 0;
}

.service-plan-card__price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    align-items: baseline;
    min-height: 66px;
    color: var(--zc-accent-alt);
    font-family: var(--zc-heading-font);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
}

.service-plan-card__price-prefix {
    flex: 0 0 100%;
    color: var(--zc-muted);
    font-family: var(--zc-body-font);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-plan-card__price del {
    margin-right: 8px;
    color: var(--zc-muted);
    font-size: 1rem;
    font-family: var(--zc-body-font);
    font-weight: 600;
}

.service-plan-card__price ins {
    color: var(--zc-accent-alt);
    text-decoration: none;
}

.service-plan-card__actions {
    margin-top: 0;
}

.service-plan-card__features {
    display: grid;
    gap: 12px;
    margin: 8px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(254, 205, 211, 0.88);
    list-style: none;
}

.service-plan-card__features li {
    position: relative;
    padding-left: 28px;
    color: var(--zc-accent-alt);
    font-weight: 650;
}

.service-plan-card__features li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--zc-accent);
    box-shadow: inset 0 0 0 4px #fff;
}

.home-about__grid,
.home-inquiry__grid,
.zc-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.home-about__grid,
.home-inquiry__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.home-about__media {
    position: relative;
}

.home-about__media img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 26px 56px rgba(15, 36, 71, 0.14);
}

.home-about__badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 18px 20px;
    border-radius: 24px 24px 24px 8px;
    background: linear-gradient(135deg, var(--zc-accent), var(--zc-highlight));
    color: #fff;
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.28);
}

.home-about__badge strong {
    font-family: var(--zc-heading-font);
    font-size: 2.2rem;
    line-height: 1;
}

.home-about__content {
    padding-inline-start: clamp(0px, 2vw, 24px);
}

.home-about__list {
    display: grid;
    gap: 14px;
    margin: 26px 0 32px;
}

.home-about__list li,
.home-inquiry__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--zc-text);
    font-weight: 600;
}

.home-about__list svg,
.home-inquiry__contact svg,
.site-footer__icon svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--zc-accent);
}

.home-stats {
    padding: 34px 0;
    background: linear-gradient(135deg, var(--zc-accent-alt), var(--zc-accent));
    color: #fff;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.stat-card {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 16px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.stat-card__icon svg {
    width: 26px;
    height: 26px;
}

.stat-card strong {
    font-family: var(--zc-heading-font);
    font-size: clamp(2.1rem, 3vw, 2.8rem);
    line-height: 1;
}

.stat-card span:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.home-faq {
    background:
        radial-gradient(circle at 12% 12%, rgba(220, 38, 38, 0.08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.home-faq__grid {
    display: block;
}

.home-faq__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-faq__item {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(254, 205, 211, 0.88);
    box-shadow: 0 16px 38px rgba(63, 17, 17, 0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-faq__item[open] {
    border-color: rgba(220, 38, 38, 0.42);
    box-shadow: 0 22px 48px rgba(220, 38, 38, 0.1);
}

.home-faq__question {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 18px 22px;
    color: var(--zc-accent-alt);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.home-faq__question::-webkit-details-marker {
    display: none;
}

.home-faq__toggle {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
}

.home-faq__toggle::before,
.home-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--zc-accent);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.home-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq__item[open] .home-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq__answer {
    padding: 0 22px 22px;
}

.home-faq__answer p {
    margin-bottom: 10px;
}

.home-faq__answer p:last-child {
    margin-bottom: 0;
}

.partner-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.partner-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(219, 229, 244, 0.88);
    color: rgba(16, 37, 66, 0.58);
    font-family: var(--zc-heading-font);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-inquiry__intro {
    padding-right: clamp(0px, 2vw, 22px);
}

.home-inquiry__contact {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.home-inquiry__form .zc-inquiry-block {
    margin: 0;
    padding: 28px;
    border-radius: 28px;
    border-color: rgba(219, 229, 244, 0.85);
    box-shadow: 0 22px 52px rgba(15, 36, 71, 0.08);
}

.home-inquiry__form .zc-inquiry-block__intro {
    display: none;
}

.zc-inquiry-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.96));
}

.zc-inquiry-field label {
    color: var(--zc-text);
}

.zc-inquiry-field input,
.zc-inquiry-field textarea,
.zc-file-input {
    border-color: rgba(219, 229, 244, 1);
    border-radius: calc(var(--zc-radius) - 4px);
    background: rgba(255, 255, 255, 0.96);
    color: var(--zc-text);
}

.zc-inquiry-field input:focus,
.zc-inquiry-field textarea:focus {
    outline: 0;
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.zc-file-input__button {
    border-color: rgba(220, 38, 38, 0.2);
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
    font-weight: 700;
}

.zc-inquiry-form .zc-btn {
    margin-top: 8px;
}

.page-hero {
    padding: 60px 0 40px;
    background:
        linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(244, 63, 94, 0.02)),
        linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.page-hero__inner {
    max-width: 860px;
}

.page-hero__title {
    color: var(--zc-accent-alt);
    text-transform: uppercase;
}

.page-hero__description {
    max-width: 720px;
    font-size: 1.05rem;
}

.zc-content-grid {
    align-items: start;
    padding: 74px 0 96px;
}

.zc-content-grid__main {
    min-width: 0;
}

.zc-page-content,
.zc-single-post {
    padding: 32px;
}

.zc-page-content__image,
.zc-single-post__image {
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 22px;
}

.zc-page-content--with-image {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
    align-items: start;
}

.zc-page-content--with-image .zc-page-content__image {
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
}

.zc-page-content--with-image .zc-page-content__image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

.zc-entry-content > *:last-child {
    margin-bottom: 0;
}

.zc-entry-content ul {
    list-style: disc;
    margin: 0 0 18px 20px;
    padding-left: 16px;
}

.zc-entry-content ol {
    list-style: decimal;
    margin: 0 0 18px 20px;
    padding-left: 16px;
}

.zc-entry-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--zc-accent);
    border-radius: 0 18px 18px 0;
    background: rgba(220, 38, 38, 0.05);
    color: var(--zc-accent-alt);
}

.zc-single-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(219, 229, 244, 0.85);
    color: var(--zc-muted);
    font-size: 0.95rem;
}

.zc-comments {
    margin-top: 28px;
    padding: 26px;
}

.zc-comments__title {
    margin-bottom: 18px;
}

.zc-comments__list {
    display: grid;
    gap: 18px;
}

.zc-comments .comment-body {
    padding: 18px;
    border-radius: 18px;
    background: rgba(246, 249, 255, 0.85);
}

.widget {
    padding: 24px;
    border-radius: calc(var(--zc-radius) + 4px);
    background: var(--zc-surface);
    border: 1px solid rgba(219, 229, 244, 0.85);
    box-shadow: 0 16px 32px rgba(15, 36, 71, 0.06);
}

.widget + .widget {
    margin-top: 22px;
}

.widget-title {
    margin-bottom: 14px;
}

.zc-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zc-post-card,
.news-card {
    overflow: hidden;
}

.zc-pagination {
    margin-top: 30px;
}

.zc-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(219, 229, 244, 0.85);
    background: #fff;
    color: var(--zc-text);
    font-weight: 700;
}

.zc-pagination .page-numbers.current {
    background: var(--zc-accent);
    border-color: var(--zc-accent);
    color: #fff;
}

.zc-search-results {
    display: grid;
    gap: 18px;
}

.zc-search-result {
    padding: 24px;
}

.zc-empty-state {
    padding: 42px;
    text-align: center;
}

.zc-empty-state__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.zc-inquiry-page {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: start;
}

.zc-inquiry-page__content,
.zc-inquiry-page__form {
    padding: 30px;
    border-radius: calc(var(--zc-radius) + 6px);
    background: var(--zc-surface);
    border: 1px solid rgba(219, 229, 244, 0.85);
    box-shadow: 0 18px 42px rgba(15, 36, 71, 0.08);
}

.zc-inquiry-page__form .zc-inquiry-block__intro {
    display: none;
}

.zc-inquiry-page__form .zc-inquiry-block {
    margin: 0;
}

.floating-contact {
    position: fixed;
    top: 50%;
    z-index: 45;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.floating-contact--right {
    right: 20px;
}

.floating-contact--left {
    left: 20px;
}

.floating-contact__item {
    position: relative;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: var(--zc-accent);
    box-shadow: 0 14px 32px rgba(220, 38, 38, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-contact__item:hover,
.floating-contact__item:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(220, 38, 38, 0.3);
}

.floating-contact__item--whatsapp {
    background: #16a34a;
    box-shadow: 0 14px 32px rgba(22, 163, 74, 0.22);
}

.floating-contact__item--phone {
    background: var(--zc-accent-alt);
}

.floating-contact__item--email {
    background: #dc2626;
}

.floating-contact--circle .floating-contact__item {
    border-radius: 999px;
}

.floating-contact--rounded .floating-contact__item {
    border-radius: 18px;
}

.floating-contact__item svg {
    width: 22px;
    height: 22px;
}

.floating-contact__label {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    width: max-content;
    max-width: 150px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--zc-accent-alt);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(6px, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-contact--left .floating-contact__label {
    right: auto;
    left: calc(100% + 10px);
    transform: translate(-6px, -50%);
}

.floating-contact__item:hover .floating-contact__label,
.floating-contact__item:focus-visible .floating-contact__label {
    opacity: 1;
    transform: translate(0, -50%);
}

.floating-contact__panel {
    position: absolute;
    top: 50%;
    right: calc(100% + 14px);
    width: min(250px, calc(100vw - 92px));
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(254, 205, 211, 0.9);
    box-shadow: 0 18px 42px rgba(63, 17, 17, 0.16);
    transform: translateY(-50%);
}

.floating-contact--left .floating-contact__panel {
    right: auto;
    left: calc(100% + 14px);
}

.floating-contact__panel strong {
    display: block;
    margin: 0 34px 10px 0;
    color: var(--zc-accent-alt);
    font-family: var(--zc-heading-font);
    font-size: 1.45rem;
    line-height: 1;
}

.floating-contact__panel p {
    margin: 0 0 14px;
    color: var(--zc-muted);
    overflow-wrap: anywhere;
}

.floating-contact__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--zc-accent);
    cursor: pointer;
}

.floating-contact__close svg {
    width: 16px;
    height: 16px;
}

.floating-contact__qr {
    width: 132px;
    height: 132px;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px;
    border-radius: 14px;
    border: 1px solid rgba(254, 205, 211, 0.88);
}

.floating-contact__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--zc-accent);
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.floating-contact__action:hover {
    color: #fff;
}

.site-footer {
    padding: 72px 0 28px;
    background: linear-gradient(180deg, #17263f 0%, #0f1b31 100%);
    color: #fff;
}

.site-footer .site-branding__title,
.site-footer .site-branding__tagline {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
    margin-bottom: 18px;
    color: #fff;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-menu,
.site-footer__contact-list {
    display: grid;
    gap: 12px;
}

.footer-menu a,
.site-footer__contact-list li,
.site-footer__legal a {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.site-footer__social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.site-footer__social svg {
    width: 18px;
    height: 18px;
}

.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 18px;
}

.alignwide {
    margin-left: auto;
    margin-right: auto;
}

.wp-block-image img {
    border-radius: 20px;
}

@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-card {
        padding: 24px;
    }

    .home-stats__grid,
    .partner-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .site-header__nav,
    .site-header__cta {
        display: none;
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .home-hero__grid,
    .home-about__grid,
    .home-faq__grid,
    .home-inquiry__grid,
    .zc-page-content--with-image,
    .zc-inquiry-page,
    .zc-content-grid {
        grid-template-columns: 1fr;
    }

    .home-hero__frame {
        min-height: 420px;
    }

    .home-hero__controls {
        inset: auto 0 18px;
    }

    .home-features__grid,
    .home-stats__grid,
    .partner-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid,
    .home-service-grid,
    .service-plan-grid,
    .news-grid,
    .zc-post-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card:nth-child(2),
    .feature-card:nth-child(4),
    .stat-card:nth-child(2) {
        border-right: 0;
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        border-bottom: 1px solid rgba(219, 229, 244, 0.72);
    }

    body.single-product .floating-contact {
        display: none;
    }

    .home-service-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: 112px;
        max-width: 760px;
    }

    .home-service-tile--1 {
        grid-column: 1 / 9;
        grid-row: span 2;
    }

    .home-service-tile--2 {
        grid-column: 9 / 13;
        grid-row: span 2;
    }

    .home-service-tile--3 {
        grid-column: 1 / 5;
        grid-row: span 4;
    }

    .home-service-tile--4 {
        grid-column: 5 / 13;
        grid-row: span 2;
    }

    .home-service-tile--5 {
        grid-column: 5 / 9;
        grid-row: span 2;
    }

    .home-service-tile--6 {
        grid-column: 9 / 13;
        grid-row: span 2;
    }
}

@media (max-width: 767px) {
    .zc-shell {
        width: min(calc(100% - 28px), var(--zc-container-width));
    }

    .promo-bar__inner {
        position: relative;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px 12px;
        min-height: auto;
        padding: 10px 46px 10px 0;
    }

    .promo-bar__text {
        flex: 1 1 100%;
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .promo-bar__link {
        font-size: 0.92rem;
    }

    .promo-bar__close {
        position: absolute;
        top: 50%;
        right: 0;
        width: 34px;
        height: 34px;
        transform: translateY(-50%);
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header__inner {
        min-height: 82px;
    }

    .site-branding__tagline,
    .home-hero__glass {
        display: none;
    }

    .site-header__actions {
        gap: 10px;
    }

    .site-header__language .fanyi2-switcher-current {
        width: 40px;
        min-height: 40px;
        height: 40px;
        justify-content: center;
        padding: 0;
    }

    .site-header__language .fanyi2-lang-name,
    .site-header__language .fanyi2-arrow {
        display: none;
    }

    .site-header__language .fanyi2-switcher-dropdown {
        min-width: 172px;
    }

    .site-header__icon,
    .site-header__toggle {
        width: 40px;
        height: 40px;
    }

    .home-hero {
        padding-top: 42px;
    }

    .home-hero__frame {
        min-height: 360px;
    }

    .zc-page-content--with-image .zc-entry-content {
        order: -1;
    }

    .home-hero__controls {
        position: relative;
        inset: auto;
        margin-top: 18px;
    }

    .home-hero__controls-inner {
        justify-content: center;
    }

    .home-hero__arrows {
        display: none;
    }

    .home-hero__actions,
    .zc-empty-state__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-features,
    .home-products,
    .home-about,
    .home-faq,
    .home-news,
    .home-partners,
    .home-inquiry,
    .zc-content-grid {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .home-features__grid,
    .product-grid,
    .home-service-grid,
    .service-plan-grid,
    .news-grid,
    .zc-post-grid,
    .home-stats__grid,
    .partner-strip,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .home-showcase__heading {
        margin-bottom: 34px;
    }

    .home-showcase__mark {
        margin-bottom: 18px;
        font-size: clamp(3.2rem, 18vw, 4.4rem);
    }

    .home-showcase__mark::after {
        width: 42px;
        height: 6px;
        margin-top: 14px;
    }

    .home-showcase__heading h2 {
        font-size: 1.05rem;
    }

    .home-service-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 138px;
        gap: 12px;
        max-width: 100%;
    }

    .home-service-tile,
    .home-service-tile--1,
    .home-service-tile--2,
    .home-service-tile--3,
    .home-service-tile--4,
    .home-service-tile--5,
    .home-service-tile--6 {
        min-height: 0;
    }

    .home-service-tile--1 {
        grid-column: span 6;
        grid-row: span 2;
    }

    .home-service-tile--2 {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home-service-tile--3 {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home-service-tile--4 {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home-service-tile--5 {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home-service-tile--6 {
        grid-column: span 6;
        grid-row: span 2;
    }

    .home-service-tile__content {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: auto;
        gap: 4px;
        padding: 9px 10px;
    }

    .home-service-tile--1 .home-service-tile__content {
        top: auto;
        bottom: 8px;
    }

    .home-service-tile__content span {
        font-size: 0.64rem;
    }

    .home-service-tile__content h3 {
        font-size: 1rem;
        line-height: 1.05;
    }

    .home-service-tile__price {
        font-size: 0.76rem;
    }

    .home-service-tile__content p {
        display: none;
    }

    .home-service-tile__icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

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

    .page-hero__description,
    .section-heading p,
    .services-page__perks span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .services-page__perks {
        flex-direction: column;
        text-align: center;
    }

    .service-plan-card h2,
    .service-plan-card__text,
    .service-plan-card__price {
        min-height: 0;
    }

    .home-faq__list {
        grid-template-columns: 1fr;
    }

    .home-faq__question {
        min-height: 0;
        padding: 16px 18px;
    }

    .home-faq__answer {
        padding: 0 18px 18px;
    }

    .feature-card,
    .stat-card {
        border-right: 0;
        border-bottom: 1px solid rgba(219, 229, 244, 0.72);
    }

    .feature-card:last-child,
    .stat-card:last-child {
        border-bottom: 0;
    }

    .floating-contact {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 14px;
        display: flex;
        gap: 8px;
        padding: 6px;
        border: 1px solid rgba(219, 229, 244, 0.88);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 14px 34px rgba(15, 36, 71, 0.16);
        backdrop-filter: blur(16px);
        transform: translateX(-50%);
    }

    .floating-contact--left {
        left: 50%;
        right: auto;
    }

    .floating-contact__item {
        width: 42px;
        height: 42px;
        border-radius: 999px !important;
        box-shadow: none;
    }

    .floating-contact__item:hover,
    .floating-contact__item:focus-visible {
        transform: none;
        box-shadow: none;
    }

    .floating-contact__label {
        display: none;
    }

    .floating-contact__panel {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 66px;
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-contact--left .floating-contact__panel {
        right: auto;
        left: 50%;
    }

    /* Mobile: hide desktop dropdown chrome, keep sub-menu items flat */
    .primary-menu .menu-item-has-children > a::before {
        display: none;
    }
}
