/* ==========================================================================
   XPERT — HOMEPAGE SECTIONS
   ========================================================================== */

/* ── HERO ──────────────────────────────────────────────────────────── */
.xh-hero {
    background: linear-gradient(180deg, #fff 0%, var(--xpert-bg) 100%);
    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;
}
.xh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
    pointer-events: none;
}
.xh-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
}
.xh-hero__copy {}
.xh-hero__eyebrow {
    margin-bottom: 22px;
}
.xh-hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 8vw, 112px);
    line-height: .88;
    text-transform: uppercase;
    color: var(--xpert-deep);
    margin: 0 0 26px;
    letter-spacing: -0.02em;
}
.xh-hero h1 .accent {
    color: var(--xpert-accent);
    position: relative;
    display: inline-block;
}
.xh-hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0; bottom: 6px;
    width: 100%;
    height: 6px;
    background: var(--xpert-accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: xh-underline 1s ease .4s forwards;
}
@keyframes xh-underline { to { transform: scaleX(1); } }

.xh-hero__lead {
    font-size: 19px;
    color: var(--xpert-muted);
    max-width: 540px;
    margin-bottom: 18px;
    line-height: 1.55;
}
.xh-hero__sub {
    font-size: 15.5px;
    color: var(--xpert-text);
    max-width: 540px;
    margin-bottom: 38px;
    line-height: 1.65;
}
.xh-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.xh-hero__meta {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.xh-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.xh-hero__meta-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--xpert-deep);
    line-height: 1;
}
.xh-hero__meta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--xpert-muted);
}

/* Hero illustration (technical AC unit diagram) */
.xh-hero__art {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin-left: auto;
    justify-self: end;
}
.xh-hero__diagram {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid var(--xpert-border);
    position: relative;
    box-shadow: var(--shadow);
}
.xh-hero__diagram::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 16px 16px;
}
.xh-hero__diagram::after {
    content: 'FIG. 01 / AC PARTS / EXPLODED VIEW';
    position: absolute;
    bottom: 14px; left: 18px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--xpert-muted);
    text-transform: uppercase;
}
.xh-hero__diagram svg {
    position: absolute;
    inset: 8%;
    width: 84%;
    height: 84%;
    color: var(--xpert-deep);
    z-index: 1;
}
.xh-hero__corner {
    position: absolute;
    width: 28px; height: 28px;
    border: 1px solid var(--xpert-deep);
}
.xh-hero__corner--tl { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.xh-hero__corner--tr { top: -6px; right: -6px; border-left: 0; border-bottom: 0; }
.xh-hero__corner--bl { bottom: -6px; left: -6px; border-right: 0; border-top: 0; }
.xh-hero__corner--br { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }

.xh-hero__sticker {
    position: absolute;
    top: -24px;
    right: -24px;
    background: var(--xpert-accent);
    color: #fff;
    padding: 16px 20px;
    transform: rotate(6deg);
    box-shadow: var(--shadow);
    z-index: 2;
}
.xh-hero__sticker-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.xh-hero__sticker-text {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 3px;
}

/* ── TRUST STRIP ───────────────────────────────────────────────────── */
.xh-trust {
    background: var(--xpert-deep);
    color: #fff;
    padding: 0;
    position: relative;
}
.xh-trust__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.xh-trust__item {
    padding: 36px 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}
.xh-trust__item:last-child { border-right: 0; }
.xh-trust__icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,.18);
    color: var(--xpert-accent);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.xh-trust__icon svg { width: 24px; height: 24px; }
.xh-trust__text { display: flex; flex-direction: column; gap: 4px; }
.xh-trust__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .01em;
}
.xh-trust__desc {
    font-size: 13px;
    color: rgba(255,255,255,.62);
    line-height: 1.4;
}

/* ── SECTION HEADER ───────────────────────────────────────────────── */
.xh-section { padding: 90px 0; }
.xh-section--tight { padding: 70px 0; }
.xh-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.xh-section__title {
    font-size: clamp(34px, 4.5vw, 56px);
    text-transform: uppercase;
    line-height: 1;
    margin: 12px 0 0;
    max-width: 720px;
}
.xh-section__intro { max-width: 600px; }
.xh-section__lead {
    font-size: 17px;
    color: var(--xpert-muted);
    max-width: 460px;
    line-height: 1.55;
}
.xh-section__link {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--xpert-deep) !important;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--xpert-accent);
}
.xh-section__link svg { width: 14px; height: 14px; }
.xh-section__link:hover { color: var(--xpert-accent) !important; }

/* ── CATEGORIES (bento) ───────────────────────────────────────────── */
.xh-categories__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.xh-cat-tile {
    background: #fff;
    border: 1px solid var(--xpert-border);
    padding: 28px;
    color: var(--xpert-deep) !important;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}
.xh-cat-tile::after {
    content: '';
    position: absolute;
    right: -40%;
    bottom: -40%;
    width: 70%; height: 70%;
    background: var(--xpert-bg);
    border-radius: 50%;
    transition: transform .4s ease;
    z-index: 0;
}
.xh-cat-tile:hover::after { transform: scale(1.3); }
.xh-cat-tile:hover {
    border-color: var(--xpert-deep);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.xh-cat-tile > * { position: relative; z-index: 1; }
.xh-cat-tile__icon {
    width: 54px; height: 54px;
    background: var(--xpert-bg);
    color: var(--xpert-primary);
    display: grid;
    place-items: center;
    border: 1px solid var(--xpert-border);
    margin-bottom: 22px;
    transition: all .3s ease;
}
.xh-cat-tile:hover .xh-cat-tile__icon {
    background: var(--xpert-accent);
    color: #fff;
    border-color: var(--xpert-accent);
}
.xh-cat-tile__icon svg { width: 30px; height: 30px; }
.xh-cat-tile__name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--xpert-deep);
    margin: 0;
}
.xh-cat-tile__count {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--xpert-muted);
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.xh-cat-tile__count svg {
    width: 14px; height: 14px;
    transition: transform .2s ease;
}
.xh-cat-tile:hover .xh-cat-tile__count svg { transform: translateX(4px); }

.xh-cat-tile--lg { grid-column: span 6; }
.xh-cat-tile--md { grid-column: span 4; }
.xh-cat-tile--sm { grid-column: span 3; }
.xh-cat-tile--lg .xh-cat-tile__name { font-size: 38px; }
.xh-cat-tile--lg .xh-cat-tile__icon { width: 64px; height: 64px; }
.xh-cat-tile--lg .xh-cat-tile__icon svg { width: 36px; height: 36px; }
.xh-cat-tile--lg { min-height: 280px; }

/* ── FIND YOUR PART ───────────────────────────────────────────────── */
.xh-find {
    background: var(--xpert-deep);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.xh-find::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.xh-find::after {
    content: 'FIND';
    position: absolute;
    top: -40px; right: -20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28vw;
    color: rgba(255,255,255,.03);
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
}
.xh-find__inner { position: relative; z-index: 1; }
.xh-find__head {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: end;
}
.xh-find h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    text-transform: uppercase;
    line-height: 1;
    margin: 14px 0 0;
}
.xh-find h2 .accent { color: var(--xpert-accent); }
.xh-find__lead {
    font-size: 16.5px;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
}

/* Restyle existing .xpert-find-part for this dark section */
.xh-find .xpert-find-part {
    background: #fff;
    border: 0;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border-radius: 0;
    color: var(--xpert-text);
    position: relative;
}
.xh-find .xpert-find-part::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 4px;
    background: var(--xpert-accent);
}
.xh-find .xpert-find-part__title {
    font-family: var(--font-display);
    color: var(--xpert-deep);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.xh-find .xpert-find-part__label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--xpert-muted);
    margin-bottom: 8px;
}
.xh-find .xpert-find-part__row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}
.xh-find .xpert-find-part__select,
.xh-find .xpert-find-part__input {
    height: 48px;
    border: 1.5px solid var(--xpert-border);
    background: var(--xpert-bg);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 0 14px;
    border-radius: 0;
}
.xh-find .xpert-find-part__submit {
    background: var(--xpert-accent);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.xh-find .xpert-find-part__submit:hover { background: var(--xpert-accent-deep); }
.xh-find .xpert-find-part__submit::after {
    content: '→';
    font-family: var(--font-mono);
}

/* ── PRODUCT CARDS (best sellers + shop archive) ──────────────────── */
.xh-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}
.xh-product {
    background: #fff;
    border: 1px solid var(--xpert-border);
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.xh-product:hover {
    border-color: var(--xpert-deep);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.xh-product__img {
    aspect-ratio: 1;
    background: var(--xpert-bg);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    color: var(--xpert-primary);
}
.xh-product__img svg { width: 50%; height: 50%; opacity: .35; }
.xh-product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.xh-product:hover .xh-product__img img { transform: scale(1.05); }
.xh-product__sku {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--xpert-deep);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    letter-spacing: .08em;
}
.xh-product__badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--xpert-accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.xh-product__body { padding: 18px 20px 22px; }
.xh-product__cat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--xpert-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.xh-product__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.15;
    color: var(--xpert-deep);
    text-transform: uppercase;
    margin: 0 0 10px;
    min-height: 2.3em;
}
.xh-product__name a { color: inherit !important; }
.xh-product__name a:hover { color: var(--xpert-accent) !important; }
.xh-product__price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--xpert-deep);
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.xh-product__price small {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--xpert-muted);
    font-weight: 500;
}
.xh-product__cta {
    display: block;
    margin-top: 14px;
    padding: 10px 0;
    border-top: 1px solid var(--xpert-border);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--xpert-deep) !important;
}
.xh-product__cta:hover { color: var(--xpert-accent) !important; }

/* ── WHY CHOOSE ──────────────────────────────────────────────────── */
.xh-why {
    background: var(--xpert-cream);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.xh-why::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: var(--xpert-border);
    transform: translateX(-50%);
    pointer-events: none;
}
.xh-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.xh-why__item {
    padding: 40px 40px 0;
    position: relative;
    counter-increment: xh-why;
    border-right: 1px solid var(--xpert-border);
    background: var(--xpert-cream);
}
.xh-why__item:last-child { border-right: 0; }
.xh-why__num {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .14em;
    color: var(--xpert-accent);
    font-weight: 600;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.xh-why__num::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--xpert-accent);
}
.xh-why__title {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}
.xh-why__desc {
    color: var(--xpert-muted);
    font-size: 15.5px;
    line-height: 1.65;
}

/* ── BRANDS MARQUEE ───────────────────────────────────────────────── */
.xh-brands {
    background: var(--xpert-deep);
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
.xh-brands__head {
    text-align: center;
    margin-bottom: 38px;
}
.xh-brands__head h2 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.xh-brands__sub {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    max-width: 620px;
    margin: 0 auto;
}
.xh-brands__marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.xh-brands__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: xh-marquee 40s linear infinite;
}
.xh-brands__marquee:hover .xh-brands__track {
    animation-play-state: paused;
}
@keyframes xh-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.xh-brand {
    border: 1px solid rgba(255,255,255,.16);
    padding: 18px 28px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: rgba(255,255,255,.85);
    transition: all .2s ease;
    white-space: nowrap;
    background: rgba(255,255,255,.02);
}
.xh-brand:hover {
    background: var(--xpert-accent);
    border-color: var(--xpert-accent);
    color: #fff;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────── */
.xh-testimonials {
    padding: 100px 0;
    background: #fff;
}
.xh-testimonials__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
}
.xh-test {
    background: #fff;
    border: 1px solid var(--xpert-border);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .25s ease;
}
.xh-test:hover {
    border-color: var(--xpert-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.xh-test--featured {
    background: var(--xpert-primary);
    color: #fff;
    border-color: var(--xpert-primary);
}
.xh-test--featured:hover { background: var(--xpert-deep); border-color: var(--xpert-deep); }
.xh-test__quote {
    position: absolute;
    top: 18px; right: 22px;
    color: var(--xpert-accent);
    opacity: .25;
}
.xh-test__quote svg { width: 56px; height: 56px; }
.xh-test--featured .xh-test__quote { color: var(--xpert-accent); opacity: .9; }
.xh-test__stars {
    display: flex;
    gap: 4px;
    color: var(--xpert-accent);
    margin-bottom: 18px;
}
.xh-test__stars svg { width: 14px; height: 14px; }
.xh-test__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--xpert-text);
    margin: 0 0 26px;
    flex: 1;
}
.xh-test--featured .xh-test__text { color: #fff; font-size: 18px; }
.xh-test__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--xpert-border);
}
.xh-test--featured .xh-test__author { border-color: rgba(255,255,255,.18); }
.xh-test__avatar {
    width: 46px; height: 46px;
    background: var(--xpert-bg);
    color: var(--xpert-deep);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    display: grid;
    place-items: center;
    text-transform: uppercase;
}
.xh-test--featured .xh-test__avatar {
    background: var(--xpert-accent);
    color: #fff;
}
.xh-test__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--xpert-deep);
    text-transform: uppercase;
    line-height: 1;
}
.xh-test--featured .xh-test__name { color: #fff; }
.xh-test__role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--xpert-muted);
    letter-spacing: .06em;
    margin-top: 4px;
    text-transform: uppercase;
}
.xh-test--featured .xh-test__role { color: rgba(255,255,255,.7); }

/* ── BLOG TEASERS ─────────────────────────────────────────────────── */
.xh-blog { background: var(--xpert-bg); padding: 100px 0; }
.xh-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.xh-blog-card {
    background: #fff;
    border: 1px solid var(--xpert-border);
    display: flex;
    flex-direction: column;
    color: inherit !important;
    transition: all .25s ease;
    overflow: hidden;
}
.xh-blog-card:hover {
    border-color: var(--xpert-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.xh-blog-card__img {
    aspect-ratio: 16 / 10;
    background: var(--xpert-deep);
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.xh-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.xh-blog-card__img svg {
    width: 60px; height: 60px;
    color: rgba(255,255,255,.6);
}
.xh-blog-card__cat {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--xpert-accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 10px;
    font-weight: 600;
}
.xh-blog-card__body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.xh-blog-card__meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--xpert-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.xh-blog-card__meta::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--xpert-accent);
}
.xh-blog-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--xpert-deep);
    text-transform: uppercase;
    margin: 0 0 12px;
}
.xh-blog-card:hover .xh-blog-card__title { color: var(--xpert-accent); }
.xh-blog-card__excerpt {
    color: var(--xpert-muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}
.xh-blog-card__more {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--xpert-accent) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.xh-blog-card__more svg { width: 14px; height: 14px; }

/* ── NEWSLETTER + WHATSAPP CTA ────────────────────────────────────── */
.xh-cta {
    padding: 0;
    background: var(--xpert-deep);
    color: #fff;
}
.xh-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.xh-cta__news {
    padding: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.xh-cta__news::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.xh-cta__news > * { position: relative; z-index: 1; }
.xh-cta h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    text-transform: uppercase;
    line-height: 1;
    margin: 14px 0 18px;
}
.xh-cta__lead {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    margin-bottom: 30px;
    max-width: 440px;
    line-height: 1.6;
}
.xh-cta__form {
    display: flex;
    gap: 0;
    max-width: 460px;
    border: 1.5px solid rgba(255,255,255,.2);
}
.xh-cta__form input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 16px 18px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}
.xh-cta__form input::placeholder { color: rgba(255,255,255,.4); }
.xh-cta__form button {
    background: var(--xpert-accent);
    color: #fff;
    border: 0;
    padding: 16px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.xh-cta__form button:hover { background: var(--xpert-accent-deep); }
.xh-cta__small {
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,.5);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.xh-cta__wa {
    background: var(--xpert-wa-green);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.xh-cta__wa::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
}
.xh-cta__wa::after {
    content: '';
    position: absolute;
    right: -60px; bottom: -120px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.xh-cta__wa > * { position: relative; z-index: 1; }
.xh-cta__wa .xpert-label { color: rgba(255,255,255,.85); }
.xh-cta__wa h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 50px);
    text-transform: uppercase;
    line-height: .95;
    margin: 14px 0 18px;
    font-weight: 800;
}
.xh-cta__wa p {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 360px;
    line-height: 1.55;
}
.xh-cta__wa-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--xpert-wa-green) !important;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    align-self: flex-start;
}
.xh-cta__wa-link:hover { background: var(--xpert-deep); color: #fff !important; }
.xh-cta__wa-link svg { width: 20px; height: 20px; }

.xh-cta__wa-phone {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .xh-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .xh-hero__art { max-width: 400px; margin: 0 auto; }
    .xh-trust__inner { grid-template-columns: 1fr 1fr; }
    .xh-trust__item:nth-child(2) { border-right: 0; }
    .xh-trust__item:nth-child(1), .xh-trust__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
    .xh-categories__grid { grid-template-columns: repeat(6, 1fr); }
    .xh-cat-tile--lg, .xh-cat-tile--md, .xh-cat-tile--sm { grid-column: span 3; }
    .xh-cat-tile--lg .xh-cat-tile__name { font-size: 28px; }
    .xh-find__head { grid-template-columns: 1fr; gap: 24px; }
    .xh-why__grid { grid-template-columns: 1fr; }
    .xh-why__item { border-right: 0; border-bottom: 1px solid var(--xpert-border); padding-bottom: 30px; padding-left: 0; padding-right: 0; }
    .xh-why::before { display: none; }
    .xh-testimonials__grid { grid-template-columns: 1fr; }
    .xh-blog__grid { grid-template-columns: 1fr; }
    .xh-cta__grid { grid-template-columns: 1fr; }
    .xh-cta__news, .xh-cta__wa { padding: 60px 40px; }
}
@media (max-width: 720px) {
    .xh-hero { padding: 50px 0 70px; }
    .xh-hero h1 { font-size: clamp(40px, 11vw, 64px); }
    .xh-hero__meta { gap: 22px; }
    .xh-trust__inner { grid-template-columns: 1fr; }
    .xh-trust__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px; }
    .xh-trust__item:last-child { border-bottom: 0; }
    .xh-section { padding: 60px 0; }
    .xh-categories__grid { grid-template-columns: 1fr 1fr; }
    .xh-cat-tile--lg, .xh-cat-tile--md, .xh-cat-tile--sm { grid-column: span 1; }
    .xh-cat-tile--lg { min-height: 220px; }
    .xh-cat-tile--lg .xh-cat-tile__name { font-size: 22px; }
    .xh-section__head { flex-direction: column; align-items: flex-start; }
    .xh-find .xpert-find-part { padding: 22px; }
    .xh-cta__news, .xh-cta__wa { padding: 50px 24px; }
}
