/* ===========================================================================
   Hirezon 2026 — Elementor Adapter Stylesheet (load AFTER hirezon-2026.css)
   Purpose: bridge the design system to Elementor's DOM:
   1. Unscoped header/footer (render on ALL pages incl. unmapped ones)
   2. Forward .btn / link-button styles to .elementor-button anchors
   3. Map nav-menu / icon-list / icon / nested-tabs / nested-carousel /
      image-carousel widget internals to design components
   4. Generic widget normalizations (pill widths, inner <p> margins)
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. HEADER — floating glass pill nav (consolidated from .nav)
   --------------------------------------------------------------------------- */
.e-con.hz-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(229, 229, 238, 0.8);
    border-radius: 100px;
    padding: 10px 12px 10px 24px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(10, 14, 42, 0.04);
}

/* push page content below the fixed nav */
body:has(.e-con.hz-nav) {
    padding-top: 0;
}

/* hero sections have their own top padding */

.hz-nav .elementor-widget-image.hz-nav-logo {
    width: auto;
}

/* WP assigns bogus tiny dimensions to sideloaded SVGs (rendered 48x13) - force height, width follows aspect */
.hz-nav .hz-nav-logo img {
    max-width: 150px;
}

/* Nav Menu widget → design .nav-links pills */
.hz-nav .elementor-nav-menu--main .elementor-nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-nav .elementor-nav-menu a.elementor-item {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.2s ease;
}

.hz-nav .elementor-nav-menu a.elementor-item:hover {
    background: rgba(2, 184, 127, 0.08);
    color: var(--teal-dark);
}

.hz-nav .elementor-nav-menu .current-menu-item>a,
.hz-nav .elementor-nav-menu a.elementor-item-active {
    background: rgba(2, 184, 127, 0.12);
    color: var(--teal-dark);
}

.e-con.hz-nav-cta {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
    width: auto;
}

/* Mobile: use the Nav Menu widget's built-in hamburger instead of hiding */
.hz-nav .elementor-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(2, 184, 127, 0.1);
    color: var(--teal-dark);
    align-items: center;
    justify-content: center;
    border: none;
}

.hz-nav .elementor-menu-toggle svg {
    fill: currentColor;
}

.hz-nav nav.elementor-nav-menu--dropdown {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(10, 14, 42, 0.15);
    margin-top: 10px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 117%;
    width: calc(100vw - 70px);
}

.hz-nav .elementor-nav-menu--dropdown a.elementor-item {
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--ink-soft);
    font-size: 15px;
}

.hz-nav .elementor-nav-menu--dropdown a.elementor-item:hover {
    background: rgba(2, 184, 127, 0.08);
    color: var(--teal-dark);
}

@media (max-width: 1024px) {
    .e-con.hz-nav-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .hz-nav .elementor-widget-button.btn-ghost {
        display: none;
    }
}

/* ---------------------------------------------------------------------------
   2. BUTTONS — design pills forwarded to .elementor-button anchors
   --------------------------------------------------------------------------- */
.elementor-widget-button.btn,
.elementor-widget-button.product-link,
.elementor-widget-button.side-card-link,
.elementor-widget-button.feature-card-link,
.elementor-widget-button.side-card-cta,
.elementor-widget-button.product-demo-phone {
    width: fit-content;
}

.elementor-widget-button.btn .elementor-button {
    padding: 11px 22px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    box-shadow: none;
    font-family: var(--font-display);
}

.elementor-widget-button.btn-large .elementor-button {
    padding: 16px 28px;
    font-size: 15px;
    line-height: 1.5;
}

.elementor-widget-button.btn-primary .elementor-button {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 20px #4bcea560;
}

.elementor-widget-button.btn-primary .elementor-button:hover {
    background: var(--teal-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px #00875c50;
}

.elementor-widget-button.btn-outline .elementor-button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

.elementor-widget-button.btn-outline .elementor-button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.elementor-widget-button.btn-light-ghost .elementor-button {
    border-color: rgba(14, 20, 17, 0.22);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.12);
}

.elementor-widget-button.btn-light-ghost .elementor-button:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(14, 20, 17, 0.34);
    transform: translateY(-1px);
}

.elementor-widget-button.btn-ghost .elementor-button {
    color: var(--ink-soft);
    padding: 11px 18px;
}

.elementor-widget-button.btn-ghost .elementor-button:hover {
    color: var(--teal-dark);
}

.elementor-widget-button.btn-dark-ghost .elementor-button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--paper);
    border-radius: 100px;
}

.elementor-widget-button.btn-dark-ghost .elementor-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.elementor-widget-button.btn-white .elementor-button {
    background: #fff;
    color: var(--ink);
}

.elementor-widget-button.btn-white .elementor-button:hover {
    background: var(--yellow-soft);
}

.elementor-widget-button.btn-cyan .elementor-button {
    background: var(--cyan-bright);
    color: var(--ink);
}

.elementor-widget-button.btn-cyan .elementor-button:hover {
    background: #fff;
    transform: translateY(-1px);
}

.elementor-widget-button.btn-arrow .elementor-button {
    padding: 16px 28px;
    background: var(--teal, #02b87f);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 184, 107, 0.28);
}

.elementor-widget-button.btn-arrow .elementor-button:hover {
    background: var(--teal-deep, #00875c);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 150, 87, 0.28);
}

.cta-ctas .btn .elementor-button {
    min-width: 224px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    transition: all 0.2s ease;
}

.product-demo-actions .elementor-widget-button.btn-primary .elementor-button {
    color: white;
    box-shadow: 0 12px 28px -12px rgba(2, 184, 127, 0.9);
}

.elementor-widget-button.feature-card-link .elementor-button {
    padding: 14px 26px;
    background: var(--yellow);
    color: var(--ink);
    transition: all 0.25s ease;
}

.elementor-widget-button.feature-card-link .elementor-button:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -6px rgba(242, 180, 22, 0.5);
}

.side-card-cta .elementor-widget-container {
    width: 100%;
}

.side-card-cta .elementor-button-content-wrapper {
    width: 100%;
    justify-content: space-between;
}

.side-card-cta .elementor-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: 1px dashed var(--line);
    border-radius: 20px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.side-card-cta .elementor-button:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    border-style: solid;
}

/* Link-style buttons */
.elementor-widget-button.product-link .elementor-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    transition: gap 0.2s;
}

.elementor-widget-button.product-link .elementor-button:hover {
    gap: 12px;
}

.elementor-widget-button.side-card-link .elementor-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal-dark);
    transition: gap 0.2s;
}

.elementor-widget-button.side-card-link .elementor-button:hover {
    gap: 14px;
}

.elementor-widget-button.side-card-link {
    margin-top: auto;
}

.elementor-widget-button.side-card-cta {
    width: 100%;
}

.elementor-widget-button.product-demo-phone .elementor-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

/* ---------------------------------------------------------------------------
   3. WIDGET INTERNALS → DESIGN COMPONENTS
   --------------------------------------------------------------------------- */
/* Icon List → .ai-feature-list checklist */
.elementor-widget.ai-feature-list {
    margin-bottom: 36px;
}

.elementor-widget.ai-feature-list .elementor-icon-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.elementor-widget.ai-feature-list .elementor-icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

.elementor-widget.ai-feature-list .elementor-icon-list-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.elementor-widget.ai-feature-list .elementor-icon-list-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.elementor-widget.ai-feature-list .elementor-icon-list-icon i,
.elementor-widget.ai-feature-list .elementor-icon-list-icon svg {
    color: #fff;
    fill: #fff;
    font-size: 10px;
    width: 10px;
    height: 10px;
}

/* Footer link lists (icon-list without icons) */
.hz-footer .elementor-icon-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-footer .elementor-icon-list-item {
    margin-bottom: 10px;
}

.hz-footer .elementor-icon-list-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.hz-footer .elementor-icon-list-item a:hover {
    color: #fff;
}

.hz-footer .elementor-icon-list-icon:empty {
    display: none;
}

/* Icon widget → .product-icon tile */
.elementor-widget.product-icon {
    width: fit-content;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.elementor-widget.product-icon .elementor-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffdc75 0%, #ff7300 90%, #fdb353 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.elementor-widget.product-icon .elementor-icon i {
    color: #fff;
}

.elementor-widget.product-icon .elementor-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.elementor-widget.product-icon.icon-2 .elementor-icon {
    background: linear-gradient(135deg, var(--orange-soft), var(--coral));
}

.elementor-widget.product-icon.icon-3 .elementor-icon,
.elementor-widget.product-icon.icon-4 .elementor-icon {
    background: linear-gradient(135deg, var(--indigo), var(--cyan));
}

.elementor-widget.product-icon.icon-5 .elementor-icon {
    background: linear-gradient(135deg, #c4ff3d, #02b87f);
}

.elementor-widget.product-icon.icon-6 .elementor-icon {
    background: linear-gradient(135deg, #ffdc75 0%, #ff7300 90%, #fdb353 100%);
}

/* Image Carousel → .marquee logo strip */
.elementor-widget.marquee-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.elementor-widget.marquee-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}

.elementor-widget.marquee-carousel .swiper-slide:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.elementor-widget.marquee-carousel .swiper-slide img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Nested Tabs → .updates-tabs pill group */
.elementor-widget.updates-tabs-widget .e-n-tabs-heading {
    display: inline-flex;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 5px;
    gap: 2px;
    box-shadow: 0 2px 8px -2px rgba(10, 14, 42, 0.05);
    width: fit-content;
    margin-left: auto;
}

.elementor-widget.updates-tabs-widget .e-n-tabs-content {
    border-top: 1px solid #e5e5ee;
    padding-top: 56px;
}

.elementor-widget.updates-tabs-widget .e-n-tab-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--ink-soft) !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
    margin: 0 !important;
}

.elementor-widget.updates-tabs-widget .e-n-tab-title:hover {
    color: var(--ink) !important;
    background: rgba(10, 14, 42, 0.04) !important;
}

.elementor-widget.updates-tabs-widget .e-n-tab-title[aria-selected="true"] {
    background: var(--ink) !important;
    color: var(--paper) !important;
    box-shadow: 0 4px 14px -4px rgba(10, 14, 42, 0.3);
}

.elementor-widget.updates-tabs-widget .e-n-tab-title>span {
    gap: 10px;
}

.elementor-widget.updates-tabs-widget .e-n-tab-title .e-n-tab-title-text::before {
    content: "";
    display: inline-flex;
    width: 6px;
    height: 6px;
    background: #e5e5ee;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.elementor-widget.updates-tabs-widget .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text::before {
    content: "";
    display: inline-flex;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@media (max-width: 1200px) {
    .elementor-widget.updates-tabs-widget .e-n-tabs-heading {
        margin-right: auto;
        margin-left: inherit;
    }

    .updates-header {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .elementor-widget.updates-tabs-widget .e-n-tabs-heading {
        margin-bottom: 20px;
        gap: 5px;
    }
}

@media (max-width: 640px) {
    .elementor-widget.updates-tabs-widget .e-n-tabs-heading {
        width: 100%;
        overflow-x: auto;
    }

    .elementor-widget.updates-tabs-widget .e-n-tab-title {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
    }
}

/* Nested Carousel → .testimonial-carousel */
.elementor-widget.testimonial-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    opacity: 1;
    transition: all 0.3s ease;
}

.elementor-widget.testimonial-carousel .swiper-pagination-bullet:hover {
    background: var(--teal-soft);
}

.elementor-widget.testimonial-carousel .swiper-pagination-bullet-active {
    background: var(--teal);
    width: 28px;
    border-radius: 100px;
}

.elementor-widget.testimonial-carousel .elementor-swiper-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.elementor-widget.testimonial-carousel .elementor-swiper-button:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

/* ---------------------------------------------------------------------------
   4. GENERIC NORMALIZATIONS
   --------------------------------------------------------------------------- */
/* Text-editor widgets: kill inner paragraph margins where the class styles the box */
.elementor-widget-text-editor p:first-child {
    margin-top: 0;
}

.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

/* Pill/label widgets should hug their content inside flex columns */
.elementor-widget.hero-tag,
.elementor-widget.ai-feature-tag,
.elementor-widget.section-tag,
.elementor-widget.product-tag,
.elementor-widget.feature-card-meta,
.elementor-widget.marquee-label,
.elementor-widget.ai-card-mini {
    width: fit-content;
}

/* Design grids on Elementor containers (e-con is flex by default) */
.e-con.hero-content,
.e-con.product-grid,
.e-con.stats-grid,
.e-con.editorial-grid,
.e-con.footer-grid,
.e-con.testimonial-slide {
    display: grid;
}

/* Containers: zero Elementor's default child gaps where the design uses its own */
.e-con.hero-content>.e-con,
.e-con.footer-grid>.e-con {
    min-width: 0;
}

/* Decorative empty containers should not catch clicks or show editor min-heights on frontend */
.e-con.hero-bg,
.e-con.hero-grid,
.e-con.glow-orb,
.e-con.ai-feature-bg,
.e-con.ai-feature-grid,
.e-con.stats-banner-bg,
.e-con.cta-card-bg,
.e-con.feature-card-bg,
.e-con.product-decoration,
.e-con.score-bar-fill {
    pointer-events: none;
}

/* Heading widgets inherit design heading styles via descendant selectors;
   ensure no theme margins sneak in */
.elementor-widget-heading .elementor-heading-title {
    margin: 0;
}

/* Hide Hello theme page title if it ever renders */
h1.entry-title {
    display: none;
}

/* ---------------------------------------------------------------------------
   5. QA ROUND 1 FIXES (staging 2026-06)
   --------------------------------------------------------------------------- */
/* Customers page: static logo wall (66 image widgets in a grid) */
.e-con.logo-wall-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    align-items: center;
}

.elementor-widget.logo-wall-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elementor-widget.logo-wall-item img {
    max-height: 64px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}

.elementor-widget.logo-wall-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .e-con.logo-wall-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .e-con.logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer events loop: stacked list, design typography */
.hz-footer .elementor-widget.footer-events-grid .elementor-grid {
    gap: 14px;
}

.hz-footer .footer-event-item .footer-event-title a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s;
}

.hz-footer .footer-event-item .footer-event-title a:hover {
    color: #fff;
}

.hz-footer .footer-event-item .footer-event-date {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

/* QA round 3: pill nav single row (flex children were wrapping) */
.e-con.hz-nav {
    flex-wrap: nowrap !important;
}

.hz-nav .elementor-widget-image.hz-nav-logo {
    flex-shrink: 0;
}

.hz-nav .elementor-widget-nav-menu {
    width: auto;
    flex-shrink: 1;
    min-width: 0;
}

.hz-nav .elementor-nav-menu--main .elementor-nav-menu {
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Footer logo: same SVG-dimension bug as header logo */
.hz-footer .footer-logo img,
.hz-footer .footer-brand img {
    max-width: 220px;
}

/* ---------------------------------------------------------------------------
   QA ROUND 4 (user-reported, 2026-06-06)
   --------------------------------------------------------------------------- */
/* 1. Marquee label: was width:fit-content + flex-start = stuck left; center it */
.elementor-widget.marquee-label {
    width: 100% !important;
    text-align: center;
}

/* 2. Generic fallback for button widgets WITHOUT a mapped design class:
      kill Elementor's default gray pill; render as a clean teal text-link */
.elementor-widget-button:not(.btn):not(.product-link):not(.side-card-link):not(.feature-card-link):not(.side-card-cta):not(.product-demo-phone) .elementor-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.2s;
    font-family: var(--font-display);
}

.elementor-widget-button:not(.btn):not(.product-link):not(.side-card-link):not(.feature-card-link):not(.side-card-cta):not(.product-demo-phone) .elementor-button:hover {
    gap: 14px;
}

/* 3. Company about-link (explicit mapping, matches design) */
.elementor-widget-button.about-link {
    width: fit-content;
    margin-top: 12px;
}

.elementor-widget-button.about-link .elementor-button {
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 15px;
}

/* 4. Company about-highlight icons: 44px gradient tiles (were unstyled/giant) */
.elementor-widget-icon.about-highlight-icon {
    width: fit-content;
    margin-bottom: 16px;
}

.elementor-widget-icon.about-highlight-icon .elementor-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(135deg, #ffdc75 0%, #ff7300 90%, #fdb353 100%);
}

.e-con.about-highlight:nth-of-type(2) .about-highlight-icon .elementor-icon {
    background: linear-gradient(135deg, var(--orange-soft), var(--coral));
}

.e-con.about-highlight:nth-of-type(3) .about-highlight-icon .elementor-icon {
    background: linear-gradient(135deg, #c4ff3d, #02b87f);
}

.about-highlight-icon .elementor-icon i,
.about-highlight-icon .elementor-icon svg {
    color: #fff;
    fill: #fff;
    width: 20px;
    height: 20px;
}

/* 5. Generic safety: any unmapped icon widget gets a sane size (no giant icons) */
.elementor-widget-icon:not(.product-icon):not(.about-highlight-icon) .elementor-icon {
    font-size: 28px;
}

/* ---------------------------------------------------------------------------
   QA ROUND 5 — full responsive pass findings (2026-06-06)
   --------------------------------------------------------------------------- */

/* 1. EVENTS PAGE: loop items render but unstyled (loop item was footer-scoped).
      Card them up on the light page. */
.elementor-widget.events-page-grid .elementor-grid {
    gap: 20px;
}

.elementor-widget.events-page-grid .e-loop-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.elementor-widget.events-page-grid .e-loop-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px -12px rgba(10, 14, 42, 0.14);
}

.elementor-widget.events-page-grid .footer-event-title a {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.elementor-widget.events-page-grid .footer-event-title a:hover {
    color: var(--teal-dark);
}

.elementor-widget.events-page-grid .footer-event-date {
    color: var(--ink-soft);
    font-size: 13px;
    padding-top: 10px;
    margin-top: auto;
}

/* 2. LEGAL PAGES: constrain the reading column (e-con width was winning) */
.e-con.legal-content>.e-con-inner,
.e-con.legal-content .elementor-widget-text-editor {
    max-width: 820px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.legal-content .elementor-widget-text-editor {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
}

.legal-content .elementor-widget-text-editor a {
    color: var(--teal-dark);
    text-decoration: underline;
}

.legal-content .elementor-widget-text-editor b {
    display: inline-block;
    margin-top: 18px;
    color: var(--ink);
}

/* Interior hero band (privacy/terms): compact gradient band */
.e-con.interior-hero {
    background:
        radial-gradient(at 20% 20%, rgba(2, 184, 127, 0.10) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255, 202, 0, 0.18) 0px, transparent 50%),
        var(--paper);
    padding: 150px 0 56px;
    text-align: center;
}

.interior-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.02em;
    color: var(--ink);
}

.interior-hero h1 em {
    color: var(--teal);
    font-style: italic;
}

/* 3. PRODUCT PAGES: feature grids with 1-2 cards pinned left -> balance them */
.e-con.feature-grid:has(> .e-con:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 920px;
}

.e-con.feature-grid:has(> .e-con:only-child) {
    grid-template-columns: 1fr;
    max-width: 640px;
}

/* 4. PRODUCT PAGES: bare text blurbs dropped straight into a feature grid get carded
      (MyReferred first section) */
.e-con.feature-grid>.elementor-widget-text-editor {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
}

/* 5. HirezonJobs: CTA block landed inside the step grid — make it a centered full row */
.e-con.feature-grid>.e-con.hero-actions {
    grid-column: 1 / -1;
    justify-content: center;
    padding-top: 8px;
}

/* 6. HR FORMS: the 16 supported forms render as one tall bullet stack -> 3 columns of chips */
.elementor-widget.forms-list .elementor-icon-list-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 24px;
    list-style: none;
    padding: 0;
}

.elementor-widget.forms-list .elementor-icon-list-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.elementor-widget.forms-list .elementor-icon-list-icon {
    color: var(--teal);
}

@media (max-width: 900px) {
    .elementor-widget.forms-list .elementor-icon-list-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .elementor-widget.forms-list .elementor-icon-list-items {
        grid-template-columns: 1fr;
    }
}

/* 7. Generic: icon lists inside feature cards / product hero (Pay-Per-Job page) */
.e-con.feature-card .elementor-icon-list-item {
    padding: 7px 0;
    font-size: 14.5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.e-con.feature-card .elementor-icon-list-icon {
    color: var(--teal);
    margin-top: 2px;
}

.product-hero-content .elementor-icon-list-item {
    color: var(--ink-soft);
    padding: 5px 0;
    display: flex;
    gap: 10px;
}

.product-hero-content .elementor-icon-list-icon {
    color: var(--teal);
}

/* 8. REFERRAL PAGE (body class switched to page-careers in plugin): give its
      product-card grid a scoped base since careers scope has no product-card rules */
body.page-careers .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.page-careers .e-con.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-careers .e-con.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -14px rgba(10, 14, 42, 0.16);
}

body.page-careers .product-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    body.page-careers .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------------------
   QA ROUND 6 (2026-06-06)
   --------------------------------------------------------------------------- */
/* HirezonJobs: "Place ATS Order" CTA block sits as a sibling inside the boxed
   feature section — center it as its own row under the step grid */
.e-con.feature-section>.e-con-inner>.e-con.hero-actions {
    justify-content: center;
    padding-top: 16px;
}

/* Partner card logos: consistent sizing for the real (mixed-dimension) logos */
.e-con.product-card .pcard-logo img,
.elementor-widget.pcard-logo img {
    max-height: 54px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* === MERGED FRAGMENTS BELOW === */

/* --- fragment: careers-contact.css --- */
/* ===========================================================================
   Careers + Contact — Elementor adapter fragment
   Load AFTER hirezon-2026.css and hirezon-elementor-adapter.css.
   Bridges the few widget internals these two pages introduce that the main
   adapter does not already cover:
     1. Gravity Forms "Request a Demo" embed (contact page) → design-system
        inputs/selects/textarea + .btn-primary submit button.
     2. Contact sidebar channel link buttons (.channel-link) — link-style.
     3. Careers job-mark / contact path-icon : reuse circular icon tiles.
   Buttons, icon-list, icon, tabs, carousels are already covered upstream.
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. GRAVITY FORMS embed (.hz-demo-form wraps the [gravityform] shortcode)
   --------------------------------------------------------------------------- */
.hz-demo-form .gform_wrapper {
    margin: 0;
}

.hz-demo-form .gform_wrapper form {
    margin: 0;
}

.hz-demo-form .gform_wrapper .gfield {
    margin-bottom: 18px;
}

.hz-demo-form .gform_wrapper .gfield_label {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}

.hz-demo-form .gform_wrapper .gfield_required {
    color: var(--teal);
    margin-left: 2px;
}

/* Inputs, selects, textareas → design-system field box */
.hz-demo-form .gform_wrapper input[type="text"],
.hz-demo-form .gform_wrapper input[type="email"],
.hz-demo-form .gform_wrapper input[type="tel"],
.hz-demo-form .gform_wrapper input[type="number"],
.hz-demo-form .gform_wrapper input[type="url"],
.hz-demo-form .gform_wrapper select,
.hz-demo-form .gform_wrapper textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm, 10px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.hz-demo-form .gform_wrapper textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.hz-demo-form .gform_wrapper input::placeholder,
.hz-demo-form .gform_wrapper textarea::placeholder {
    color: #6b7280;
}

/* Focus state — visible ring, meets a11y */
.hz-demo-form .gform_wrapper input[type="text"]:focus,
.hz-demo-form .gform_wrapper input[type="email"]:focus,
.hz-demo-form .gform_wrapper input[type="tel"]:focus,
.hz-demo-form .gform_wrapper input[type="number"]:focus,
.hz-demo-form .gform_wrapper input[type="url"]:focus,
.hz-demo-form .gform_wrapper select:focus,
.hz-demo-form .gform_wrapper textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(2, 184, 127, 0.15);
}

/* Custom select chevron */
.hz-demo-form .gform_wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23242A39' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Checkboxes / radios */
.hz-demo-form .gform_wrapper .gfield_checkbox li,
.hz-demo-form .gform_wrapper .gfield_radio li {
    margin-bottom: 10px;
}

.hz-demo-form .gform_wrapper .gfield_checkbox label,
.hz-demo-form .gform_wrapper .gfield_radio label {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    margin-left: 8px;
}

.hz-demo-form .gform_wrapper input[type="checkbox"],
.hz-demo-form .gform_wrapper input[type="radio"] {
    accent-color: var(--teal);
    width: 18px;
    height: 18px;
}

/* Validation messages */
.hz-demo-form .gform_wrapper .gfield_description.validation_message,
.hz-demo-form .gform_wrapper .validation_message {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.hz-demo-form .gform_wrapper .gfield_error input,
.hz-demo-form .gform_wrapper .gfield_error select,
.hz-demo-form .gform_wrapper .gfield_error textarea {
    border-color: #b91c1c;
}

.hz-demo-form .gform_wrapper .validation_error {
    color: #b91c1c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Submit button → .btn-primary pill */
.hz-demo-form .gform_wrapper .gform_footer {
    margin: 24px 0 0;
    padding: 0;
}

.hz-demo-form .gform_wrapper .gform_footer input[type="submit"],
.hz-demo-form .gform_wrapper .gform_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: var(--teal) !important;
    border: 1px solid transparent;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(2, 184, 127, 0.38);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hz-demo-form .gform_wrapper .gform_footer input[type="submit"]:hover,
.hz-demo-form .gform_wrapper .gform_button:hover {
    background-color: var(--teal-deep) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 135, 92, 0.32);
    border-color: transparent !important;
}

.hz-demo-form .gform_wrapper .gform_footer input[type="submit"]:focus-visible,
.hz-demo-form .gform_wrapper .gform_button:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Confirmation message */
.hz-demo-form .gform_confirmation_message {
    padding: 18px 20px;
    background: rgba(2, 184, 127, 0.08);
    border: 1px solid rgba(2, 184, 127, 0.3);
    border-radius: var(--radius-md, 14px);
    color: var(--ink);
    font-size: 15px;
}

/* ---------------------------------------------------------------------------
   2. CONTACT sidebar channel links (.channel-link, .phone-num are button widgets)
   --------------------------------------------------------------------------- */
.elementor-widget-button.channel-link,
.elementor-widget-button.phone-num {
    width: fit-content;
}

.elementor-widget-button.channel-link .elementor-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.elementor-widget-button.channel-link .elementor-button:hover {
    color: var(--teal-soft);
}

.elementor-widget-button.phone-num .elementor-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.elementor-widget-button.phone-num .elementor-button:hover {
    color: var(--teal-soft);
}

/* ---------------------------------------------------------------------------
   3. CAREERS job-mark + CONTACT path-icon → square icon tiles
      (icon widget; main adapter only styles .product-icon)
   --------------------------------------------------------------------------- */
.elementor-widget.job-mark,
.elementor-widget.path-icon {
    width: fit-content;
}

.elementor-widget.job-mark .elementor-icon,
.elementor-widget.path-icon .elementor-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 184, 127, 0.1);
    color: var(--teal-dark);
    font-size: 18px;
}

.elementor-widget.job-mark .elementor-icon svg,
.elementor-widget.path-icon .elementor-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Distinct accents per department / path */
.elementor-widget.icon-engineering .elementor-icon {
    background: rgba(2, 184, 127, 0.1);
    color: var(--teal-dark);
}

.elementor-widget.icon-cs .elementor-icon {
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
}

.elementor-widget.icon-sales .elementor-icon {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.elementor-widget.icon-design .elementor-icon {
    background: rgba(236, 72, 153, 0.12);
    color: #be185d;
}

/* ---------------------------------------------------------------------------
   4. CAREERS / CONTACT layout normalizations on Elementor containers
   --------------------------------------------------------------------------- */
.e-con.value-grid,
.e-con.process-grid,
.e-con.other-paths-grid {
    display: grid;
}

.e-con.contact-grid {
    display: grid;
}

.e-con.job-row {
    align-items: center;
}

/* job-arrow + careers inline link contrast (a11y: >=4.5:1) */
.elementor-widget.job-arrow .elementor-text-editor {
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 14px;
}

.careers-inline-link {
    color: var(--teal-dark);
    font-weight: 600;
}

/* --- fragment: news-pages.css --- */
/* ===========================================================================
   Hirezon 2026 — News / Webinars / Article adapter fragment
   AUTOGENERATED by build/make-news-css.js — re-scopes body.page-news /
   body.page-article rules to .hz-news / .hz-article wrappers, then adds
   native dynamic-widget bridges. Load AFTER hirezon-2026.css + adapter.
   =========================================================================== */

.hz-news img {
    max-width: 100%;
    display: block;
}

.hz-news .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hz-news .nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(229, 229, 238, 0.8);
    border-radius: 100px;
    padding: 10px 12px 10px 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(10, 14, 42, 0.04);
    transition: all 0.3s ease;
}

.hz-news .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hz-news .nav-logo img {
    width: auto;
    max-width: 150px;
    height: auto;
    display: block;
}

.hz-news .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-news .nav-links a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.2s ease;
}

.hz-news .nav-links a:hover,
.hz-news .nav-links a.active {
    background: rgba(2, 184, 127, 0.12);
    color: var(--teal);
}

.hz-news .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hz-news footer {
    background: var(--extra-dark);
    color: var(--paper);
    padding: 80px 0 40px;
}

.hz-news footer h3,
.hz-news footer h4,
.hz-news footer p,
.hz-news footer ul,
.hz-news footer li {
    margin: 0;
    padding: 0;
}

.hz-news .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.hz-news .footer-brand h3 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: white;
}

.hz-news .footer-brand h3 img {
    max-width: 200px;
}

.hz-news .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.hz-news .footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.hz-news .footer-contact strong {
    color: var(--yellow-soft);
    font-weight: 500;
}

.hz-news .footer-col h4 {
    color: var(--yellow-soft);
    font-weight: 600;
}

.hz-news .footer-contact a,
.hz-news .footer-col a,
.hz-news .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.hz-news .footer-contact a:hover,
.hz-news .footer-col a:hover,
.hz-news .footer-bottom-links a:hover {
    color: white;
}

.hz-news .footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hz-news .footer-col ul {
    list-style: none;
}

.hz-news .footer-col li {
    margin-bottom: 10px;
}

.hz-news .footer-col a {
    font-size: 14px;
}

.hz-news .footer-event-title {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hz-news .footer-event-date {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hz-news .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.hz-news .footer-bottom-links {
    display: flex;
    gap: 24px;
}

@media (max-width: 1000px) {
    .hz-news .nav-links {
        display: none;
    }

    .hz-news .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hz-news .nav {
        padding: 14px 20px;
    }

    .hz-news .nav-cta .btn-ghost {
        display: none;
    }

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

    .hz-news .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hz-news .footer-bottom-links {
        flex-wrap: wrap;
        gap: 14px 20px;
    }
}

.hz-news * {
    box-sizing: border-box;
}

.hz-news {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hz-news .serif-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hz-news .serif {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
}

.hz-news .hero-mock-wrap {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0 90px;
}

.hz-news .hero-mock {
    position: relative;
    background: white;
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(14, 20, 17, 0.06);
    border-bottom: none;
    box-shadow: 0 -1px 0 rgba(14, 20, 17, 0.04), 0 30px 70px -25px rgba(14, 20, 17, 0.22), 0 70px 140px -40px rgba(14, 20, 17, 0.18);
    overflow: hidden;
}

.hz-news .hero-mock::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, #00d97e 0%, #00b86b 30%, #ffd54f 70%, #f5a623 100%);
}

.hz-news .hero-mock-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fbfbf7 0%, #ffffff 100%);
}

.hz-news .mock-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.hz-news .mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hz-news .mock-dot:nth-child(1) {
    background: #ff5f57;
}

.hz-news .mock-dot:nth-child(2) {
    background: #febc2e;
}

.hz-news .mock-dot:nth-child(3) {
    background: #28c840;
}

.hz-news .mock-url {
    flex: 1;
    max-width: 420px;
    padding: 6px 14px;
    background: rgba(14, 20, 17, 0.04);
    border-radius: 8px;
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hz-news .mock-url::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--green);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.hz-news .mock-url strong {
    color: var(--ink);
    font-weight: 600;
}

.hz-news .mock-badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: var(--ink);
    color: white;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    flex-shrink: 0;
}

.hz-news .mock-badge-ai::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 8px var(--green-bright);
    animation: pulse 1.6s ease-in-out infinite;
}

.hz-news .mock-body {
    display: grid;
    grid-template-columns: 200px 1fr 320px;
    min-height: 360px;
}

.hz-news .mock-sidebar {
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    background: #fafaf6;
}

.hz-news .mock-side-section {
    margin-bottom: 22px;
}

.hz-news .mock-side-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
    padding-left: 8px;
}

.hz-news .mock-side-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink-mid);
    margin-bottom: 2px;
}

.hz-news .mock-side-item.is-active {
    background: white;
    color: var(--ink);
    font-weight: 600;
    box-shadow: 0 1px 0 rgba(14, 20, 17, 0.04), 0 4px 12px -6px rgba(14, 20, 17, 0.08);
}

.hz-news .mock-side-item .mark {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.hz-news .mark.m-green {
    background: linear-gradient(135deg, #00d97e, #00a85a);
}

.hz-news .mark.m-orange {
    background: linear-gradient(135deg, #ffb547, #f5912a);
}

.hz-news .mark.m-blue {
    background: linear-gradient(135deg, #5fb1ff, #2e8eff);
}

.hz-news .mark.m-purple {
    background: linear-gradient(135deg, #b78cff, #8a5aff);
}

.hz-news .mark.m-coral {
    background: linear-gradient(135deg, #ff8a5b, #ff6b3d);
}

.hz-news .mark.m-teal {
    background: linear-gradient(135deg, #5ce0c8, #2bb89e);
}

.hz-news .mock-side-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.hz-news .mock-main {
    padding: 22px 26px;
}

.hz-news .mock-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hz-news .mock-main-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.hz-news .mock-main-title em {
    font-style: italic;
    color: var(--green-deep);
    font-weight: 500;
    margin-left: 4px;
}

.hz-news .mock-main-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 11.5px;
    color: var(--ink-mid);
    font-weight: 500;
}

.hz-news .mock-main-filter::after {
    content: '▾';
    color: var(--muted);
    font-size: 9px;
}

.hz-news .candidate-row {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 4px;
    transition: background .3s;
}

.hz-news .candidate-row.is-active {
    background: linear-gradient(90deg, rgba(0, 217, 126, 0.09) 0%, transparent 100%);
    position: relative;
}

.hz-news .candidate-row.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--green);
    border-radius: 0 2px 2px 0;
}

.hz-news .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font-sans);
}

.hz-news .avatar.a1 {
    background: linear-gradient(135deg, #5fb1ff, #2e8eff);
}

.hz-news .avatar.a2 {
    background: linear-gradient(135deg, #ff8a5b, #ff6b3d);
}

.hz-news .avatar.a3 {
    background: linear-gradient(135deg, #b78cff, #8a5aff);
}

.hz-news .avatar.a4 {
    background: linear-gradient(135deg, #5ce0c8, #2bb89e);
}

.hz-news .candidate-info {
    min-width: 0;
}

.hz-news .candidate-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 3px;
}

.hz-news .candidate-meta {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.2;
}

.hz-news .score {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.hz-news .score em {
    font-style: italic;
    color: var(--green-deep);
    font-size: 11.5px;
    font-weight: 500;
    margin-left: 4px;
}

.hz-news .bar {
    width: 72px;
    height: 5px;
    background: rgba(14, 20, 17, 0.06);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.hz-news .bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #00d97e, #00b86b);
    border-radius: 999px;
    width: var(--w, 80%);
}

.hz-news .mock-ai-rail {
    background: linear-gradient(160deg, #0f1714 0%, #1a2e22 100%);
    color: white;
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
}

.hz-news .mock-ai-rail::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hz-news .ai-rail-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 12px;
    position: relative;
}

.hz-news .ai-rail-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 8px var(--green-bright);
}

.hz-news .ai-rail-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    position: relative;
}

.hz-news .ai-rail-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    position: relative;
}

.hz-news .ai-rail-strong {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 217, 126, 0.18);
    color: var(--green-bright);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.hz-news .ai-rail-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
    position: relative;
}

.hz-news .ai-rail-text strong {
    color: white;
    font-weight: 600;
}

.hz-news .ai-rail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
}

.hz-news .ai-rail-tag {
    padding: 4px 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hz-news .partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hz-news .partner-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: border-color .2s, transform .2s;
}

.hz-news .partner-mini:hover {
    border-color: rgba(0, 184, 107, 0.25);
    transform: translateY(-1px);
}

.hz-news .partner-mini-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.hz-news .partner-mini-info {
    min-width: 0;
    flex: 1;
}

.hz-news .partner-mini-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hz-news .partner-mini-status {
    font-size: 10.5px;
    color: var(--green-deep);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.hz-news .partner-mini-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-bright);
    flex-shrink: 0;
}

.hz-news .partner-mini.is-add {
    background: transparent;
    border-style: dashed;
    border-color: rgba(14, 20, 17, 0.12);
    color: var(--muted);
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
}

.hz-news .partner-mini.is-add::before {
    content: '+';
    font-size: 18px;
    margin-right: 4px;
    line-height: 1;
}

.hz-news .mock-status-rail {
    background: linear-gradient(160deg, #0f1714 0%, #1a2e22 100%);
    color: white;
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
}

.hz-news .mock-status-rail::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hz-news .status-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 16px;
    position: relative;
}

.hz-news .status-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 8px var(--green-bright);
    animation: pulse 1.6s ease-in-out infinite;
}

.hz-news .status-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.hz-news .status-row:last-of-type {
    border-bottom: none;
}

.hz-news .status-row-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.hz-news .status-row-val {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.hz-news .status-row-val em {
    font-style: italic;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 500;
    margin-left: 4px;
}

.hz-news .status-footer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    position: relative;
}

.hz-news .status-footer strong {
    color: white;
    font-weight: 600;
}

.hz-news .testimonial-rail {
    background: linear-gradient(160deg, #0f1714 0%, #1a2e22 100%);
    color: white;
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hz-news .testimonial-rail::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hz-news .testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 14px;
    position: relative;
}

.hz-news .testimonial-label::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 0;
    margin-right: -2px;
    color: var(--green-bright);
}

.hz-news .testimonial-quote {
    font-family: var(--font-display);
    font-size: 14.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.005em;
    margin-bottom: 18px;
    position: relative;
    font-weight: 400;
    flex: 1;
}

.hz-news .testimonial-attr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    position: relative;
}

.hz-news .testimonial-attr-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.hz-news .testimonial-attr-role {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
}

.hz-news .customer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hz-news .customer-mini {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 9px;
    transition: border-color .2s, transform .2s;
    min-height: 46px;
}

.hz-news .customer-mini:hover {
    border-color: rgba(0, 184, 107, 0.25);
    transform: translateY(-1px);
}

.hz-news .customer-mini-mark {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.hz-news .customer-mini-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hz-news .customer-search-wrap {
    margin-bottom: 48px;
    max-width: 520px;
}

.hz-news .customer-search {
    position: relative;
}

.hz-news .customer-search input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}

.hz-news .customer-search input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 184, 107, 0.1);
}

.hz-news .customer-search input::placeholder {
    color: var(--muted);
}

.hz-news .customer-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

.hz-news .customer-search-meta {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    padding-left: 4px;
}

.hz-news .customer-search-meta strong {
    color: var(--ink);
    font-weight: 600;
}

.hz-news .alpha-section {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.hz-news .alpha-section:first-of-type {
    border-top: 2px solid var(--ink);
}

.hz-news .alpha-letter {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
    position: sticky;
    top: 90px;
    align-self: start;
}

.hz-news .alpha-letter em {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0;
    margin-left: 10px;
    vertical-align: top;
    line-height: 1.5;
}

.hz-news .alpha-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 24px;
}

.hz-news .alpha-list .customer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    border-bottom: 1px dashed rgba(14, 20, 17, 0.08);
    color: var(--ink);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.3;
    transition: color .15s, padding-left .15s;
}

.hz-news .alpha-list .customer-item:hover {
    color: var(--green-deep);
    padding-left: 8px;
}

.hz-news .alpha-list .customer-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity .15s, transform .15s;
}

.hz-news .alpha-list .customer-item:hover .dot {
    opacity: 1;
    transform: scale(1.4);
}

.hz-news .alpha-list .customer-item.is-hidden {
    display: none;
}

.hz-news .alpha-section.is-empty {
    display: none;
}

.hz-news .no-results {
    padding: 40px 0;
    text-align: center;
    color: var(--muted);
    font-style: italic;
    display: none;
}

.hz-news .no-results.is-active {
    display: block;
}

.hz-news .feature-quote-section {
    padding: 110px 32px;
    background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(0, 217, 126, 0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 90% 50%, rgba(255, 200, 120, 0.15) 0%, transparent 60%), linear-gradient(180deg, #fefcf5 0%, #fff8ea 100%);
    position: relative;
    overflow: hidden;
}

.hz-news .feature-quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 20, 17, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 20, 17, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
    pointer-events: none;
}

.hz-news .feature-quote-inner {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hz-news .feature-quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.6;
    color: var(--green);
    opacity: 0.4;
    margin-bottom: 0;
    font-style: italic;
}

.hz-news .feature-quote-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 38px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 36px;
}

.hz-news .feature-quote-text em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-news .feature-quote-attr {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(14, 20, 17, 0.1);
}

.hz-news .feature-quote-attr-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5fb1ff 0%, #2e8eff 100%);
    color: white;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
}

.hz-news .feature-quote-attr-text {
    text-align: left;
}

.hz-news .feature-quote-attr-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.hz-news .feature-quote-attr-role {
    font-size: 13px;
    color: var(--muted);
}

.hz-news .awards-section {
    padding: 70px 32px;
    background: var(--ink);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hz-news .awards-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.hz-news .awards-text h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hz-news .awards-text h3 em {
    font-style: italic;
    color: var(--green-bright);
}

.hz-news .awards-text p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.55;
}

.hz-news .awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hz-news .award-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hz-news .award-medal {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd54f 0%, #f5a623 100%);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #4a2e00;
}

.hz-news .award-medal svg {
    width: 22px;
    height: 22px;
}

.hz-news .award-year {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--green-bright);
    margin-bottom: 4px;
    font-weight: 500;
}

.hz-news .award-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: white;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.hz-news .award-issuer {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
}

.hz-news .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
}

.hz-news .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-mid);
    cursor: pointer;
    transition: all .15s ease;
    font-family: inherit;
}

.hz-news .filter-chip:hover {
    border-color: rgba(0, 184, 107, 0.4);
    color: var(--ink);
}

.hz-news .filter-chip.is-active {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.hz-news .filter-chip .count {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
}

.hz-news .filter-chip.is-active .count {
    color: rgba(255, 255, 255, 0.6);
}

.hz-news .featured-article {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-bottom: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
}

.hz-news .featured-article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hz-news .featured-img {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.hz-news .featured-img.grad-1 {
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%), linear-gradient(135deg, #0f1714 0%, #1f4a35 50%, #16352a 100%);
}

.hz-news .featured-img-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 80%);
}

.hz-news .featured-img-mark {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: white;
}

.hz-news .featured-img-mark-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}

.hz-news .featured-img-mark-headline {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    max-width: 14ch;
}

.hz-news .featured-img-mark-headline em {
    font-style: italic;
    color: var(--green-bright);
}

.hz-news .featured-body {
    padding: 40px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hz-news .featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 18px;
}

.hz-news .featured-eyebrow .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink);
    opacity: 0.3;
}

.hz-news .featured-eyebrow .date {
    color: var(--muted);
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.hz-news .featured-title h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.hz-news .featured-title em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-news .featured-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 24px;
}

.hz-news .featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.hz-news .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.hz-news .author-info {
    line-height: 1.25;
}

.hz-news .author-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.hz-news .author-role {
    font-size: 12px;
    color: var(--muted);
}

.hz-news .featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    align-self: flex-start;
}

.hz-news .featured-cta::after {
    content: '→';
    transition: transform .2s;
}

.hz-news .featured-article:hover .featured-cta::after {
    transform: translateX(4px);
}

.hz-news .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hz-news .article-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.hz-news .article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 184, 107, 0.25);
}

.hz-news .article-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.hz-news .article-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
}

.hz-news .article-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hz-news .article-date {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.hz-news .article-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 12px;
    flex: 0;
}

.hz-news .article-title em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-news .article-excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: var(--slate);
    margin-bottom: 18px;
}

.hz-news .article-card.is-hidden {
    display: none;
}

.hz-news .load-more-wrap {
    display: flex;
    justify-content: center;
    margin: 50px 0 120px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.hz-news .load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    transition: all .2s;
}

.hz-news .load-more:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: white;
}

.hz-news .load-more::after {
    content: '↓';
    font-size: 14px;
    transition: transform .2s;
}

.hz-news .load-more:hover::after {
    transform: translateY(2px);
}

.hz-news .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 52px;
    margin-top: 44px;
    padding-bottom: 16px;
}

.hz-news .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hz-news .hero-stat .num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.hz-news .hero-stat .num em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-news .hero-stat .lbl {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.35;
    text-align: center;
    max-width: 20ch;
}

.hz-news .section {
    padding: 110px 32px 0;
    max-width: 1240px;
    margin: 0 auto;
}

.hz-news .section-header {
    margin-bottom: 80px;
    max-width: 720px;
}

.hz-news .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    font-weight: 600;
    margin: 0 0 20px;
}

.hz-news .section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--teal);
}

.hz-news .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 24px;
    padding-bottom: 0.08em;
    overflow: visible;
}

.hz-news .section-title em {
    font-style: italic;
    font-weight: 300;
    background: var(--grad-teal-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.2em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hz-news .section-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0;
}

.hz-news .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.hz-news .product-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.hz-news .product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 184, 107, 0.25);
}

.hz-news .product-card.is-flagship {}

.hz-news .product-card.is-dark {
    background: linear-gradient(160deg, #0f1714 0%, #16221d 100%);
    border-color: transparent;
    color: white;
}

.hz-news .product-card.is-dark .pcard-desc {
    color: rgba(255, 255, 255, 0.7);
}

.hz-news .product-card.is-dark .pcard-title {
    color: white;
}

.hz-news .product-card.is-dark .pcard-link {
    color: var(--green-bright);
}

.hz-news .product-card.is-dark .pcard-link::after {
    color: var(--green-bright);
}

.hz-news .product-card.is-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 217, 126, 0.12) 0%, transparent 50%), radial-gradient(circle at 0% 100%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hz-news .pcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.hz-news .pcard-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hz-news .pcard-icon.icon-orange {
    background: linear-gradient(135deg, #ffb547 0%, #f5912a 100%);
}

.hz-news .pcard-icon.icon-green {
    background: linear-gradient(135deg, #00d97e 0%, #00a85a 100%);
}

.hz-news .pcard-icon.icon-coral {
    background: linear-gradient(135deg, #ff8a5b 0%, #ff6b3d 100%);
}

.hz-news .pcard-icon.icon-blue {
    background: linear-gradient(135deg, #5fb1ff 0%, #2e8eff 100%);
}

.hz-news .pcard-icon.icon-purple {
    background: linear-gradient(135deg, #b78cff 0%, #8a5aff 100%);
}

.hz-news .pcard-icon.icon-teal {
    background: linear-gradient(135deg, #5ce0c8 0%, #2bb89e 100%);
}

.hz-news .pcard-icon.icon-amber {
    background: linear-gradient(135deg, #ffd54f 0%, #f5a623 100%);
}

.hz-news .pcard-icon.icon-pink {
    background: linear-gradient(135deg, #ff9bb3 0%, #ff5d8f 100%);
}

.hz-news .pcard-icon.icon-slate {
    background: linear-gradient(135deg, #7a8a99 0%, #4a5a6b 100%);
}

.hz-news .pcard-icon.icon-navy {
    background: linear-gradient(135deg, #4a6bff 0%, #2a3eb5 100%);
}

.hz-news .pcard-icon.icon-lime {
    background: linear-gradient(135deg, #c8f05c 0%, #8ec70d 100%);
}

.hz-news .pcard-icon.has-monogram {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: white;
    letter-spacing: -0.02em;
}

.hz-news .pcard-url {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    text-decoration: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    text-transform: uppercase;
}

.hz-news .pcard-url::after {
    content: '↗';
    font-size: 13px;
}

.hz-news .pcard-url:hover {
    color: var(--green-deep);
}

.hz-news .product-card.is-dark .pcard-url {
    color: rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.hz-news .product-card.is-dark .pcard-url:hover {
    color: var(--green-bright);
}

.hz-news .pcard-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.hz-news .badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hz-news .badge-flagship {
    background: var(--lemon);
    color: #7a5e00;
}

.hz-news .badge-higher {
    background: var(--amber);
    color: #4a2e00;
}

.hz-news .badge-new {
    background: var(--mint);
    color: #00603a;
}

.hz-news .badge-2026 {
    background: #f0e8ff;
    color: #4b2a8f;
}

.hz-news .pcard-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 14px;
}

.hz-news .product-card.is-flagship .pcard-title em,
.hz-news .product-card .pcard-title em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-news .pcard-desc {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.hz-news .pcard-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    margin-top: auto;
    align-self: flex-start;
}

.hz-news .pcard-link::after {
    content: '→';
    transition: transform .2s ease;
}

.hz-news .pcard-link:hover::after {
    transform: translateX(4px);
}

.hz-news .secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.hz-news .cta-tile {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
    background: radial-gradient(circle at 0% 100%, rgba(255, 231, 138, 0.35) 0%, transparent 55%), radial-gradient(circle at 100% 0%, rgba(0, 217, 126, 0.35) 0%, transparent 55%), linear-gradient(150deg, #0f1714 0%, #1a2e22 60%, #16352a 100%);
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hz-news .cta-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hz-news .cta-tile::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hz-news .cta-tile-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.hz-news .cta-tile-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00d97e 0%, #00a85a 100%);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
}

.hz-news .cta-tile-mark svg {
    width: 18px;
    height: 18px;
}

.hz-news .cta-tile-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-bright);
}

.hz-news .cta-tile h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: white;
    margin-bottom: 14px;
    position: relative;
}

.hz-news .cta-tile h3 em {
    font-style: italic;
    color: var(--green-bright);
}

.hz-news .cta-tile p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
}

.hz-news .cta-tile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.hz-news .cta-tile .btn-primary {
    box-shadow: 0 6px 18px -8px rgba(0, 217, 126, 0.6);
}

.hz-news .cta-tile-phone {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 4px;
}

.hz-news .cta-tile-phone:hover {
    color: var(--green-bright);
}

.hz-news .help-section {
    padding: 110px 32px;
    background: #fafaf6;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hz-news .help-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hz-news .help-text h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hz-news .help-text h2 em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-news .help-text p {
    color: var(--slate);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hz-news .help-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.hz-news .help-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.hz-news .help-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--mint-soft);
    color: var(--green-deep);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hz-news .help-feature-icon svg {
    width: 18px;
    height: 18px;
}

.hz-news .help-feature h4 {
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--ink);
}

.hz-news .help-feature p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1000px) {

    .hz-news .featured-grid,
    .hz-news .secondary-grid {
        grid-template-columns: 1fr;
    }

    .hz-news .help-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hz-news .hero-stats {
        gap: 22px 28px;
    }

    .hz-news .section {
        padding: 70px 24px;
    }

    .hz-news .hero {
        padding: 56px 24px 80px;
    }

    .hz-news .hero-mock-wrap {
        padding: 0 0 70px;
    }

    .hz-news .mock-body {
        grid-template-columns: 1fr 280px;
        min-height: 0;
    }

    .hz-news .mock-sidebar {
        display: none;
    }

    .hz-news .help-section {
        padding: 70px 24px;
    }

    .hz-news .alpha-section {
        grid-template-columns: 100px 1fr;
        gap: 20px;
        padding: 24px 0;
    }

    .hz-news .alpha-letter {
        font-size: 56px;
        position: relative;
        top: 0;
    }

    .hz-news .alpha-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hz-news .feature-quote-section {
        padding: 70px 24px;
    }

    .hz-news .feature-quote-mark {
        font-size: 80px;
    }

    .hz-news .awards-section {
        padding: 56px 24px;
    }

    .hz-news .awards-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hz-news .customer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hz-news .featured-article {
        grid-template-columns: 1fr;
    }

    .hz-news .featured-img {
        min-height: 260px;
    }

    .hz-news .featured-body {
        padding: 32px 28px;
    }

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

@media (max-width: 640px) {
    .hz-news .pcard-title {
        font-size: 22px !important;
    }

    .hz-news .mock-body {
        grid-template-columns: 1fr;
    }

    .hz-news .mock-ai-rail {
        display: none;
    }

    .hz-news .mock-status-rail {
        display: none;
    }

    .hz-news .testimonial-rail {
        display: none;
    }

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

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

    .hz-news .mock-url {
        display: none;
    }

    .hz-news .mock-main {
        padding: 16px;
    }

    .hz-news .candidate-row {
        grid-template-columns: 32px 1fr auto;
    }

    .hz-news .candidate-row .bar {
        display: none;
    }

    .hz-news .hero-mock-header {
        padding: 12px 16px;
        gap: 10px;
    }

    .hz-news .mock-badge-ai {
        font-size: 10.5px;
        padding: 4px 8px;
    }

    .hz-news .alpha-section {
        grid-template-columns: 60px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .hz-news .alpha-letter {
        font-size: 40px;
    }

    .hz-news .alpha-list {
        grid-template-columns: 1fr;
    }

    .hz-news .awards-grid {
        grid-template-columns: 1fr;
    }

    .hz-news .article-grid {
        grid-template-columns: 1fr;
    }

    .hz-news .featured-img-mark-headline {
        font-size: 24px;
    }

    .hz-news .filter-chips {
        gap: 8px;
    }

    .hz-news .filter-chip {
        padding: 7px 13px;
        font-size: 13px;
    }
}

.hz-news .reveal {
    animation: fadeUp .8s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}

.hz-news .reveal-1 {
    animation-delay: .05s;
}

.hz-news .reveal-2 {
    animation-delay: .15s;
}

.hz-news .reveal-3 {
    animation-delay: .25s;
}

.hz-news .reveal-4 {
    animation-delay: .35s;
}

.hz-news .reveal-5 {
    animation-delay: .45s;
}

.hz-news .avatar-blue {
    background: linear-gradient(135deg, #5fb1ff, #2e8eff);
}

.hz-news .avatar-green {
    background: linear-gradient(135deg, #00d97e, #00a85a);
}

.hz-news .avatar-purple {
    background: linear-gradient(135deg, #b78cff, #8a5aff);
}

.hz-news .avatar-coral {
    background: linear-gradient(135deg, #ff8a5b, #ff6b3d);
}

.hz-news .newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 460px;
}

.hz-news .newsletter-input {
    flex: 1;
    min-width: 220px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    font-family: inherit;
    font-size: 14.5px;
}

.hz-news .hero {
    padding: 136px 0 96px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    background: transparent;
}

.hz-news .hero::before,
.hz-news .hero::after {
    content: none;
}

.hz-news .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 10% 0%, rgba(0, 217, 126, 0.18) 0%, transparent 60%), radial-gradient(ellipse 50% 70% at 95% 10%, rgba(255, 200, 120, 0.35) 0%, transparent 60%), radial-gradient(ellipse 70% 90% at 50% 100%, rgba(255, 240, 180, 0.55) 0%, transparent 65%), linear-gradient(180deg, #fefcf5 0%, #fff8ea 100%);
    z-index: 0;
}

.hz-news .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 20, 17, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 20, 17, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    z-index: 1;
    pointer-events: none;
}

.hz-news .glow-orb {
    display: none;
}

.hz-news .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    max-width: 1000px;
}

.hz-news .hero-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fade-up 0.8s ease forwards;
    flex-wrap: wrap;
}

.hz-news .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #ffffff6e;
    border: 1px solid rgba(14, 20, 17, 0.08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-dark);
}

.hz-news .hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.hz-news .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0;
    margin-top: 0;
    animation: fade-up 1s ease 0.1s forwards;
    opacity: 0;
}

.hz-news .hero h1 .line {
    display: inline;
    position: relative;
}

.hz-news .hero h1 .line-1 {
    font-weight: 500;
    font-size: 55px;
}

.hz-news .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 30px 0;
    animation: fade-up 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hz-news .hero-divider-line {
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ink-soft), transparent);
    opacity: 0.2;
}

.hz-news .hero-divider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f2b416;
    box-shadow: 0 0 0 6px #ffd15c54;
}

.hz-news .hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 880px;
    margin: 0 auto 36px;
    animation: fade-up 0.8s ease 0.35s forwards;
    opacity: 0;
}

.hz-news .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fade-up 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hz-news .hero-actions .btn {
    min-width: 180px;
    justify-content: center;
}

@media (max-width: 1000px) {
    .hz-news .hero {
        min-height: auto;
        padding: 124px 0 80px;
    }

    .hz-news .hero h1 {
        font-size: clamp(54px, 10vw, 92px);
    }

    .hz-news .hero-sub {
        max-width: 760px;
    }
}

@media (max-width: 640px) {
    .hz-news .hero {
        min-height: auto;
        padding: 116px 0 64px;
    }

    .hz-news .hero-meta-row {
        margin-bottom: 42px;
    }

    .hz-news .hero h1 {
        font-size: clamp(48px, 16vw, 70px);
    }

    .hz-news .hero-divider {
        margin: 46px 0 30px;
    }

    .hz-news .hero-divider-line {
        width: 72px;
    }

    .hz-news .hero-sub {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hz-news .hero-actions .btn {
        width: 100%;
    }
}

.hz-article * {
    box-sizing: border-box;
}

.hz-article button {
    font-family: inherit;
}

.hz-article .serif-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hz-article .serif {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
}

.hz-article .avatar-blue {
    background: linear-gradient(135deg, #5fb1ff, #2e8eff);
}

.hz-article .avatar-green {
    background: linear-gradient(135deg, #00d97e, #00a85a);
}

.hz-article .avatar-purple {
    background: linear-gradient(135deg, #b78cff, #8a5aff);
}

.hz-article .avatar-coral {
    background: linear-gradient(135deg, #ff8a5b, #ff6b3d);
}

.hz-article .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.hz-article .author-info {
    line-height: 1.25;
}

.hz-article .author-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.hz-article .author-role {
    font-size: 12px;
    color: var(--muted);
}

.hz-article .article-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.hz-article .article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 184, 107, 0.25);
}

.hz-article .article-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.hz-article .article-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
}

.hz-article .article-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hz-article .article-date {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.hz-article .article-title h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 12px;
    flex: 1;
}

.hz-article .article-title em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-article .article-excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: var(--slate);
    margin-bottom: 18px;
}

.hz-article .article-card.is-hidden {
    display: none;
}

.hz-article .article-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 50% 70% at 15% 0%, rgba(0, 217, 126, 0.16) 0%, transparent 60%), radial-gradient(ellipse 45% 60% at 90% 5%, rgba(255, 200, 120, 0.32) 0%, transparent 60%), linear-gradient(180deg, #fefcf5 0%, #fff8ea 100%);
    mask-image: linear-gradient(180deg, black 0%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 75%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.hz-article .article-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 20, 17, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 20, 17, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 90% at 50% 30%, black 0%, transparent 80%), linear-gradient(180deg, black 0%, black 75%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 30%, black 0%, transparent 80%), linear-gradient(180deg, black 0%, black 75%, transparent 100%);
    -webkit-mask-composite: source-in;
    z-index: 1;
    pointer-events: none;
}

.hz-article .article-header-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
}

.hz-article .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.hz-article .breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color .15s;
}

.hz-article .breadcrumb a:hover {
    color: var(--ink);
}

.hz-article .breadcrumb .sep {
    opacity: 0.4;
}

.hz-article .breadcrumb .current {
    color: var(--ink);
    font-weight: 500;
}

.hz-article .article-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 217, 126, 0.12);
    border: 1px solid rgba(0, 184, 107, 0.22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 24px;
}

.hz-article .article-cat-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.hz-article .article-h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
}

.hz-article .article-h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--green-deep);
    background: var(--grad-teal-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 10px;
}

.hz-article .article-lede {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.45;
    color: var(--slate);
    letter-spacing: -0.005em;
    margin-bottom: 36px;
}

.hz-article .article-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(14, 20, 17, 0.1);
    flex-wrap: wrap;
}

.hz-article .article-meta-row .author-avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
}

.hz-article .article-meta-row .author-name {
    font-size: 15px;
}

.hz-article .article-meta-row .author-role {
    font-size: 13px;
}

.hz-article .article-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(14, 20, 17, 0.1);
}

.hz-article .article-share {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.hz-article .share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink-mid);
    cursor: pointer;
    transition: all .15s;
}

.hz-article .share-btn:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.hz-article .share-btn svg {
    width: 16px;
    height: 16px;
}

.hz-article .article-hero-img.grad-product {
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), linear-gradient(135deg, #0f1714 0%, #1f4a35 50%, #16352a 100%);
    position: relative;
}

.hz-article .article-hero-img-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 75%);
}

.hz-article .article-body-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hz-article .article-body-inner p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 24px;
    font-weight: 400;
}

.hz-article .article-body-inner h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 56px 0 20px;
}

.hz-article .article-body-inner h2 em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-article .article-body-inner h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 36px 0 14px;
}

.hz-article .article-body-inner a {
    color: var(--green-deep);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 184, 107, 0.4);
    transition: border-color .15s;
}

.hz-article .article-body-inner a:hover {
    border-bottom-color: var(--green-deep);
}

.hz-article .article-body-inner strong {
    color: var(--ink);
    font-weight: 600;
}

.hz-article .article-body-inner em {
    font-style: italic;
}

.hz-article .article-body-inner ul,
.hz-article .article-body-inner ol {
    margin: 24px 0 32px;
    padding-left: 4px;
}

.hz-article .article-body-inner li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    list-style: none;
}

.hz-article .article-body-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.hz-article .article-body-inner ol {
    counter-reset: olist;
}

.hz-article .article-body-inner ol li {
    counter-increment: olist;
}

.hz-article .article-body-inner ol li::before {
    content: counter(olist) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-deep);
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 18px;
}

.hz-article .pullquote-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 64px;
    line-height: 0;
    color: var(--green);
    opacity: 0.6;
    position: absolute;
    top: 24px;
    left: 22px;
}

.hz-article .pullquote p {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(22px, 2.3vw, 28px);
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 20px;
    text-indent: 28px;
}

.hz-article .pullquote-attr {
    font-size: 14px;
    color: var(--muted);
    font-style: normal;
    font-weight: 500;
    text-indent: 28px;
}

.hz-article .pullquote-attr strong {
    color: var(--ink);
    font-weight: 600;
}

.hz-article .callout::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hz-article .callout-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 10px;
    position: relative;
}

.hz-article .callout-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 8px var(--green-bright);
}

.hz-article .callout p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 0 !important;
    position: relative;
}

.hz-article .callout p strong {
    color: white;
}

.hz-article .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hz-article .tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(14, 20, 17, 0.04);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--ink-mid);
    font-weight: 500;
    text-decoration: none;
    transition: background .15s;
}

.hz-article .tag::before {
    content: '#';
    opacity: 0.4;
    margin-right: 4px;
}

.hz-article .tag:hover {
    background: rgba(14, 20, 17, 0.08);
    color: var(--ink);
}

.hz-article .author-bio .author-avatar {
    width: 80px;
    height: 80px;
    font-size: 28px;
}

.hz-article .author-bio-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.hz-article .author-bio-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 4px;
}

.hz-article .author-bio-role {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 14px;
}

.hz-article .author-bio-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--slate);
}

.hz-article .related-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.hz-article .section-header {
    margin-bottom: 80px;
    max-width: 720px;
}

.hz-article .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    font-weight: 600;
    margin: 0 0 20px;
}

.hz-article .section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--teal);
}

.hz-article .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 24px;
    padding-bottom: 0.08em;
    overflow: visible;
}

.hz-article .section-title em {
    font-style: italic;
    font-weight: 300;
    background: var(--grad-teal-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.2em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

@media (max-width: 1000px) {
    .hz-article .related-section {
        padding: 70px 24px;
    }

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

    .hz-article .article-body-section {
        padding: 70px 24px 56px;
    }
}

@media (max-width: 640px) {
    .hz-article .article-grid {
        grid-template-columns: 1fr;
    }

    .hz-article .article-hero-img {
        margin: -24px 16px 0;
        height: 220px;
    }

    .hz-article .article-body-inner p {
        font-size: 17px;
    }

    .hz-article .article-body-inner li {
        font-size: 17px;
    }

    .hz-article .pullquote {
        padding: 28px 22px;
    }

    .hz-article .pullquote-mark {
        font-size: 48px;
        top: 18px;
        left: 12px;
    }

    .hz-article .article-end {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hz-article img {
    max-width: 100%;
    display: block;
}

.hz-article .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hz-article .nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(229, 229, 238, 0.8);
    border-radius: 100px;
    padding: 10px 12px 10px 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(10, 14, 42, 0.04);
    transition: all 0.3s ease;
}

.hz-article .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hz-article .nav-logo img {
    width: auto;
    max-width: 150px;
    height: auto;
    display: block;
}

.hz-article .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-article .nav-links a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.2s ease;
}

.hz-article .nav-links a:hover,
.hz-article .nav-links a.active {
    background: rgba(2, 184, 127, 0.12);
    color: var(--teal);
}

.hz-article .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hz-article .btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 20px rgba(75, 206, 165, 0.38);
}

.hz-article .btn-primary:hover {
    background: var(--teal-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 135, 92, 0.31);
}

.hz-article .btn-ghost {
    color: var(--ink-soft);
    padding: 11px 18px;
    background: transparent;
    border-color: transparent;
}

.hz-article .btn-ghost:hover {
    color: var(--teal-dark);
}

.hz-article .article-header {
    padding-top: 136px;
}

.hz-article footer {
    background: var(--extra-dark);
    color: var(--paper);
    padding: 80px 0 40px;
}

.hz-article footer h3,
.hz-article footer h4,
.hz-article footer p,
.hz-article footer ul,
.hz-article footer li {
    margin: 0;
    padding: 0;
}

.hz-article .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.hz-article .footer-brand h3 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: white;
}

.hz-article .footer-brand h3 img {
    max-width: 200px;
}

.hz-article .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.hz-article .footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.hz-article .footer-contact strong {
    color: var(--yellow-soft);
    font-weight: 500;
}

.hz-article .footer-col h4 {
    color: var(--yellow-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 20px;
}

.hz-article .footer-contact a,
.hz-article .footer-col a,
.hz-article .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.hz-article .footer-contact a:hover,
.hz-article .footer-col a:hover,
.hz-article .footer-bottom-links a:hover {
    color: white;
}

.hz-article .footer-col ul {
    list-style: none;
}

.hz-article .footer-col li {
    margin-bottom: 10px;
}

.hz-article .footer-col a {
    font-size: 14px;
}

.hz-article .footer-event-title {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hz-article .footer-event-date {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hz-article .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.hz-article .footer-bottom-links {
    display: flex;
    gap: 24px;
}

@media (max-width: 1000px) {
    .hz-article .article-header {
        padding-top: 124px;
    }

    .hz-article .nav-links {
        display: none;
    }

    .hz-article .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hz-article .article-header {
        padding-top: 116px;
    }

    .hz-article .nav {
        padding: 14px 20px;
    }

    .hz-article .nav-cta .btn-ghost {
        display: none;
    }

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

    .hz-article .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hz-article .footer-bottom-links {
        flex-wrap: wrap;
        gap: 14px 20px;
    }
}

.hz-news .hero::before,
.hz-news .hero::after,
body.page-partners .hero::before,
body.page-partners .hero::after,
body.page-company .hero::before,
body.page-company .hero::after {
    content: none;
}

.hz-news .hero-bg,
body.page-partners .hero-bg,
body.page-company .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 10% 0%, rgba(0, 217, 126, 0.18) 0%, transparent 60%), radial-gradient(ellipse 50% 70% at 95% 10%, rgba(255, 200, 120, 0.35) 0%, transparent 60%), radial-gradient(ellipse 70% 90% at 50% 100%, rgba(255, 240, 180, 0.55) 0%, transparent 65%), linear-gradient(180deg, #fefcf5 0%, #fff8ea 100%);
    z-index: 0;
}

.hz-news .hero-grid,
body.page-partners .hero-grid,
body.page-company .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 20, 17, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 20, 17, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    z-index: 1;
    pointer-events: none;
    mask-image: none;
    -webkit-mask-image: none;
}

.hz-news .glow-orb,
body.page-partners .glow-orb,
body.page-company .glow-orb {
    display: none;
}

.hz-news .glow-orb-1,
body.page-partners .glow-orb-1,
body.page-company .glow-orb-1 {
    top: 90px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--orange-soft);
}

.hz-news .glow-orb-2,
body.page-partners .glow-orb-2,
body.page-company .glow-orb-2 {
    bottom: -70px;
    left: 8%;
    width: 360px;
    height: 360px;
    background: var(--teal-soft);
}

.hz-news .glow-orb-3,
body.page-partners .glow-orb-3,
body.page-company .glow-orb-3 {
    display: none;
}

.hz-news .hero-content,
body.page-partners .hero-content,
body.page-company .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    max-width: 1000px;
}

.hz-news .hero-meta-row,
body.page-partners .hero-meta-row,
body.page-company .hero-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fade-up 0.8s ease forwards;
    flex-wrap: wrap;
}

.hz-news .hero-tag-dot,
body.page-partners .hero-tag-dot,
body.page-company .hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.hz-news .hero h1,
body.page-partners .hero h1,
body.page-company .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--ink);
    margin: 0;
    animation: fade-up 1s ease 0.1s forwards;
    opacity: 0;
}

.hz-news .hero h1 .line,
body.page-partners .hero h1 .line,
body.page-company .hero h1 .line {
    display: inline;
    position: relative;
}

.hz-news .hero-sub,
body.page-partners .hero-sub,
body.page-company .hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 880px;
    margin: 15px auto 36px;
    animation: fade-up 0.8s ease 0.35s forwards;
    opacity: 0;
}

.hz-news .hero-actions,
body.page-partners .hero-actions,
body.page-company .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fade-up 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hz-news .hero-actions .btn,
body.page-partners .hero-actions .btn,
body.page-company .hero-actions .btn {
    min-width: 180px;
    justify-content: center;
}

.hz-news .hero-divider,
body.page-partners .hero-divider,
body.page-company .hero-divider {
    display: none;
}

@media (max-width: 1000px) {

    .hz-news .hero,
    body.page-partners .hero,
    body.page-company .hero {
        min-height: auto;
        padding: 124px 0 80px;
    }

    .hz-news .hero h1,
    body.page-partners .hero h1,
    body.page-company .hero h1 {
        font-size: clamp(54px, 10vw, 92px);
    }

    .hz-news .hero-sub,
    body.page-partners .hero-sub,
    body.page-company .hero-sub {
        max-width: 760px;
    }
}

@media (max-width: 640px) {

    .hz-news .hero,
    body.page-partners .hero,
    body.page-company .hero {
        min-height: auto;
        padding: 116px 0 64px;
    }

    .hz-news .hero-meta-row,
    body.page-partners .hero-meta-row,
    body.page-company .hero-meta-row {
        margin-bottom: 42px;
    }

    .hz-news .hero h1,
    body.page-partners .hero h1,
    body.page-company .hero h1 {
        font-size: clamp(48px, 16vw, 70px);
    }

    .hz-news .hero-sub,
    body.page-partners .hero-sub,
    body.page-company .hero-sub {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hz-news .hero-actions .btn,
    body.page-partners .hero-actions .btn,
    body.page-company .hero-actions .btn {
        width: 100%;
    }
}

/* ===========================================================================
   News/Webinars/Article — native dynamic-widget bridges
   (post-info date, theme-post-excerpt clamp, loop-card title, post-content)
   =========================================================================== */

/* News loop card (loop-item-news-card.json) — mirrors .article-card body */
.news-card-date.elementor-widget-post-info .elementor-icon-list-items,
.elementor-widget-post-info.news-card-date ul.elementor-icon-list-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card-date .elementor-icon-list-item,
.news-card-date .elementor-icon-list-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--green-deep);
}

.news-card-date .elementor-icon-list-icon {
    display: none;
}

/* date text only, no icon */
.news-card-date .elementor-icon-list-item {
    padding: 0;
}

/* theme-post-title inside the news loop card -> .article-title */
.news-loop-title .elementor-heading-title,
.elementor-widget-theme-post-title.news-loop-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 6px 0 10px;
}

.news-loop-title a {
    color: inherit;
    text-decoration: none;
}

.news-loop-title em {
    font-style: italic;
    color: var(--green-deep);
}

/* theme-post-excerpt -> .article-excerpt (2-line clamp like the source cards) */
.news-loop-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-mid);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Single-post: post-info date row under the H1 */
.hz-article .article-post-date .elementor-icon-list-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-deep);
}

.hz-article .article-post-date .elementor-icon-list-icon i {
    color: var(--green-deep);
}

/* Single-post: theme-post-content inherits the long-form body rhythm that the
   design applied to .article-body-inner > p/h2/ul/ol */
.hz-article .article-post-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-mid);
    margin: 0 0 22px;
}

.hz-article .article-post-content h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 38px 0 16px;
}

.hz-article .article-post-content h2 em {
    font-style: italic;
    color: var(--green-deep);
}

.hz-article .article-post-content ul,
.hz-article .article-post-content ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.hz-article .article-post-content li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-mid);
    margin: 0 0 10px;
}

.hz-article .article-post-content a {
    color: var(--green-deep);
    text-decoration: underline;
}

/* --- fragment: partners-customers.css --- */
/* =========================================================================
   Adapter fragment: Partners + Customers pages
   -------------------------------------------------------------------------
   Bridges native Elementor widgets used ONLY on the partners/customers pages
   to the hirezon-2026 design system. Append after hirezon-elementor-adapter.css.

   Covered here (not covered by the base adapter):
   - theme-post-featured-image widget inside the partner/customer logo LOOP
     items (grayscale, contained, capped height) — the partner's/customer's
     logo is its featured image.
   - loop-grid / loop-carousel wrappers used as logo strips / logo walls.
   ========================================================================= */

/* --- Logo loop item wrapper (loop-item template root container) --------- */
.logo-loop-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    min-height: 90px;
}

/* --- Featured-image logos: partner strip + customer wall ---------------- */
.elementor-widget-theme-post-featured-image.partner-logo-img img,
.elementor-widget-theme-post-featured-image.customer-logo-img img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* desaturated by default, full color on hover — matches logo-wall feel */
    filter: grayscale(100%);
    opacity: 0.78;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.elementor-widget-theme-post-featured-image.partner-logo-img img:hover,
.elementor-widget-theme-post-featured-image.customer-logo-img img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Partner logo strip (loop-carousel) --------------------------------- */
.partner-logo-strip-wrap {
    width: 100%;
    margin: 8px 0 40px;
}

.elementor-widget-loop-carousel.partner-logo-strip .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Customer logo wall (loop-grid) ------------------------------------- */
.logo-wall-wrap {
    width: 100%;
}

.elementor-widget-loop-grid.logo-wall-grid .elementor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.elementor-widget-loop-grid.logo-wall-grid .logo-loop-item {
    border: 1px solid var(--line, #e7e7ea);
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.elementor-widget-loop-grid.logo-wall-grid .logo-loop-item:hover {
    border-color: var(--teal, #02b87f);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 768px) {
    .elementor-widget-loop-grid.logo-wall-grid .elementor-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .logo-loop-item {
        min-height: 76px;
        padding: 14px;
    }

    .elementor-widget-theme-post-featured-image.partner-logo-img img,
    .elementor-widget-theme-post-featured-image.customer-logo-img img {
        max-height: 58px;
    }
}

@media (max-width: 480px) {
    .elementor-widget-loop-grid.logo-wall-grid .elementor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    .elementor-widget-theme-post-featured-image.partner-logo-img img,
    .elementor-widget-theme-post-featured-image.customer-logo-img img,
    .elementor-widget-loop-grid.logo-wall-grid .logo-loop-item {
        transition: none;
    }
}

/* --- fragment: utility-pages.css --- */
/* ===========================================================================
   Utility pages — Elementor adapter fragment
   Load AFTER hirezon-2026.css and hirezon-elementor-adapter.css.
   Covers the interior/legal pages introduced by:
     - page-privacy.js  (.interior-hero + .legal-content)
     - page-terms.js    (.interior-hero + .legal-content)
   Request-a-Demo and Referral reuse hero / process / product-card / contact
   styles already provided upstream and in careers-contact.css.
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. COMPACT INTERIOR HERO (.interior-hero)
      A smaller hero band than the big page heroes: less vertical padding,
      a subtle design-system gradient wash instead of orbs.
   --------------------------------------------------------------------------- */
.interior-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 24px 48px;
    background:
        radial-gradient(at 20% 20%, rgb(2 184 127 / 9%) 0, transparent 55%),
        radial-gradient(at 85% 0%, rgb(255 202 0 / 18%) 0, transparent 55%),
        var(--paper);
    border-bottom: 1px solid var(--line);
}

.interior-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(16, 18, 25, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 18, 25, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 100%);
    pointer-events: none;
}

.interior-hero .hero-content {
    position: relative;
    z-index: 1;
}

.interior-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.interior-hero h1 em {
    font-style: normal;
    color: var(--teal-dark);
}

@media (max-width: 768px) {
    .interior-hero {
        padding: 96px 20px 36px;
    }
}

/* ---------------------------------------------------------------------------
   2. LEGAL CONTENT (.legal-content)
      A readable single-column measure for long verbatim legal copy.
   --------------------------------------------------------------------------- */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px 72px;
}

.legal-content .elementor-widget-text-editor {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
}

.legal-content p {
    margin: 0 0 1.15em;
}

.legal-content h2,
.legal-content h3 {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 2em 0 0.6em;
}

.legal-content h2 {
    font-size: 24px;
}

.legal-content h3 {
    font-size: 19px;
}

/* Bolded inline section labels (the legal text uses <b> as subheadings) */
.legal-content b {
    color: var(--ink);
    font-weight: 600;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.15em;
    padding-left: 1.5em;
}

.legal-content li {
    margin-bottom: 0.5em;
}

.legal-content a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
}

.legal-content a:hover,
.legal-content a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 20px 56px;
    }

    .legal-content .elementor-widget-text-editor {
        font-size: 15px;
    }
}