/*
Theme Name: prespa Child
Template: prespa
Description: Child theme for prespa
Author: Your Name
Version: 1.0
*/


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
    --hpg-black:      #0a0a0a;
    --hpg-white:      #ffffff;
    --hpg-off-white:  #f5f4f1;
    --hpg-light-grey: #e8e6e1;
    --hpg-mid-grey:   #9e9e9e;
    --hpg-dark-grey:  #2c2c2c;
    --hpg-red:        #c0392b;
    --hpg-red-dark:   #96281b;

    --hpg-font-display: 'Playfair Display', Georgia, serif;
    --hpg-font-body:    'DM Sans', sans-serif;
    --hpg-font-mono:    'DM Mono', monospace;

    --hpg-radius:  4px;
    --hpg-gap:     2rem;
    --hpg-section: 7rem;
}

/* ── Reset ── */
.hpg-main *, .hpg-main *::before, .hpg-main *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hpg-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-white);
    overflow-x: hidden;
}

/* ── Container ── */
.hpg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================================================
   SHARED COMPONENTS
   ================================================================ */

/* Section Header */
.hpg-section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.hpg-section-head--left {
    text-align: left;
}
.hpg-section-head__label {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hpg-red);
    margin-bottom: 1rem;
}
.hpg-label-line {
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--hpg-red);
    flex-shrink: 0;
}
.hpg-section-head__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--hpg-black);
}

/* Buttons */
.hpg-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .9rem 2rem;
    border-radius: var(--hpg-radius);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.hpg-btn--primary {
    background: var(--hpg-black);
    color: var(--hpg-white);
    border: 2px solid var(--hpg-black);
}
.hpg-btn--primary:hover {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192,57,43,.25);
}
.hpg-btn--outline {
    background: transparent;
    color: var(--hpg-white);
    border: 2px solid rgba(255,255,255,.5);
}
.hpg-btn--outline:hover {
    border-color: var(--hpg-white);
    background: rgba(255,255,255,.08);
}

/* Reveal animation */
.hpg-service-card,
.hpg-why-card,
.hpg-process-step,
.hpg-about__layout,
.hpg-faq__layout {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.hpg-visible {
    opacity: 1 !important;
    transform: none !important;
}
.hpg-service-card:nth-child(2) { transition-delay: .1s; }
.hpg-service-card:nth-child(3) { transition-delay: .2s; }
.hpg-service-card:nth-child(4) { transition-delay: .12s; }
.hpg-service-card:nth-child(5) { transition-delay: .22s; }
.hpg-service-card:nth-child(6) { transition-delay: .32s; }
.hpg-why-card:nth-child(2) { transition-delay: .12s; }
.hpg-why-card:nth-child(3) { transition-delay: .24s; }
.hpg-why-card:nth-child(4) { transition-delay: .36s; }
.hpg-process-step:nth-child(even) { transition-delay: .15s; }

/* ================================================================
   HERO
   ================================================================ */
.hpg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--hpg-black);
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hpg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(10,10,10,.2) 0%, rgba(10,10,10,.4) 50%, rgba(10,10,10,.2) 100% );
    z-index: 1;
}

/* Animated grid lines */
.hpg-hero__grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: space-evenly;
}
.hpg-hero__grid-lines span {
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06), transparent);
    animation: hpg-grid-pulse 4s ease-in-out infinite;
}
.hpg-hero__grid-lines span:nth-child(2) { animation-delay: 1s; }
.hpg-hero__grid-lines span:nth-child(3) { animation-delay: 2s; }
.hpg-hero__grid-lines span:nth-child(4) { animation-delay: 3s; }
@keyframes hpg-grid-pulse {
    0%, 100% { opacity: .3; }
    50%       { opacity: 1; }
}

.hpg-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 7rem 0 5rem;
}

/* Badge */
.hpg-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: hpg-fade-up .8s ease both;
}
.hpg-badge-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hpg-red);
    animation: hpg-pulse-dot 2s ease-in-out infinite;
}
@keyframes hpg-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,.5); }
    50%       { box-shadow: 0 0 0 6px rgba(192,57,43,0); }
}

.hpg-hero__heading {
    font-family: var(--hpg-font-display);
    font-size: clamp(2.8rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--hpg-white);
    margin-bottom: 1.5rem;
    animation: hpg-fade-up .9s .1s ease both;
}
.hpg-hero__heading em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--hpg-white);
}

.hpg-hero__subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: hpg-fade-up .9s .2s ease both;
}
.hpg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: hpg-fade-up .9s .3s ease both;
}

/* Ticker */
.hpg-hero__ticker {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    animation: hpg-fade-up .9s .4s ease both;
}
.hpg-ticker-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: hpg-ticker 18s linear infinite;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.hpg-ticker-dot {
    color: var(--hpg-red);
    font-size: .6rem;
}
@keyframes hpg-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Scroll hint */
.hpg-hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    animation: hpg-fade-in 1.2s .8s ease both;
}
.hpg-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: hpg-scroll-anim 1.8s ease-in-out infinite;
}
@keyframes hpg-scroll-anim {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50%       { transform: scaleY(.5); transform-origin: top; }
}

@keyframes hpg-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hpg-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ================================================================
   SERVICES
   ================================================================ */
.hpg-services {
    padding: var(--hpg-section) 0;
    background: var(--hpg-off-white);
    position: relative;
}
.hpg-services::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-black) 0, var(--hpg-black) 32px,
        var(--hpg-red) 32px, var(--hpg-red) 34px,
        transparent 34px, transparent 40px
    );
    position: absolute;
    top: 0;
}

.hpg-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--hpg-light-grey);
    border: 1.5px solid var(--hpg-light-grey);
    overflow: hidden;
}

.hpg-service-card {
    background: var(--hpg-white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, opacity .6s ease !important;
}
.hpg-service-card:hover {
    z-index: 2;
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.hpg-service-card--accent {
    background: var(--hpg-black);
    color: var(--hpg-white);
}
.hpg-service-card--accent .hpg-service-card__title,
.hpg-service-card--accent .hpg-service-card__desc {
    color: var(--hpg-white);
}
.hpg-service-card--accent .hpg-service-card__desc {
    color: rgba(255,255,255,.6);
}
.hpg-service-card--accent .hpg-service-card__link {
    color: var(--hpg-red);
    border-top-color: rgba(255,255,255,.1);
}
.hpg-service-card--accent .hpg-service-card__index {
    color: rgba(255,255,255,.08);
}

.hpg-service-card__index {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: var(--hpg-font-mono);
    font-size: 3rem;
    font-weight: 500;
    color: rgba(0,0,0,.05);
    line-height: 1;
    pointer-events: none;
    transition: color .35s;
}
.hpg-service-card:hover .hpg-service-card__index {
    color: rgba(192,57,43,.08);
}

.hpg-service-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.hpg-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.hpg-service-card:hover .hpg-service-card__image img {
    transform: scale(1.06);
}

.hpg-service-card__body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hpg-service-card__title {
    font-family: var(--hpg-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin-bottom: .75rem;
    line-height: 1.3;
}
.hpg-service-card__desc {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--hpg-dark-grey);
    flex: 1;
    margin-bottom: 1.5rem;
}
.hpg-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-red);
    border-top: 1px solid var(--hpg-light-grey);
    padding-top: 1rem;
    margin-top: auto;
    transition: gap .25s ease;
}
.hpg-service-card__link:hover {
    gap: .9rem;
}

/* ================================================================
   ABOUT
   ================================================================ */
.hpg-about {
    padding: var(--hpg-section) 0;
    background: var(--hpg-white);
}
.hpg-about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.hpg-about__image-col {
    position: relative;
}
.hpg-about__image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.hpg-about__image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}
.hpg-about__image-frame {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 2px solid var(--hpg-light-grey);
    z-index: 1;
}
.hpg-about__image-tag {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    z-index: 3;
    background: var(--hpg-red);
    color: var(--hpg-white);
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    padding: .7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.hpg-about__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--hpg-dark-grey);
    margin-bottom: 2rem;
}
.hpg-about__points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.hpg-about__point {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .95rem;
    color: var(--hpg-dark-grey);
    line-height: 1.5;
}
.hpg-about__point-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--hpg-red);
    color: var(--hpg-white);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ================================================================
   WHY
   ================================================================ */
.hpg-why {
    padding: var(--hpg-section) 0;
    background: var(--hpg-black);
    position: relative;
    overflow: hidden;
}
.hpg-why__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--hpg-font-display);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    color: rgba(255,255,255,.025);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -.05em;
}
.hpg-why .hpg-section-head__label {
    color: var(--hpg-red);
}
.hpg-why .hpg-label-line {
    background: var(--hpg-red);
}
.hpg-why .hpg-section-head__title {
    color: var(--hpg-white);
}

.hpg-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.06);
    position: relative;
    z-index: 1;
}

.hpg-why-card {
    background: var(--hpg-black);
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid rgba(255,255,255,.05);
    transition: background .3s ease, opacity .6s ease !important;
    overflow: hidden;
}
.hpg-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--hpg-red);
    transition: height .4s ease;
}
.hpg-why-card:hover::before {
    height: 100%;
}
.hpg-why-card:hover {
    background: rgba(255,255,255,.03);
}

.hpg-why-card__num {
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    color: rgba(255,255,255,.2);
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
}
.hpg-why-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--hpg-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	color: #ffffff;
    background: rgba(255,255,255,.04);
}
.hpg-why-card__icon .dashicons {
  font-size: 27px;
  width: auto;
  height: auto;
}
.hpg-why-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    filter: invert(1) brightness(2);
}
.hpg-why-card__icon--placeholder {
    color: rgba(255,255,255,.4);
}
.hpg-why-card__title {
    font-family: var(--hpg-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hpg-white);
    margin-bottom: .75rem;
    line-height: 1.35;
}
.hpg-why-card__desc {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
}
.hpg-why-card__line {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin-top: 2rem;
    transition: background .3s;
}
.hpg-why-card:hover .hpg-why-card__line {
    background: rgba(192,57,43,.4);
}

/* ================================================================
   PROCESS
   ================================================================ */
.hpg-process {
    padding: var(--hpg-section) 0;
    background: var(--hpg-off-white);
    position: relative;
}
.hpg-process__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 6rem;
    position: relative;
    padding: 2rem 0;
}
.hpg-process__track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--hpg-light-grey);
    transform: translateX(-50%);
}
.hpg-process__track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--hpg-red);
}

.hpg-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}
.hpg-process-step--alt {
    flex-direction: row-reverse;
    text-align: right;
}
.hpg-process-step--alt .hpg-process-step__content {
    align-items: flex-end;
}

.hpg-process-step__node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hpg-white);
    border: 2px solid var(--hpg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background .3s, border-color .3s;
}
.hpg-process-step:hover .hpg-process-step__node {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
}
.hpg-process-step:hover .hpg-process-step__num {
    color: var(--hpg-white);
}
.hpg-process-step__num {
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    font-weight: 500;
    color: var(--hpg-black);
    letter-spacing: .05em;
    transition: color .3s;
}
.hpg-process-step__content {
    display: flex;
    flex-direction: column;
    padding-top: .75rem;
}
.hpg-process-step__title {
    font-family: var(--hpg-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin-bottom: .6rem;
    line-height: 1.3;
}
.hpg-process-step__desc {
    font-size: .960rem;
    line-height: 1.7;
    color: var(--hpg-dark-grey);
}

/* ================================================================
   FAQ
   ================================================================ */
.hpg-faq {
    padding: var(--hpg-section) 0;
    background: var(--hpg-white);
    border-top: 1px solid var(--hpg-light-grey);
}
.hpg-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.hpg-faq__subtitle {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--hpg-mid-grey);
    margin-bottom: 2.5rem;
    margin-top: .5rem;
}
.hpg-faq__image {
    position: relative;
    margin-top: 2rem;
}
.hpg-faq__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.hpg-faq__image-deco {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    background: repeating-linear-gradient(
        45deg,
        var(--hpg-light-grey) 0,
        var(--hpg-light-grey) 1px,
        transparent 1px,
        transparent 8px
    );
    z-index: -1;
}

/* Accordion */
.hpg-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hpg-light-grey);
}
.hpg-accordion-item {
    border-bottom: 1px solid var(--hpg-light-grey);
}
.hpg-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}
.hpg-accordion-trigger:hover .hpg-accordion-q-text {
    color: var(--hpg-red);
}
.hpg-accordion-q-num {
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    color: var(--hpg-red);
    letter-spacing: .1em;
    flex-shrink: 0;
    min-width: 1.8rem;
}
.hpg-accordion-q-text {
    flex: 1;
    font-family: var(--hpg-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.35;
    transition: color .25s;
}
.hpg-accordion-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--hpg-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hpg-black);
    transition: transform .3s ease, background .3s, border-color .3s;
}
.hpg-accordion-trigger[aria-expanded="true"] .hpg-accordion-icon {
    transform: rotate(180deg);
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    color: var(--hpg-white);
}
.hpg-accordion-panel {
    overflow: hidden;
}
.hpg-accordion-panel[hidden] {
    display: none;
}
.hpg-accordion-answer {
    font-size: .950rem;
    line-height: 1.8;
    color: var(--hpg-dark-grey);
    padding-bottom: 1.5rem;
    padding-left: 2.8rem;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .hpg-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hpg-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hpg-process__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hpg-process__track { display: none; }
    .hpg-process-step--alt {
        flex-direction: row;
        text-align: left;
    }
    .hpg-process-step--alt .hpg-process-step__content {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    :root { --hpg-section: 4.5rem; }

    .hpg-services__grid { grid-template-columns: 1fr; }
    .hpg-why__grid { grid-template-columns: 1fr; }
    .hpg-about__layout { grid-template-columns: 1fr; gap: 3rem; }
    .hpg-about__image-frame { display: none; }
    .hpg-about__image-tag { right: 1rem; }
    .hpg-faq__layout { grid-template-columns: 1fr; gap: 3rem; }
    .hpg-faq__image { display: none; }
    .hpg-hero__scroll-hint { display: none; }

    .hpg-hero__inner {
        padding: 5rem 0 3rem;
    }
    .hpg-hero__actions {
        flex-direction: column;
    }
    .hpg-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hpg-container { padding: 0 1.25rem; }
    .hpg-section-head__title { font-size: 1.8rem; }
    .hpg-hero__heading { font-size: 2.4rem; }
}
/* ================================================================
   ABOUT US PAGE STYLES
   Class prefix: abt-
   Depends on: home-page.css (uses --hpg-* variables & .hpg-container)
   ================================================================ */

/* ── Shared label component ── */
.abt-section-label {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hpg-red);
    margin-bottom: 1rem;
}
.abt-label-dash {
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--hpg-red);
    flex-shrink: 0;
}

/* Reveal */
.abt-company__layout,
.abt-mv-card,
.abt-why-item,
.abt-banner__stats {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.abt-visible {
    opacity: 1 !important;
    transform: none !important;
}
.abt-mv-card:nth-child(3) { transition-delay: .18s; }
.abt-why-item:nth-child(2) { transition-delay: .1s; }
.abt-why-item:nth-child(3) { transition-delay: .2s; }
.abt-why-item:nth-child(4) { transition-delay: .3s; }

/* ================================================================
   BANNER
   ================================================================ */
.abt-banner {
    position: relative;
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--hpg-black);
    background-image: var(--abt-banner-bg, none);
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}
.abt-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(10,10,10,.55) 0%,
        rgba(10,10,10,.82) 60%,
        rgba(10,10,10,.97) 100%
    );
    z-index: 1;
}

/* Animated vertical lines */
.abt-banner__ruled-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
}
.abt-banner__ruled-lines span {
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,.05) 40%,
        rgba(192,57,43,.15) 100%
    );
}

.abt-banner__inner {
    position: relative;
    z-index: 2;
    padding: 7rem 0 0;
}

/* Breadcrumb */
.abt-banner__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.5rem;
    animation: abt-fade-up .7s ease both;
}
.abt-breadcrumb-sep {
    color: var(--hpg-red);
    font-size: .6rem;
}
.abt-breadcrumb-active {
    color: rgba(255,255,255,.7);
}

/* Title */
.abt-banner__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2.8rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--hpg-white);
    margin-bottom: 1.2rem;
    animation: abt-fade-up .8s .1s ease both;
    /* Unique: split-stroke effect on last word */
    position: relative;
}
.abt-banner__title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.6);
}

.abt-banner__subtitle {
    font-family: var(--hpg-font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin-bottom: 3rem;
    animation: abt-fade-up .8s .2s ease both;
}

/* Corner SVG mark */
.abt-banner__corner-mark {
    position: absolute;
    top: 2rem;
    right: 0;
    opacity: .6;
    animation: abt-fade-in .8s .4s ease both;
}

/* Stats bar */
.abt-banner__bottom-bar {
    position: relative;
    z-index: 3;
    background: var(--hpg-white);
    border-top: 3px solid var(--hpg-red);
    animation: abt-fade-up .8s .35s ease both;
}
.abt-banner__stats {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    padding: 2rem 0;
    gap: 0;
}
.abt-stat {
    text-align: center;
    padding: 0 2rem;
    flex: 1;
}
.abt-stat__num {
    display: block;
    font-family: var(--hpg-font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--hpg-black);
    line-height: 1;
    margin-bottom: .35rem;
}
.abt-stat__num em {
    font-style: normal;
    color: var(--hpg-red);
    font-size: 1.4rem;
}
.abt-stat__label {
    display: block;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
}
.abt-stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--hpg-light-grey);
}

/* ================================================================
   COMPANY
   ================================================================ */
.abt-company {
    padding: var(--hpg-section) 0;
    background: var(--hpg-off-white);
    position: relative;
}
.abt-company::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 38%;
    background: var(--hpg-white);
    z-index: 0;
}
.abt-company .hpg-container {
    position: relative;
    z-index: 1;
}

.abt-company__layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

/* Image column */
.abt-company__img-wrap {
    position: relative;
    display: block;
}
.abt-company__img-bg-block {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 70%;
    height: 70%;
    background: repeating-linear-gradient(
        -45deg,
        var(--hpg-light-grey) 0,
        var(--hpg-light-grey) 1px,
        transparent 1px,
        transparent 9px
    );
    z-index: 0;
}
.abt-company__img-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.abt-company__img-badge {
    position: absolute;
    bottom: 2.5rem;
    right: -2rem;
    z-index: 2;
    background: var(--hpg-black);
    color: var(--hpg-white);
    padding: 1rem 1.4rem;
}
.abt-company__img-badge-inner {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}
.abt-company__img-badge-icon {
    color: var(--hpg-red);
    font-size: .7rem;
}

/* Content column */
.abt-company__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.abt-company__desc {
    font-family: var(--hpg-font-body);
    font-size: .975rem;
    line-height: 1.85;
    color: var(--hpg-dark-grey);
    margin-bottom: 2rem;
}
.abt-company__desc p { margin-bottom: 1em; }
.abt-company__desc p:last-child { margin-bottom: 0; }

.abt-company__signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hpg-light-grey);
    opacity: .6;
}

/* ================================================================
   MISSION & VISION
   ================================================================ */
.abt-mv {
    padding: var(--hpg-section) 0;
    background: var(--hpg-black);
    position: relative;
    overflow: hidden;
}

/* Subtle noise overlay */
.abt-mv__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/feColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: .4;
}
.abt-mv .hpg-container {
    position: relative;
    z-index: 1;
}

.abt-mv__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hpg-red);
    margin-bottom: 3rem;
}
.abt-mv__eyebrow .abt-label-dash {
    background: var(--hpg-red);
}

.abt-mv__cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,.08);
}

.abt-mv-card {
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.abt-mv-card--mission {
    background: rgba(255,255,255,.03);
    border-right: 1px solid rgba(255,255,255,.08);
}
.abt-mv-card--vision {
    background: var(--hpg-black);
}
.abt-mv-card--vision:hover {
    background: rgba(255,255,255,.02);
}

/* Corner decoration */
.abt-mv-card__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-left: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.abt-mv-card--mission .abt-mv-card__corner {
    border-color: rgba(192,57,43,.25);
}

/* Tag pill */
.abt-mv-card__tag {
    display: inline-block;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--hpg-red);
    border: 1px solid rgba(192,57,43,.4);
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
}

.abt-mv-card__heading {
    font-family: var(--hpg-font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--hpg-white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.abt-mv-card__body {
    font-size: .925rem;
    line-height: 1.85;
    color: rgba(255,255,255,.5);
}

.abt-mv-card__icon {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    color: rgba(255,255,255,.06);
    transition: color .4s;
}
.abt-mv-card:hover .abt-mv-card__icon {
    color: rgba(192,57,43,.12);
}

/* Central divider gem */
.abt-mv__divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    position: relative;
}
.abt-mv__divider::before,
.abt-mv__divider::after {
    content: '';
    flex: 1;
    width: 1px;
    background: rgba(255,255,255,.08);
}
.abt-mv__divider-gem {
    font-size: .9rem;
    color: var(--hpg-red);
    padding: 1rem 0;
    flex-shrink: 0;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.abt-why {
    padding: var(--hpg-section) 0;
    background: var(--hpg-white);
    position: relative;
}
.abt-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-black) 0, var(--hpg-black) 32px,
        var(--hpg-red) 32px, var(--hpg-red) 34px,
        transparent 34px, transparent 40px
    );
}

.abt-why__head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 2rem 5rem;
    margin-bottom: 4rem;
}
.abt-why__head .abt-section-label {
    white-space: nowrap;
    margin-top: .5rem;
}
.abt-why__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--hpg-black);
}

/* Grid */
.abt-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--hpg-light-grey);
    border-left: 1px solid var(--hpg-light-grey);
}

.abt-why-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 0 1.5rem;
    padding: 2.5rem;
    border-right: 1px solid var(--hpg-light-grey);
    border-bottom: 1px solid var(--hpg-light-grey);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background .3s ease, opacity .6s ease !important;
}
.abt-why-item:hover {
    background: var(--hpg-off-white);
}
.abt-why-item:hover .abt-why-item__alpha {
    color: rgba(192,57,43,.08);
}
.abt-why-item:hover .abt-why-item__arrow {
    color: var(--hpg-red);
    transform: translateX(4px);
}
.abt-why-item:hover .abt-why-item__num {
    color: var(--hpg-red);
}

.abt-why-item__alpha {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    font-family: var(--hpg-font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0,0,0,.04);
    line-height: 1;
    transition: color .3s;
    user-select: none;
}
.abt-why-item__num {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    color: var(--hpg-mid-grey);
    margin-bottom: .6rem;
    transition: color .3s;
}
.abt-why-item__body {
    grid-column: 2;
    grid-row: 2;
}
.abt-why-item__title {
    font-family: var(--hpg-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin-bottom: .6rem;
    line-height: 1.3;
}
.abt-why-item__desc {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--hpg-dark-grey);
}
.abt-why-item__arrow {
    grid-column: 3;
    grid-row: 1;
    color: var(--hpg-light-grey);
    transition: color .3s, transform .3s;
    align-self: start;
    margin-top: .2rem;
}

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes abt-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes abt-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .abt-company__layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .abt-company::after { display: none; }
    .abt-mv__cards {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .abt-mv__divider {
        width: 100%;
        flex-direction: row;
        height: 40px;
        padding: 0 2rem;
    }
    .abt-mv__divider::before,
    .abt-mv__divider::after {
        flex: 1;
        width: auto;
        height: 1px;
    }
    .abt-mv-card--mission {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .abt-why__head {
        grid-template-columns: 1fr;
        gap: .5rem;
    }
}

@media (max-width: 768px) {
    .abt-company__layout {
        grid-template-columns: 1fr;
    }
    .abt-company__img-badge {
        right: 1rem;
    }
    .abt-banner__stats {
        grid-template-columns: repeat(3, auto);
        row-gap: 1.5rem;
    }
    .abt-stat-divider:nth-child(4),
    .abt-stat-divider:nth-child(6) {
        display: none;
    }
    .abt-why__grid {
        grid-template-columns: 1fr;
    }
    .abt-mv-card {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .abt-banner__stats {
        grid-template-columns: 1fr 1fr;
    }
    .abt-stat-divider { display: none; }
    .abt-why-item__alpha { font-size: 3.5rem; }
}
/* ================================================================
   APPLIANCE ERROR GUIDE — Industrial / Utility Editorial Theme
   Class prefix: erg-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

/* ── Dashicons dep (WordPress loads this by default) ── */
/* If not enqueued, add: wp_enqueue_style('dashicons'); */

/* ================================================================
   SHARED / PAGE RESET
   ================================================================ */
.erg-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-off-white);
    overflow-x: hidden;
}
.erg-main *, .erg-main *::before, .erg-main *::after {
    box-sizing: border-box;
}

/* ================================================================
   PAGE HEADER
   ================================================================ */
.erg-header {
    position: relative;
    background: var(--hpg-black);
    padding: 5rem 0 4rem;
    overflow: hidden;
}

/* Animated crosshatch grid decoration */
.erg-header__grid-deco {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    pointer-events: none;
    z-index: 0;
}
.erg-header__grid-deco span {
    border-right: 1px solid rgba(255,255,255,.04);
    animation: erg-grid-breathe 5s ease-in-out infinite;
}
.erg-header__grid-deco span:nth-child(odd)  { animation-delay: .5s; }
.erg-header__grid-deco span:nth-child(3n)   { animation-delay: 1.2s; }
.erg-header__grid-deco span:nth-child(4n)   { animation-delay: 1.8s; }
@keyframes erg-grid-breathe {
    0%,100% { opacity: .5; }
    50%      { opacity: 1; }
}

.erg-header__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

/* Pill badge */
.erg-header__pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: erg-fade-up .7s ease both;
}
.erg-pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hpg-red);
    animation: erg-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes erg-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.6); }
    50%      { box-shadow: 0 0 0 7px rgba(192,57,43,0); }
}

.erg-header__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: erg-fade-up .8s .1s ease both;
}
.erg-header__sub {
    font-size: .975rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
    animation: erg-fade-up .8s .18s ease both;
    max-width: 480px;
    line-height: 1.7;
}

/* Error alerts strip */
.erg-alerts {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: erg-fade-up .8s .26s ease both;
}
.erg-alerts__label {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hpg-red);
    white-space: nowrap;
    margin-top: .35rem;
    flex-shrink: 0;
}

/* Error code chips — expand on hover */
.erg-alerts__codes {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.erg-alert-chip {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(192,57,43,.12);
    border: 1px solid rgba(192,57,43,.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: default;
    max-width: 120px;
    transition: max-width .4s ease, border-color .3s;
}
.erg-alert-chip:hover {
    max-width: 420px;
    border-color: var(--hpg-red);
}
.erg-alert-chip__code {
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--hpg-red);
    padding: .35rem .75rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.erg-alert-chip__desc {
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    padding: .35rem .75rem .35rem 0;
    white-space: nowrap;
    border-left: 1px solid rgba(192,57,43,.25);
    opacity: 0;
    transition: opacity .3s .15s;
    max-width: 0;
    overflow: hidden;
}
.erg-alert-chip:hover .erg-alert-chip__desc {
    opacity: 1;
    max-width: 300px;
}

@keyframes erg-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   APPLIANCES SECTION
   ================================================================ */
.erg-appliances {
    padding: 4rem 0 6rem;
    position: relative;
}

/* Subtle ruled top border matching site style */
.erg-appliances::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-black) 0, var(--hpg-black) 32px,
        var(--hpg-red)   32px, var(--hpg-red) 34px,
        transparent 34px, transparent 40px
    );
    margin-bottom: 3rem;
}

/* Filter bar */
.erg-filter-bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.erg-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .55rem 1.1rem;
    border: 1.5px solid var(--hpg-light-grey);
    background: var(--hpg-white);
    color: var(--hpg-dark-grey);
    cursor: pointer;
    border-radius: 3px;
    transition: all .25s ease;
}
.erg-filter-btn--active,
.erg-filter-btn:hover {
    background: var(--hpg-black);
    border-color: var(--hpg-black);
    color: var(--hpg-white);
}
.erg-filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--hpg-red);
    color: var(--hpg-white);
    font-size: .6rem;
    line-height: 1;
}

/* ── Cards Grid ── */
.erg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--hpg-light-grey);
    border: 1.5px solid var(--hpg-light-grey);
    overflow: hidden;
}

/* ── Individual Card ── */
.erg-card {
    background: var(--hpg-white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .5s ease,
        transform .5s ease,
        background .3s ease,
        box-shadow .3s ease;
    cursor: default;
}
.erg-card--visible {
    opacity: 1;
    transform: none;
}
.erg-card:hover {
    background: var(--hpg-off-white);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    z-index: 2;
}

/* Corner decoration — grows on hover */
.erg-card__corner-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 48px 48px;
    border-color: transparent transparent var(--hpg-red) transparent;
    opacity: 0;
    transition: opacity .3s ease;
}
.erg-card:hover .erg-card__corner-deco {
    opacity: 1;
}

/* Card top row */
.erg-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
    gap: .5rem;
}
.erg-card__num {
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .14em;
    color: var(--hpg-mid-grey);
    line-height: 1;
    padding-top: 2px;
}

/* Dashicon wrapper */
.erg-card__icon-wrap {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--hpg-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hpg-white);
    transition: background .3s, border-color .3s, transform .35s ease;
    flex-shrink: 0;
}
.erg-card:hover .erg-card__icon-wrap {
    background: var(--hpg-black);
    border-color: var(--hpg-black);
    transform: rotate(8deg) scale(1.08);
}
.erg-card__dashicon {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
    color: var(--hpg-black);
    transition: color .3s;
}
.erg-card:hover .erg-card__dashicon {
    color: var(--hpg-white);
}

/* Status badge */
.erg-card__status {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--hpg-font-mono);
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    white-space: nowrap;
    padding-top: 2px;
}
.erg-status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: erg-status-pulse 3s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes erg-status-pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: .4; }
}

/* Card body */
.erg-card__body {
    padding: 1.5rem 1.5rem 1rem;
    flex: 1;
}
.erg-card__name {
    font-family: var(--hpg-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.3;
    margin-bottom: .6rem;
    transition: color .3s;
}
.erg-card:hover .erg-card__name {
    color: var(--hpg-black);
}
.erg-card__detail {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--hpg-dark-grey);

    /* Clamp to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card footer / CTA */
.erg-card__footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}
.erg-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-black);
    border-top: 1px solid var(--hpg-light-grey);
    padding-top: 1rem;
    transition: color .25s, border-color .25s;
}
.erg-card__cta:hover {
    color: var(--hpg-red);
    border-color: var(--hpg-red);
}
.erg-card__cta--disabled {
    opacity: .35;
    cursor: not-allowed;
}
.erg-card__cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    transition: background .25s, transform .3s;
    flex-shrink: 0;
}
.erg-card__cta:hover .erg-card__cta-arrow {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    color: var(--hpg-white);
    transform: translateX(4px);
}

/* ── Empty state ── */
.erg-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--hpg-mid-grey);
}
.erg-empty__icon {
    margin: 0 auto 1.25rem;
    width: 72px;
    height: 72px;
    border: 1.5px solid var(--hpg-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.erg-empty p {
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .erg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .erg-grid { grid-template-columns: repeat(2, 1fr); }
    .erg-alerts { flex-direction: column; gap: .75rem; }
    .erg-alert-chip { max-width: none; }
    .erg-alert-chip__desc { opacity: 1; max-width: 300px; }
}
@media (max-width: 480px) {
    .erg-grid { grid-template-columns: 1fr; }
    .erg-header { padding: 3.5rem 0 3rem; }
    .erg-header__title { font-size: 2rem; }
}

.error-guide-section {
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
            padding: 2.5rem 2rem 3rem 2rem;
            transition: all 0.2s ease;
        }

        /* subtle header / section intro (optional, but consistent with many ACF blocks) */
        .section-badge {
            display: inline-block;
            background: #fee2e2;   /* light red tint */
            color: #b91c1c;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.25rem 0.9rem;
            border-radius: 40px;
            letter-spacing: -0.2px;
            margin-bottom: 1.25rem;
        }

        .section-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .section-sub {
            font-size: 1rem;
            color: #475569;
            margin-bottom: 2.5rem;
            border-left: 3px solid #dc2626;
            padding-left: 1rem;
            font-weight: 400;
        }

        /* 4-column grid for error steps */
        .errors-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.8rem;
        }

        /* error card styling */
        .error-card {
            background: #ffffff;
            border-radius: 28px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f6;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .error-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
            border-color: #e2e8f0;
        }

        /* card header with red accent */
        .card-header {
            padding: 1.5rem 1.5rem 0.75rem 1.5rem;
            border-bottom: 2px solid #fee2e2;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .error-icon {
            background: #fef2f2;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px;
            color: #dc2626;
            font-size: 1.5rem;
        }

        .error-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #0f172a;
            letter-spacing: -0.3px;
            margin: 0;
            line-height: 1.3;
        }

        .error-description {
            padding: 1.25rem 1.5rem 1.5rem 1.5rem;
            color: #334155;
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 400;
            flex-grow: 1;
        }

        /* "Safety / urgency" mini pill & extra details to match screenshot style */
        .safety-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f8fafc;
            border-radius: 40px;
            padding: 0.3rem 1rem;
            font-size: 0.7rem;
            font-weight: 600;
            color: #1e293b;
            margin-top: 0.5rem;
            width: fit-content;
            border: 1px solid #e2e8f0;
        }

        .safety-badge i {
            font-size: 0.75rem;
        }

        .severity-high {
            background: #fee2e2;
            color: #b91c1c;
            border-color: #fecaca;
        }

        .severity-medium {
            background: #fff3e3;
            color: #b45309;
            border-color: #ffe4bf;
        }

        .severity-low {
            background: #e6f7ec;
            color: #15803d;
            border-color: #bbf7d0;
        }

        /* DIY / professional actions (red buttons/highlights only where needed) */
        .action-buttons {
            padding: 0 1.5rem 1.5rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            border-top: 1px solid #f1f5f9;
            margin-top: 0.25rem;
            padding-top: 1.25rem;
        }

        .btn-diy {
            background: white;
            border: 1px solid #cbd5e1;
            border-radius: 40px;
            padding: 0.5rem 1.1rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: #1e293b;
            cursor: default;
            transition: 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-diy i {
            color: #3b82f6;
            font-size: 0.7rem;
        }

        .btn-professional {
            background: #dc2626;
            border: none;
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            cursor: default;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .btn-professional i {
            font-size: 0.7rem;
        }

        .note-text {
            font-size: 0.7rem;
            color: #64748b;
            margin-top: 6px;
            width: 100%;
        }

        /* for responsive grid: tablet and desktop */
        @media (min-width: 640px) {
            .errors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .errors-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .section-title {
                font-size: 2.2rem;
            }
        }

        /* subtle red accent on certain interactive (just for design consistency) */
        .accent-red-dot {
            color: #dc2626;
        }
		
		
		/* Error Guide Section */
.error-guide-section {
    background: #ffffff;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-badge i {
    margin-right: 6px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-description {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

/* Error Cards Grid */
.errors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Individual Error Card */
.error-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.error-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.card-header {
    padding: 20px 20px 12px 20px;
    border-bottom: 2px solid #fee2e2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 20px;
}

.error-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

/* Error Description */
.error-description {
    padding: 16px 20px;
}

.error-description p {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #fecaca;
}

.safety-badge i {
    font-size: 11px;
}

/* Action Buttons */
.action-buttons {
    padding: 16px 20px 20px 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-diy {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-diy i {
    color: #3b82f6;
    margin-right: 8px;
}

.btn-diy:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-professional {
    background: #dc2626;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-professional i {
    margin-right: 8px;
}

.btn-professional:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

/* Section Footer */
.section-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #f0f2f5;
}

.section-footer p {
    font-size: 13px;
    color: #64748b;
}

.section-footer i {
    color: #dc2626;
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .errors-grid {
        gap: 16px;
    }
    
    .card-header {
        padding: 16px 16px 10px 16px;
    }
    
    .error-title {
        font-size: 16px;
    }
    
    .error-description {
        padding: 12px 16px;
    }
    
    .action-buttons {
        padding: 12px 16px 16px 16px;
    }
}
/* Locations Section */
.locations-section {
    background: #ffffff;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Section Header */
.locations-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.locations-section .section-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.locations-section .section-badge i {
    margin-right: 6px;
}

.locations-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.locations-section .section-description {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Location Card */
.location-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #fee2e2;
}

/* Location Icon */
.location-icon {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    background: #dc2626;
}

.location-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #dc2626;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon .dashicons {
    color: #ffffff;
}

.location-icon i {
    font-size: 40px;
    color: #dc2626;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon i {
    color: #ffffff;
}

/* Location Content */
.location-content {
    flex: 1;
}

.location-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.location-description {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Location Link */
.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
    border: 1px solid #fee2e2;
}

.location-link:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    gap: 12px;
}

.location-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.location-link:hover i {
    transform: translateX(3px);
}

/* No Locations Message */
.no-locations {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 16px;
    color: #64748b;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .locations-section {
        padding: 40px 16px;
    }
    
    .locations-section .section-title {
        font-size: 28px;
    }
    
    .locations-section .section-description {
        font-size: 16px;
    }
    
    .locations-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 24px 20px;
    }
    
    .location-icon {
        width: 70px;
        height: 70px;
    }
    
    .location-icon .dashicons,
    .location-icon i {
        font-size: 32px;
        width: 32px;
        height: 32px;
    }
    
    .location-title {
        font-size: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ================================================================
   SERVICE DETAIL PAGE
   Class prefix: sdt-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

/* ================================================================
   BASE
   ================================================================ */
.sdt-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-white);
    overflow-x: hidden;
}
.sdt-main *, .sdt-main *::before, .sdt-main *::after {
    box-sizing: border-box;
}

/* Shared label */
.sdt-section-label {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hpg-red);
    margin-bottom: .9rem;
}
.sdt-label-line {
    display: inline-block;
    width: 1.8rem;
    height: 1px;
    background: var(--hpg-red);
    flex-shrink: 0;
}

/* ================================================================
   TOP READING PROGRESS BAR
   ================================================================ */
.sdt-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hpg-light-grey);
    z-index: 9999;
}
.sdt-topbar__fill {
    height: 100%;
    width: 0%;
    background: var(--hpg-red);
    transition: width .1s linear;
}

/* ================================================================
   BANNER
   ================================================================ */
.sdt-banner {
    position: relative;
    background: var(--hpg-black);
    padding: 5.5rem 0 0;
    overflow: hidden;
}

/* Vertical ruled lines */
.sdt-banner__lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
    z-index: 0;
}
.sdt-banner__lines span {
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,.05) 40%,
        rgba(255,255,255,.03)
    );
}

.sdt-banner__inner {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.sdt-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.sdt-breadcrumb a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: color .2s;
}
.sdt-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.sdt-breadcrumb__sep { color: rgba(255,255,255,.18); }
.sdt-breadcrumb [aria-current="page"] { color: rgba(255,255,255,.9); }

/* Banner content row */
.sdt-banner__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: flex-end;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Tag pill */
.sdt-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: .3rem .85rem;
    margin-bottom: 1.2rem;
    animation: sdt-fade-up .7s ease both;
}
.sdt-tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hpg-red);
    flex-shrink: 0;
}

.sdt-banner__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: sdt-fade-up .8s .08s ease both;
}
.sdt-banner__excerpt {
    font-size: .975rem;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
    max-width: 580px;
    animation: sdt-fade-up .8s .14s ease both;
}

/* Meta blocks (right side) */
.sdt-banner__meta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-self: flex-end;
    padding-bottom: .25rem;
    animation: sdt-fade-up .8s .2s ease both;
}
.sdt-meta-block {
    text-align: right;
    border-right: 2px solid rgba(255,255,255,.08);
    padding-right: 1rem;
}
.sdt-meta-block:first-child { border-color: var(--hpg-red); }
.sdt-meta-block__label {
    display: block;
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: .25rem;
}
.sdt-meta-block__val {
    display: block;
    font-family: var(--hpg-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--hpg-white);
    line-height: 1;
}

@keyframes sdt-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   BODY LAYOUT  (2-column: sidebar + article)
   ================================================================ */
.sdt-body {
    padding: 4rem 0 6rem;
    background: var(--hpg-white);
}
.sdt-body__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
}

/* ================================================================
   SIDEBAR
   ================================================================ */
.sdt-sidebar {
    position: sticky;
    top: 24px;
}
.sdt-sidebar__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    top: 24px; /* overridden by JS for admin bar */
}

/* Table of Contents */
.sdt-toc {
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
    border-left: 3px solid var(--hpg-black);
    padding: 1.4rem;
}
.sdt-toc__header {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--hpg-black);
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--hpg-light-grey);
}
.sdt-toc__nav {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.sdt-toc__link {
    display: block;
    font-family: var(--hpg-font-body);
    font-size: .82rem;
    line-height: 1.45;
    color: var(--hpg-dark-grey);
    text-decoration: none;
    padding: .4rem .5rem;
    border-left: 2px solid transparent;
    border-radius: 0 3px 3px 0;
    transition: color .2s, border-color .2s, background .2s, padding-left .2s;
}
.sdt-toc__link:hover {
    color: var(--hpg-black);
    border-left-color: var(--hpg-light-grey);
    padding-left: .8rem;
}
.sdt-toc__link--active {
    color: var(--hpg-red) !important;
    border-left-color: var(--hpg-red) !important;
    background: rgba(192,57,43,.04);
    padding-left: .8rem !important;
    font-weight: 500;
}
.sdt-toc__link--sub {
    padding-left: 1rem;
    font-size: .78rem;
    color: var(--hpg-mid-grey);
}
.sdt-toc__link--sub.sdt-toc__link--active {
    padding-left: 1.3rem !important;
}
.sdt-toc__empty {
    font-size: .8rem;
    color: var(--hpg-mid-grey);
    padding: .25rem .5rem;
}

/* Progress */
.sdt-sidebar__progress {
    padding: 1.1rem 1.2rem;
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
}
.sdt-progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    margin-bottom: .65rem;
}
#sdt-progress-pct { color: var(--hpg-red); font-weight: 500; }
.sdt-progress-bar {
    height: 3px;
    background: var(--hpg-light-grey);
    border-radius: 2px;
    overflow: hidden;
}
.sdt-progress-bar__fill {
    height: 100%;
    width: 0%;
    background: var(--hpg-red);
    border-radius: 2px;
    transition: width .15s linear;
}

/* Sidebar CTA */
.sdt-sidebar__cta {
    padding: 1.4rem;
    background: var(--hpg-black);
    position: relative;
    overflow: hidden;
}
.sdt-sidebar__cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent var(--hpg-red) transparent;
}
.sdt-sidebar__cta-text {
    font-family: var(--hpg-font-body);
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.sdt-sidebar__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-white);
    border: 1px solid rgba(255,255,255,.25);
    padding: .6rem 1rem;
    transition: background .25s, border-color .25s, gap .25s;
    width: 100%;
    justify-content: space-between;
}
.sdt-sidebar__cta-btn:hover {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    gap: .9rem;
}

/* ================================================================
   ARTICLE / PROSE
   ================================================================ */
.sdt-article {
    min-width: 0; /* prevent grid overflow */
}

/* Long-form content typography */
.sdt-prose {
    font-family: var(--hpg-font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--hpg-dark-grey);
}

/* Drop cap on first paragraph */
.sdt-prose > p:first-of-type::first-letter {
    float: left;
    font-family: var(--hpg-font-display);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: .78;
    margin: .08em .14em 0 0;
    color: var(--hpg-black);
    padding: .05em .1em;
    border: 2px solid var(--hpg-black);
}

.sdt-prose p { margin-bottom: 1.5em; }
.sdt-prose p:last-child { margin-bottom: 0; }

.sdt-prose h2 {
    font-family: var(--hpg-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.2;
    margin: 2.5em 0 .75em;
    padding-bottom: .6em;
    border-bottom: 1px solid var(--hpg-light-grey);
    position: relative;
}
.sdt-prose h2::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 3rem;
    height: 2px;
    background: var(--hpg-red);
}

.sdt-prose h3 {
    font-family: var(--hpg-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin: 2em 0 .6em;
    line-height: 1.3;
}

.sdt-prose ul,
.sdt-prose ol {
    margin: 0 0 1.5em 0;
    padding-left: 0;
    list-style: none;
}
.sdt-prose ul li,
.sdt-prose ol li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: .55em;
    font-size: 1rem;
    line-height: 1.7;
}
.sdt-prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hpg-red);
}
.sdt-prose ol {
    counter-reset: sdt-ol;
}
.sdt-prose ol li {
    counter-increment: sdt-ol;
}
.sdt-prose ol li::before {
    content: counter(sdt-ol, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    color: var(--hpg-red);
    font-weight: 500;
    top: .3em;
}

.sdt-prose strong { color: var(--hpg-black); font-weight: 600; }
.sdt-prose em     { font-style: italic; color: var(--hpg-dark-grey); }
.sdt-prose a {
    color: var(--hpg-black);
    text-decoration: underline;
    text-decoration-color: var(--hpg-red);
    text-underline-offset: 3px;
    transition: color .2s;
}
.sdt-prose a:hover { color: var(--hpg-red); }

.sdt-prose blockquote {
    margin: 2em 0;
    padding: 1.5rem 2rem;
    background: var(--hpg-off-white);
    border-left: 4px solid var(--hpg-red);
    font-family: var(--hpg-font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--hpg-black);
    line-height: 1.6;
    position: relative;
}
.sdt-prose blockquote::before {
    content: '\201C';
    position: absolute;
    top: -.3em;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--hpg-red);
    opacity: .25;
    font-style: normal;
    line-height: 1;
}

.sdt-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: .9rem;
}
.sdt-prose th {
    background: var(--hpg-black);
    color: var(--hpg-white);
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .8rem 1rem;
    text-align: left;
}
.sdt-prose td {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--hpg-light-grey);
    color: var(--hpg-dark-grey);
    vertical-align: top;
}
.sdt-prose tr:hover td { background: var(--hpg-off-white); }

.sdt-prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2em 0;
}

/* Inline code */
.sdt-prose code {
    font-family: var(--hpg-font-mono);
    font-size: .85em;
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
    padding: .15em .4em;
    border-radius: 3px;
    color: var(--hpg-red);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.sdt-faqs {
    margin-top: 4rem;
    padding-top: 3.5rem;
    border-top: 2px solid var(--hpg-light-grey);
    position: relative;
}
.sdt-faqs::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 5rem;
    height: 2px;
    background: var(--hpg-red);
}

.sdt-faqs__header {
    margin-bottom: 2.5rem;
}
.sdt-faqs__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.2;
}

/* Accordion */
.sdt-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hpg-light-grey);
}
.sdt-accordion-item {
    border-bottom: 1px solid var(--hpg-light-grey);
    position: relative;
    transition: background .25s;
}
.sdt-accordion-item--open {
    background: var(--hpg-off-white);
}
.sdt-accordion-item--open::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--hpg-red);
}

.sdt-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.4rem 1.2rem 1.4rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}
.sdt-accordion-trigger__num {
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    color: var(--hpg-red);
    flex-shrink: 0;
    min-width: 2rem;
}
.sdt-accordion-trigger__text {
    flex: 1;
    font-family: var(--hpg-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.35;
    transition: color .2s;
}
.sdt-accordion-trigger:hover .sdt-accordion-trigger__text {
    color: var(--hpg-red);
}
.sdt-accordion-trigger__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--hpg-light-grey);
    border-radius: 50%;
    color: var(--hpg-black);
    flex-shrink: 0;
    transition: background .25s, border-color .25s, color .25s;
}
.sdt-accordion-trigger[aria-expanded="true"] .sdt-accordion-trigger__icon {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    color: var(--hpg-white);
}
/* Rotate the vertical path to make + become − */
.sdt-accordion-trigger[aria-expanded="true"] .sdt-icon-v {
    transform-origin: center;
    transform: rotate(90deg);
    opacity: 0;
    transition: opacity .2s, transform .2s;
}
.sdt-icon-v {
    transition: opacity .2s, transform .2s;
}

.sdt-accordion-panel[hidden] { display: none; }
.sdt-accordion-panel__inner {
    padding: 0 1.4rem 1.6rem 3.5rem;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--hpg-dark-grey);
}
.sdt-accordion-panel__inner p { margin-bottom: .8em; }
.sdt-accordion-panel__inner p:last-child { margin-bottom: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .sdt-body__layout {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sdt-body__layout {
        grid-template-columns: 1fr;
    }
    .sdt-sidebar {
        position: static;
        order: 2; /* push sidebar below article on mobile */
    }
    .sdt-article { order: 1; }

    .sdt-banner__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sdt-banner__meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .sdt-meta-block { text-align: left; }

    .sdt-prose > p:first-of-type::first-letter {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .sdt-banner { padding-top: 4rem; }
    .sdt-banner__title { font-size: 1.9rem; }
    .sdt-accordion-panel__inner { padding-left: 1.4rem; }
}
/* ================================================================
   LOCATION DETAIL PAGE
   Class prefix: lcd-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

/* ================================================================
   BASE
   ================================================================ */
.lcd-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-white);
    overflow-x: hidden;
}
.lcd-main *, .lcd-main *::before, .lcd-main *::after {
    box-sizing: border-box;
}

/* Reveal utility */
.lcd-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}
.lcd-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ================================================================
   TOP PROGRESS BAR
   ================================================================ */
.lcd-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(0,0,0,.08);
    z-index: 9999;
    pointer-events: none;
}
.lcd-topbar__fill {
    height: 100%;
    width: 0%;
    background: var(--hpg-red);
    transition: width .12s linear;
}

/* ================================================================
   HERO
   ================================================================ */
.lcd-hero {
    position: relative;
    background: var(--hpg-black);
    padding: 5.5rem 0 0;
    overflow: hidden;
}

/* ── Map dot-grid background ── */
.lcd-hero__mapgrid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: .35;
}
.lcd-hero__mapgrid-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 20px 24px;
}
.lcd-mapgrid-row {
    display: flex;
    gap: 28px;
}
.lcd-mapgrid-row span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
}
/* Animate a few dots red */
.lcd-mapgrid-row:nth-child(3) span:nth-child(7),
.lcd-mapgrid-row:nth-child(5) span:nth-child(12),
.lcd-mapgrid-row:nth-child(8) span:nth-child(4),
.lcd-mapgrid-row:nth-child(10) span:nth-child(16) {
    background: var(--hpg-red);
    animation: lcd-dot-pulse 3s ease-in-out infinite;
    width: 5px;
    height: 5px;
    margin: -1px;
}
.lcd-mapgrid-row:nth-child(5) span:nth-child(12) { animation-delay: 1s; }
.lcd-mapgrid-row:nth-child(8) span:nth-child(4)  { animation-delay: 2s; }
.lcd-mapgrid-row:nth-child(10) span:nth-child(16) { animation-delay: .5s; }
@keyframes lcd-dot-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.6); }
    50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

/* ── Location pin decoration ── */
.lcd-hero__pin {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    color: rgba(255,255,255,.06);
    z-index: 1;
    animation: lcd-pin-float 4s ease-in-out infinite;
}
@keyframes lcd-pin-float {
    0%,100% { transform: translateY(-50%); }
    50%      { transform: translateY(calc(-50% - 12px)); }
}

.lcd-hero__inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.lcd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
    animation: lcd-fade-up .7s ease both;
}
.lcd-breadcrumb a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: color .2s;
}
.lcd-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.lcd-breadcrumb [aria-current="page"] { color: rgba(255,255,255,.9); }
.lcd-breadcrumb svg { color: rgba(255,255,255,.2); }

/* Hero body */
.lcd-hero__body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: end;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Eyebrow */
.lcd-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.1rem;
    animation: lcd-fade-up .75s .05s ease both;
}
.lcd-eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hpg-red);
    animation: lcd-dot-pulse 2.5s ease-in-out infinite;
}
.lcd-hero__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1.08;
    margin-bottom: 1rem;
    animation: lcd-fade-up .8s .1s ease both;
}
.lcd-hero__excerpt {
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(255,255,255,.9);
    max-width: 520px;
    margin-bottom: 2rem;
    animation: lcd-fade-up .8s .16s ease both;
}

/* Hero buttons */
.lcd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    animation: lcd-fade-up .8s .22s ease both;
}
.lcd-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--hpg-font-mono);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .8rem 1.6rem;
    border-radius: 3px;
    transition: all .28s ease;
}
.lcd-btn--primary {
    background: var(--hpg-red);
    color: var(--hpg-white);
    border: 2px solid var(--hpg-red);
}
.lcd-btn--primary:hover {
    background: var(--hpg-red-dark, #96281b);
    border-color: var(--hpg-red-dark, #96281b);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192,57,43,.3);
}
.lcd-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,.7);
    border: 2px solid rgba(255,255,255,.2);
}
.lcd-btn--ghost:hover {
    border-color: rgba(255,255,255,.5);
    color: var(--hpg-white);
}

/* ── Stats panel (right) ── */
.lcd-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,.08);
    animation: lcd-fade-up .8s .25s ease both;
}
.lcd-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .25s;
}
.lcd-stat:last-child { border-bottom: none; }
.lcd-stat:hover { background: rgba(255,255,255,.04); }
.lcd-stat__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    color: var(--hpg-red);
    flex-shrink: 0;
}
.lcd-stat__body {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.lcd-stat__num {
    font-family: var(--hpg-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hpg-white);
    line-height: 1.2;
}
.lcd-stat__label {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}

@keyframes lcd-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* ================================================================
   CONTENT SECTION
   ================================================================ */
.lcd-content {
    padding: 4rem 0 6rem;
    background: var(--hpg-white);
}
.lcd-content::before {
    content: '';
    display: block;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-black) 0, var(--hpg-black) 32px,
        var(--hpg-red)   32px, var(--hpg-red) 34px,
        transparent 34px, transparent 40px
    );
    margin-bottom: 4rem;
}
.lcd-content__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

/* ================================================================
   ARTICLE PROSE
   ================================================================ */
.lcd-article { min-width: 0; }

.lcd-prose {
    font-family: var(--hpg-font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--hpg-dark-grey);
}

/* Drop cap */
.lcd-prose > p:first-of-type::first-letter {
    float: left;
    font-family: var(--hpg-font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: .82;
    margin: .06em .14em 0 0;
    color: var(--hpg-white);
    background: var(--hpg-black);
    padding: .1em .18em;
    border-bottom: 3px solid var(--hpg-red);
}

.lcd-prose p { margin-bottom: 1.6em; }
.lcd-prose p:last-child { margin-bottom: 0; }

.lcd-prose h2 {
    font-family: var(--hpg-font-display);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.2;
    margin: 2.8em 0 .7em;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.lcd-prose h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: var(--hpg-red);
    border-radius: 2px;
    flex-shrink: 0;
}

.lcd-prose h3 {
    font-family: var(--hpg-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin: 2em 0 .55em;
    line-height: 1.3;
}

.lcd-prose ul, .lcd-prose ol {
    margin: 0 0 1.6em 0;
    padding: 0;
    list-style: none;
}
.lcd-prose ul li, .lcd-prose ol li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: .55em;
    font-size: 1rem;
    line-height: 1.7;
}
.lcd-prose ul li::before {
    content: '';
    position: absolute;
    left: 0; top: .65em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--hpg-red);
}
.lcd-prose ol { counter-reset: lcd-ol; }
.lcd-prose ol li { counter-increment: lcd-ol; }
.lcd-prose ol li::before {
    content: counter(lcd-ol, decimal-leading-zero);
    position: absolute;
    left: 0; top: .28em;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    color: var(--hpg-red);
    font-weight: 500;
    letter-spacing: .04em;
}

.lcd-prose strong { color: var(--hpg-black); font-weight: 600; }
.lcd-prose a {
    color: var(--hpg-black);
    text-decoration: underline;
    text-decoration-color: var(--hpg-red);
    text-underline-offset: 3px;
    transition: color .2s;
}
.lcd-prose a:hover { color: var(--hpg-red); }

.lcd-prose blockquote {
    margin: 2.2em 0;
    padding: 1.4rem 1.8rem 1.4rem 2rem;
    background: var(--hpg-off-white);
    border-left: 4px solid var(--hpg-red);
    font-family: var(--hpg-font-display);
    font-size: 1.08rem;
    font-style: italic;
    color: var(--hpg-black);
    line-height: 1.6;
}

.lcd-prose img {
    width: 100%;
    height: auto;
    display: block;
    margin: 2em 0;
}

/* ================================================================
   SIDEBAR
   ================================================================ */
.lcd-sidebar { min-width: 0; }
.lcd-sidebar__sticky {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Reading progress */
.lcd-sidebar__progress {
    padding: 1rem 1.2rem;
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
}
.lcd-progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--hpg-font-mono);
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    margin-bottom: .6rem;
}
#lcd-pct { color: var(--hpg-red); font-weight: 500; }
.lcd-progress-track {
    height: 3px;
    background: var(--hpg-light-grey);
    overflow: hidden;
    border-radius: 2px;
}
.lcd-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--hpg-red);
    transition: width .12s linear;
    border-radius: 2px;
}

/* ── ZIP Panel ── */
.lcd-zip-panel {
    border: 1px solid var(--hpg-light-grey);
    background: var(--hpg-white);
    overflow: hidden;
}
.lcd-zip-panel__header {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hpg-black);
    background: var(--hpg-black);
    color: var(--hpg-white);
    padding: .85rem 1.1rem;
}
.lcd-zip-panel__header svg { color: var(--hpg-red); flex-shrink: 0; }

/* Search */
.lcd-zip-panel__search {
    position: relative;
    border-bottom: 1px solid var(--hpg-light-grey);
}
.lcd-zip-search {
    width: 100%;
    padding: .7rem 2.2rem .7rem .9rem;
    font-family: var(--hpg-font-mono);
    font-size: .78rem;
    border: none;
    background: var(--hpg-off-white);
    color: var(--hpg-black);
    outline: none;
    letter-spacing: .06em;
    transition: background .2s;
}
.lcd-zip-search::placeholder { color: var(--hpg-mid-grey); }
.lcd-zip-search:focus { background: var(--hpg-white); }
.lcd-zip-search-icon {
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hpg-mid-grey);
    pointer-events: none;
}

/* ZIP tag grid */
.lcd-zip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding: .9rem;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--hpg-light-grey) transparent;
}
.lcd-zip-list::-webkit-scrollbar { width: 4px; }
.lcd-zip-list::-webkit-scrollbar-track { background: transparent; }
.lcd-zip-list::-webkit-scrollbar-thumb { background: var(--hpg-light-grey); border-radius: 2px; }

.lcd-zip-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .08em;
    color: var(--hpg-dark-grey);
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
    padding: .3rem .65rem;
    border-radius: 3px;
    transition: background .2s, border-color .2s, color .2s;
    cursor: default;
}
.lcd-zip-tag svg { color: var(--hpg-light-grey); flex-shrink: 0; transition: color .2s; }
.lcd-zip-tag:hover {
    background: var(--hpg-black);
    border-color: var(--hpg-black);
    color: var(--hpg-white);
}
.lcd-zip-tag:hover svg { color: var(--hpg-red); }

.lcd-zip-panel__footer {
    padding: .6rem 1rem;
    background: var(--hpg-off-white);
    border-top: 1px solid var(--hpg-light-grey);
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    text-align: right;
}
#lcd-zip-count { color: var(--hpg-red); font-weight: 600; }

/* ── Sidebar CTA ── */
.lcd-sidebar-cta {
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
    border-top: 3px solid var(--hpg-red);
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
}
.lcd-sidebar-cta::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 0 36px 36px;
    border-color: transparent transparent var(--hpg-red) transparent;
    opacity: .3;
}
.lcd-sidebar-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--hpg-light-grey);
    color: var(--hpg-red);
    margin-bottom: 1rem;
}
.lcd-sidebar-cta__heading {
    font-family: var(--hpg-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin-bottom: .5rem;
    line-height: 1.3;
}
.lcd-sidebar-cta__body {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--hpg-dark-grey);
    margin-bottom: 1.2rem;
}
.lcd-sidebar-cta__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-white);
    background: var(--hpg-black);
    padding: .7rem 1rem;
    transition: background .25s, gap .25s;
    gap: .5rem;
}
.lcd-sidebar-cta__btn:hover {
    background: var(--hpg-red);
    gap: .9rem;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .lcd-hero__body,
    .lcd-content__layout {
        grid-template-columns: 1fr 260px;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .lcd-hero__body,
    .lcd-content__layout {
        grid-template-columns: 1fr;
    }
    .lcd-hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        border: none;
        gap: .6rem;
    }
    .lcd-stat {
        flex: 1 1 140px;
        border: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
    }
    .lcd-sidebar { order: 2; }
    .lcd-article { order: 1; }
    .lcd-sidebar__sticky { position: static; }
    .lcd-hero__pin { display: none; }
    .lcd-hero__actions { flex-direction: column; }
    .lcd-btn { justify-content: center; }
}

@media (max-width: 480px) {
    .lcd-hero { padding-top: 4rem; }
    .lcd-hero__title { font-size: 2rem; }
    .lcd-hero__stats { display: none; } /* hide on very small */
    .lcd-prose > p:first-of-type::first-letter { font-size: 3rem; }
}
/* ================================================================
   SAFETY RECALLS PAGE
   Class prefix: rcl-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

/* ================================================================
   BASE
   ================================================================ */
.rcl-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-off-white);
    overflow-x: hidden;
}
.rcl-main *, .rcl-main *::before, .rcl-main *::after {
    box-sizing: border-box;
}

/* ================================================================
   BANNER
   ================================================================ */
.rcl-banner {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--hpg-black);
    background-image: var(--rcl-banner-bg, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 0;
}

/* Dark overlay */
.rcl-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,10,10,.88) 0%,
        rgba(10,10,10,.72) 45%,
        rgba(10,10,10,.95) 100%
    );
    z-index: 1;
}

/* Warning hazard stripe — very subtle at top */
.rcl-banner__hazard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-red)   0px,
        var(--hpg-red)   24px,
        var(--hpg-black) 24px,
        var(--hpg-black) 48px
    );
    z-index: 3;
}

/* Animated scan line */
.rcl-banner__scan {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.rcl-banner__scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192,57,43,.4), transparent);
    animation: rcl-scan 6s linear infinite;
    top: -2px;
}
@keyframes rcl-scan {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Corner accent lines */
.rcl-banner__corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    z-index: 2;
    pointer-events: none;
}

.rcl-banner__inner {
    position: relative;
    z-index: 4;
    padding: 6rem 0 3.5rem;
    width: 100%;
}

/* Alert badge */
.rcl-banner__alert-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(192,57,43,.15);
    border: 1px solid rgba(192,57,43,.4);
    color: #e57373;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    animation: rcl-fade-up .7s ease both;
}

.rcl-banner__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1.06;
    margin-bottom: 1rem;
    animation: rcl-fade-up .8s .08s ease both;
}

.rcl-banner__subtitle {
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(255,255,255,.5);
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: rcl-fade-up .8s .15s ease both;
}

/* Stats row */
.rcl-banner__stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-bottom: none;
    display: inline-flex;
    animation: rcl-fade-up .8s .22s ease both;
}
.rcl-banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.1rem 2rem;
    gap: .3rem;
}
.rcl-banner-stat__num {
    display: flex;
    align-items: center;
    font-family: var(--hpg-font-display);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1;
}
.rcl-banner-stat__num svg { color: var(--hpg-red); }
.rcl-banner-stat__label {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.rcl-banner-stat-div {
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,.1);
    align-self: center;
}

@keyframes rcl-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}

/* ================================================================
   CONTROLS BAR
   ================================================================ */
.rcl-controls {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--hpg-white);
    border-bottom: 1px solid var(--hpg-light-grey);
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.rcl-controls__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: .9rem 0;
    flex-wrap: wrap;
}

/* Search */
.rcl-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 380px;
}
.rcl-search-icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hpg-mid-grey);
    pointer-events: none;
    flex-shrink: 0;
}
.rcl-search {
    width: 100%;
    padding: .65rem 2.4rem .65rem 2.4rem;
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    letter-spacing: .05em;
    border: 1.5px solid var(--hpg-light-grey);
    background: var(--hpg-off-white);
    color: var(--hpg-black);
    outline: none;
    border-radius: 3px;
    transition: border-color .2s, background .2s;
}
.rcl-search:focus {
    border-color: var(--hpg-black);
    background: var(--hpg-white);
}
.rcl-search-clear {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--hpg-mid-grey);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}
.rcl-search-clear:hover { color: var(--hpg-red); }

/* Year filters */
.rcl-filters {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}
.rcl-filter-btn {
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .45rem .9rem;
    border: 1.5px solid var(--hpg-light-grey);
    background: var(--hpg-white);
    color: var(--hpg-dark-grey);
    border-radius: 3px;
    cursor: pointer;
    transition: all .22s ease;
}
.rcl-filter-btn:hover {
    border-color: var(--hpg-black);
    color: var(--hpg-black);
}
.rcl-filter-btn--active {
    background: var(--hpg-black);
    border-color: var(--hpg-black);
    color: var(--hpg-white);
}

/* Count */
.rcl-controls__count {
    margin-left: auto;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    white-space: nowrap;
}
.rcl-controls__count strong { color: var(--hpg-red); }

/* ================================================================
   RECALLS LIST
   ================================================================ */
.rcl-list-section {
    padding: 3rem 0 5rem;
}
.rcl-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--hpg-light-grey);
    border: 1.5px solid var(--hpg-light-grey);
}

/* ── Individual Recall Card ── */
.rcl-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 0;
    background: var(--hpg-white);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-16px);
    transition:
        opacity .5s ease,
        transform .5s ease,
        background .25s ease;
}
.rcl-card--visible {
    opacity: 1;
    transform: none;
}
.rcl-card:hover {
    background: var(--hpg-off-white);
    z-index: 1;
}

/* Hazard stripe on left edge — appears on hover */
.rcl-card__hazard-stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: repeating-linear-gradient(
        180deg,
        var(--hpg-red)   0px, var(--hpg-red)   8px,
        var(--hpg-black) 8px, var(--hpg-black) 16px
    );
    opacity: 0;
    transition: opacity .3s ease;
}
.rcl-card:hover .rcl-card__hazard-stripe {
    opacity: 1;
}

/* ── Left col ── */
.rcl-card__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--hpg-light-grey);
    height: 100%;
    background: var(--hpg-off-white);
    transition: background .25s;
}
.rcl-card:hover .rcl-card__left {
    background: var(--hpg-light-grey);
}
.rcl-card__num {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    color: var(--hpg-mid-grey);
    line-height: 1;
}

/* Icon ring */
.rcl-card__icon-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--hpg-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hpg-white);
    transition: background .3s, border-color .3s, transform .35s ease;
}
.rcl-card:hover .rcl-card__icon-ring {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    transform: rotate(10deg) scale(1.1);
}
.rcl-card__dashicon {
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
    color: var(--hpg-dark-grey);
    transition: color .3s;
}
.rcl-card:hover .rcl-card__dashicon {
    color: var(--hpg-white);
}

/* ── Center col ── */
.rcl-card__center {
    padding: 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    min-width: 0;
}

/* Meta row */
.rcl-card__meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.rcl-card__date {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    color: var(--hpg-mid-grey);
    text-transform: uppercase;
}
.rcl-card__date svg { color: var(--hpg-mid-grey); flex-shrink: 0; }

.rcl-card__model-badge {
    font-family: var(--hpg-font-mono);
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-black);
    background: var(--hpg-light-grey);
    padding: .2rem .6rem;
    border-radius: 2px;
}

.rcl-card__status-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-red);
    background: rgba(192,57,43,.06);
    border: 1px solid rgba(192,57,43,.2);
    padding: .2rem .55rem;
    border-radius: 2px;
}
.rcl-status-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hpg-red);
    animation: rcl-status-blink 2.5s ease-in-out infinite;
}
@keyframes rcl-status-blink {
    0%,100% { opacity: 1; }
    50%      { opacity: .25; }
}

.rcl-card__title {
    font-family: var(--hpg-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.3;
    transition: color .25s;
}
.rcl-card:hover .rcl-card__title { color: var(--hpg-red); }

.rcl-card__detail {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--hpg-dark-grey);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Right col ── */
.rcl-card__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1.5rem 1.75rem 1.5rem 1.5rem;
    border-left: 1px solid var(--hpg-light-grey);
    height: 100%;
    min-width: 140px;
    text-align: center;
}
.rcl-card__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}
.rcl-card__link-text {
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hpg-black);
    transition: color .25s;
}
.rcl-card__link:hover .rcl-card__link-text { color: var(--hpg-red); }

.rcl-card__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--hpg-black);
    border-radius: 50%;
    color: var(--hpg-black);
    transition: background .25s, border-color .25s, color .25s, transform .3s;
}
.rcl-card__link:hover .rcl-card__link-icon {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    color: var(--hpg-white);
    transform: translateX(4px);
}

.rcl-card__external-note {
    font-family: var(--hpg-font-mono);
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
}

.rcl-card__no-link {
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    border: 1px solid var(--hpg-light-grey);
    padding: .35rem .75rem;
    border-radius: 3px;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.rcl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
}
.rcl-empty__icon {
    width: 80px;
    height: 80px;
    border: 1.5px solid var(--hpg-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hpg-mid-grey);
    margin-bottom: 1.5rem;
}
.rcl-empty__title {
    font-family: var(--hpg-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hpg-black);
    margin-bottom: .5rem;
}
.rcl-empty__sub {
    font-size: .9rem;
    color: var(--hpg-mid-grey);
    margin-bottom: 1.5rem;
}
.rcl-empty__reset {
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-white);
    background: var(--hpg-black);
    border: none;
    padding: .65rem 1.4rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background .25s;
}
.rcl-empty__reset:hover { background: var(--hpg-red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .rcl-card {
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto;
    }
    .rcl-card__right {
        grid-column: 2;
        border-left: none;
        border-top: 1px solid var(--hpg-light-grey);
        flex-direction: row;
        justify-content: flex-start;
        padding: .9rem 2rem;
        min-width: 0;
    }
    .rcl-card__left {
        grid-row: 1 / 3;
    }
}

@media (max-width: 640px) {
    .rcl-controls__inner {
        gap: .75rem;
    }
    .rcl-search-wrap {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .rcl-controls__count { margin-left: 0; }
    .rcl-banner__stats { flex-wrap: wrap; }
    .rcl-banner-stat-div { display: none; }
    .rcl-card {
        grid-template-columns: 56px 1fr;
    }
    .rcl-card__center { padding: 1.2rem 1.2rem; }
}

@media (max-width: 480px) {
    .rcl-banner__title { font-size: 2rem; }
    .rcl-banner { min-height: auto; padding-top: 4rem; }
}
/* ================================================================
   SCHEDULE SERVICE PAGE
   Class prefix: sch-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

/* ================================================================
   BASE
   ================================================================ */
.sch-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-white);
    overflow-x: hidden;
}
.sch-main *, .sch-main *::before, .sch-main *::after {
    box-sizing: border-box;
}

/* Reveal animation utility */
.sch-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.sch-visible {
    opacity: 1 !important;
    transform: none !important;
}
.sch-trust-item:nth-child(2) { transition-delay: .08s; }
.sch-trust-item:nth-child(3) { transition-delay: .16s; }
.sch-trust-item:nth-child(4) { transition-delay: .24s; }
.sch-step:nth-child(2) { transition-delay: .1s; }
.sch-step:nth-child(3) { transition-delay: .2s; }
.sch-step:nth-child(4) { transition-delay: .3s; }
.sch-reassure-item:nth-child(2) { transition-delay: .1s; }
.sch-reassure-item:nth-child(3) { transition-delay: .2s; }
.sch-reassure-item:nth-child(4) { transition-delay: .3s; }

/* ================================================================
   HERO
   ================================================================ */
.sch-hero {
    position: relative;
    background: var(--hpg-black);
    padding: 5.5rem 0 4.5rem;
    overflow: hidden;
}

/* ── Geometric background decorations ── */
.sch-hero__geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.sch-geo-circle {
    position: absolute;
    border-radius: 50%;
}
.sch-geo-circle--1 {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
    background: radial-gradient(circle, rgba(192,57,43,.06) 0%, transparent 70%);
}
.sch-geo-circle--2 {
    width: 300px;
    height: 300px;
    left: -80px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
}
.sch-geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.04);
}
.sch-geo-ring--1 {
    width: 600px;
    height: 600px;
    right: -260px;
    top: -220px;
    animation: sch-ring-spin 30s linear infinite;
}
.sch-geo-ring--2 {
    width: 400px;
    height: 400px;
    right: -160px;
    top: -120px;
    border-color: rgba(192,57,43,.06);
    animation: sch-ring-spin 20s linear infinite reverse;
}
@keyframes sch-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Tick marks row (like a ruler / schedule timeline) */
.sch-hero__ticks {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 2rem;
    z-index: 1;
    pointer-events: none;
}
.sch-hero__ticks span {
    display: block;
    width: 1px;
    background: rgba(255,255,255,.08);
}
.sch-hero__ticks span:nth-child(odd)  { height: 8px; }
.sch-hero__ticks span:nth-child(even) { height: 14px; }
.sch-hero__ticks span:nth-child(3n)   { background: rgba(192,57,43,.3); height: 18px; }

.sch-hero__inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.sch-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
    animation: sch-fade-up .7s ease both;
}
.sch-breadcrumb a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: color .2s;
}
.sch-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.sch-breadcrumb svg { color: rgba(255,255,255,.15); }
.sch-breadcrumb [aria-current="page"] { color: rgba(255,255,255,.6); }

/* Hero layout: 2 columns */
.sch-hero__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    align-items: start;
}

/* Eyebrow */
.sch-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.1rem;
    animation: sch-fade-up .75s .06s ease both;
}
.sch-eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hpg-red);
    flex-shrink: 0;
    animation: sch-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes sch-dot-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.6); }
    50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

/* Title */
.sch-hero__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1.1;
    margin-bottom: 1.1rem;
    animation: sch-fade-up .8s .1s ease both;
}
.sch-hero__title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--hpg-red);
    display: block;
}

.sch-hero__desc {
    font-size: .975rem;
    line-height: 1.75;
    color: rgba(255,255,255,.9);
    max-width: 460px;
    margin-bottom: 2rem;
    animation: sch-fade-up .8s .16s ease both;
}

/* Trust list */
.sch-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    animation: sch-fade-up .8s .22s ease both;
}
.sch-trust-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .9rem;
    color: rgba(255,255,255,.9);
    line-height: 1.4;
}
.sch-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(192,57,43,.12);
    border: 1px solid rgba(192,57,43,.25);
    color: var(--hpg-red);
    flex-shrink: 0;
    transition: background .25s;
}
.sch-trust-item:hover .sch-trust-icon {
    background: rgba(192,57,43,.22);
}

/* ── Steps panel (right) ── */
.sch-steps-panel {
    animation: sch-fade-up .8s .28s ease both;
}
.sch-steps-panel__label {
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--hpg-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.sch-steps-panel__label::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1px;
    background: var(--hpg-red);
}

.sch-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.sch-step {
    display: grid;
    grid-template-columns: 40px 1px 1fr;
    gap: 0 1rem;
    align-items: start;
    position: relative;
}
.sch-step--last {
    grid-template-columns: 40px 1fr;
}
.sch-step--last .sch-step__content {
    grid-column: 2;
}
.sch-step__node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    flex-shrink: 0;
    transition: background .3s, border-color .3s, color .3s;
    z-index: 1;
}
.sch-step:hover .sch-step__node {
    background: rgba(192,57,43,.15);
    border-color: var(--hpg-red);
    color: var(--hpg-red);
}
.sch-step__node--done {
    background: var(--hpg-red) !important;
    border-color: var(--hpg-red) !important;
    color: var(--hpg-white) !important;
}

/* Vertical connector line */
.sch-step__track {
    width: 1px;
    background: rgba(255,255,255,.08);
    margin: 0 auto;
    height: 100%;
    min-height: 2rem;
    position: relative;
    top: 0;
}
.sch-step--last .sch-step__track { display: none; }

.sch-step__content {
    padding: .6rem 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.sch-step__content strong {
    font-family: var(--hpg-font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--hpg-white);
    line-height: 1.3;
}
.sch-step__content span {
    font-size: .8rem;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
}
.sch-step--last .sch-step__content { padding-bottom: 0; }

@keyframes sch-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* ================================================================
   FORM SECTION
   ================================================================ */
.sch-form-section {
    padding: 0 0 5rem;
    background: var(--hpg-off-white);
    position: relative;
}

/* Top rule — transitions out of the dark hero */
.sch-form-section__rule {
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-black) 0, var(--hpg-black) 32px,
        var(--hpg-red)   32px, var(--hpg-red) 34px,
        transparent 34px, transparent 40px
    );
    margin-bottom: 3.5rem;
}

/* Form card wrapper */
.sch-form-wrap {
    position: relative;
    background: var(--hpg-white);
    border: 1.5px solid var(--hpg-light-grey);
    box-shadow:
        0 2px 0 0 var(--hpg-black),          /* bottom edge shadow */
        0 24px 60px rgba(0,0,0,.08);
}

/* Corner bracket decorations */
.sch-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}
.sch-corner--tl { top: -2px;  left: -2px;  border-top: 3px solid var(--hpg-red); border-left: 3px solid var(--hpg-red); }
.sch-corner--tr { top: -2px;  right: -2px; border-top: 3px solid var(--hpg-red); border-right: 3px solid var(--hpg-red); }
.sch-corner--bl { bottom: -2px; left: -2px;  border-bottom: 3px solid var(--hpg-black); border-left: 3px solid var(--hpg-black); }
.sch-corner--br { bottom: -2px; right: -2px; border-bottom: 3px solid var(--hpg-black); border-right: 3px solid var(--hpg-black); }

/* Form header bar */
.sch-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--hpg-black);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.sch-form-header__left {
    display: flex;
    align-items: center;
    gap: .85rem;
}
.sch-form-header__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
}
.sch-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: sch-live-pulse 2.5s ease-in-out infinite;
}
@keyframes sch-live-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.sch-form-header__title {
    font-family: var(--hpg-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hpg-white);
    line-height: 1.2;
    margin: 0;
}
.sch-form-header__sub {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin: .2rem 0 0;
}
.sch-form-header__right {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}

/* iframe container with loading overlay */
.sch-iframe-wrap {
    position: relative;
    min-height: 520px;
    background: var(--hpg-white);
}

/* Loading state */
.sch-iframe-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--hpg-white);
    z-index: 2;
    font-family: var(--hpg-font-mono);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    transition: opacity .4s ease;
}
.sch-loading-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--hpg-light-grey);
    border-top-color: var(--hpg-red);
    border-radius: 50%;
    animation: sch-spin 0.8s linear infinite;
}
@keyframes sch-spin {
    to { transform: rotate(360deg); }
}

/* The iframe itself */
.sch-iframe {
    display: block;
    width: 100%;
    min-height: 520px;
    border: none;
    opacity: 0;
    transition: opacity .4s ease;
}

/* Form footer note */
.sch-form-footer {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    padding: .9rem 1.5rem;
    background: var(--hpg-off-white);
    border-top: 1px solid var(--hpg-light-grey);
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .06em;
    color: var(--hpg-mid-grey);
    line-height: 1.6;
}
.sch-form-footer svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--hpg-mid-grey);
}

/* ================================================================
   REASSURANCE STRIP
   ================================================================ */
.sch-reassurance {
    padding: 4rem 0;
    background: var(--hpg-black);
    border-top: 4px solid var(--hpg-red);
}
.sch-reassurance__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.06);
}
.sch-reassure-item {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: 2rem 1.75rem;
    background: var(--hpg-black);
    position: relative;
    transition: background .3s;
}
.sch-reassure-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: var(--hpg-red);
    transition: width .4s ease;
}
.sch-reassure-item:hover { background: rgba(255,255,255,.03); }
.sch-reassure-item:hover::before { width: 100%; }

.sch-reassure-item__icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hpg-red);
    background: rgba(192,57,43,.07);
    margin-bottom: .25rem;
    transition: background .3s, border-color .3s;
}
.sch-reassure-item:hover .sch-reassure-item__icon {
    background: rgba(192,57,43,.14);
    border-color: rgba(192,57,43,.3);
}
.sch-reassure-item strong {
    font-family: var(--hpg-font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--hpg-white);
    line-height: 1.3;
}
.sch-reassure-item span {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,.38);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .sch-hero__layout {
        grid-template-columns: 1fr 280px;
        gap: 3rem;
    }
    .sch-reassurance__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sch-hero__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .sch-steps-panel {
        border-top: 1px solid rgba(255,255,255,.08);
        padding-top: 2rem;
    }
    .sch-reassurance__grid {
        grid-template-columns: 1fr;
    }
    .sch-iframe-wrap,
    .sch-iframe {
        min-height: 800px;
    }
}

@media (max-width: 480px) {
    .sch-hero { padding: 4rem 0 3.5rem; }
    .sch-hero__title { font-size: 2.2rem; }
    .sch-form-header { flex-direction: column; align-items: flex-start; gap: .6rem; }
}
/* ================================================================
   BLOG SECTION — append to home-page.css
   ================================================================ */

.hpg-blog {
    padding: var(--hpg-section) 0;
    background: var(--hpg-black);
    position: relative;
    overflow: hidden;
}

/* Large ghost "BLOG" text in background */
.hpg-blog::before {
    content: 'BLOG';
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    font-family: var(--hpg-font-display);
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 900;
    color: rgba(255,255,255,.025);
    line-height: 1;
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none;
}

/* ── Section head row ── */
.hpg-blog__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.hpg-blog__head .hpg-section-head__label {
    color: var(--hpg-red);
    margin-bottom: .75rem;
}
.hpg-blog__head .hpg-label-line {
    background: var(--hpg-red);
}
.hpg-blog__head .hpg-section-head__title {
    color: var(--hpg-white);
    text-align: left;
    margin-bottom: 0;
}

/* "View All Posts" desktop link */
.hpg-blog__all-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--hpg-font-mono);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.12);
    padding: .65rem 1.25rem;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: .5rem;
    transition: color .25s, border-color .25s, background .25s;
}
.hpg-blog__all-link:hover {
    color: var(--hpg-white);
    border-color: var(--hpg-red);
    background: rgba(192,57,43,.1);
}
.hpg-blog__all-link svg {
    transition: transform .25s;
}
.hpg-blog__all-link:hover svg {
    transform: translateX(4px);
}

/* ── Grid: 1 large featured + 2 stacked ── */
.hpg-blog__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5px;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.06);
}

/* ── Base card ── */
.hpg-blog-card {
    background: var(--hpg-black);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}
.hpg-blog-card:hover {
    background: rgba(255,255,255,.03);
}

/* Featured card spans both rows in column 1 */
.hpg-blog-card--featured {
    grid-row: 1 / 3;
}

/* Cards 2 & 3 are horizontal (side by side image + text) */
.hpg-blog-card:not(.hpg-blog-card--featured) {
    flex-direction: row;
    border-top: 1.5px solid rgba(255,255,255,.06);
}
.hpg-blog-card:nth-child(2) { border-top: none; }

/* ── Image ── */
.hpg-blog-card__img-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}
.hpg-blog-card__img {
    position: relative;
    overflow: hidden;
}

/* Featured: tall image */
.hpg-blog-card--featured .hpg-blog-card__img {
    aspect-ratio: 16/9;
}

/* Side cards: square thumbnail */
.hpg-blog-card:not(.hpg-blog-card--featured) .hpg-blog-card__img {
    width: 130px;
    min-width: 130px;
    height: 100%;
    min-height: 120px;
}

.hpg-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.hpg-blog-card:hover .hpg-blog-card__img img {
    transform: scale(1.05);
}

/* No-thumbnail placeholder */
.hpg-blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.1);
}
.hpg-blog-card:not(.hpg-blog-card--featured) .hpg-blog-card__img-placeholder {
    min-height: 120px;
}

/* Category badge on image */
.hpg-blog-card__cat {
    position: absolute;
    top: .9rem;
    left: .9rem;
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-white);
    background: var(--hpg-red);
    padding: .28rem .7rem;
    border-radius: 2px;
    z-index: 1;
    transition: background .2s;
}
.hpg-blog-card__cat:hover {
    background: var(--hpg-red-dark, #96281b);
}

/* ── Card body ── */
.hpg-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.6rem;
    min-width: 0;
    position: relative;
    z-index: 1;
}

/* Meta row: date + read time */
.hpg-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
}
.hpg-blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.hpg-blog-card__date svg { color: var(--hpg-red); flex-shrink: 0; }
.hpg-blog-card__read {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
}

/* Title */
.hpg-blog-card__title {
    font-family: var(--hpg-font-display);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: .85rem;
    flex: 1;
}
.hpg-blog-card--featured .hpg-blog-card__title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.hpg-blog-card:not(.hpg-blog-card--featured) .hpg-blog-card__title {
    font-size: 1.2rem;
    margin-bottom: 0;
}
.hpg-blog-card__title a {
    color: var(--hpg-white);
    text-decoration: none;
    transition: color .25s;
}
.hpg-blog-card__title a:hover {
    color: var(--hpg-red);
}

/* Excerpt (featured only) */
.hpg-blog-card__excerpt {
    font-size: .950rem;
    line-height: 1.7;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.25rem;
}

/* Footer: author + arrow */
.hpg-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1rem;
    margin-top: auto;
}
.hpg-blog-card:not(.hpg-blog-card--featured) .hpg-blog-card__footer {
    border-top: none;
    padding-top: .6rem;
}
.hpg-blog-card__author {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-body);
    font-size: .8rem;
    color: rgba(255,255,255,.9);
}
.hpg-blog-card__avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* Arrow CTA */
.hpg-blog-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    flex-shrink: 0;
    transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.hpg-blog-card:hover .hpg-blog-card__arrow {
    background: var(--hpg-red);
    border-color: var(--hpg-red);
    color: var(--hpg-white);
    transform: translateX(3px);
}

/* Ghost number watermark */
.hpg-blog-card__watermark {
    position: absolute;
    bottom: .5rem;
    right: 1rem;
    font-family: var(--hpg-font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color .3s;
}
.hpg-blog-card:hover .hpg-blog-card__watermark {
    color: rgba(192,57,43,.06);
}

/* ── Mobile CTA (hidden on desktop) ── */
.hpg-blog__mobile-cta {
    display: none;
    justify-content: center;
    margin-top: 2rem;
}

/* ── Empty state ── */
.hpg-blog__empty {
    text-align: center;
    padding: 4rem 2rem;
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.06);
}

/* ================================================================
   BLOG SECTION — RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .hpg-blog__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .hpg-blog-card--featured {
        grid-row: auto;
    }
    .hpg-blog-card:not(.hpg-blog-card--featured) {
        flex-direction: row;
    }
}

@media (max-width: 640px) {
    .hpg-blog__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .hpg-blog__all-link {
        display: none; /* show only mobile CTA button below */
    }
    .hpg-blog__mobile-cta {
        display: flex;
    }
    .hpg-blog-card:not(.hpg-blog-card--featured) {
        flex-direction: column;
    }
    .hpg-blog-card:not(.hpg-blog-card--featured) .hpg-blog-card__img {
        width: 100%;
        height: 160px;
    }
}

#comments, .cat-links, .dark-mode-menu-item{
	display: none;
}

/* ================================================================
   APPLIANCE ERROR CODE DIRECTORY
   Class prefix: ecd-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

.ecd-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-off-white);
    overflow-x: hidden;
}
.ecd-main *, .ecd-main *::before, .ecd-main *::after { box-sizing: border-box; }

/* ================================================================
   BANNER
   ================================================================ */
.ecd-banner {
    position: relative;
    background-color: var(--hpg-black);
    background-image: var(--ecd-bg, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 5.5rem 0 0;
}
.ecd-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(10,10,10,.9) 0%, rgba(10,10,10,.75) 50%, rgba(10,10,10,.97) 100%);
    z-index: 1;
}

/* Hazard top stripe */
.ecd-banner__hazard {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-red) 0, var(--hpg-red) 20px,
        var(--hpg-black) 20px, var(--hpg-black) 40px
    );
    z-index: 3;
}

/* Circuit SVG */
.ecd-banner__circuit {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.ecd-banner__circuit svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ecd-circuit-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: ecd-draw 3s ease forwards .4s;
}
.ecd-circuit-path--2 {
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    animation: ecd-draw 3.5s ease forwards .7s;
}
@keyframes ecd-draw {
    to { stroke-dashoffset: 0; }
}
.ecd-scan-dot {
    animation: ecd-scan-move 4s ease-in-out infinite 3s;
    opacity: 0;
}
@keyframes ecd-scan-move {
    0%   { cx: 0;    opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { cx: 1200; opacity: 0; }
}

.ecd-banner__inner { position: relative; z-index: 2; }

/* Breadcrumb */
.ecd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 2rem;
    animation: ecd-up .7s ease both;
}
.ecd-breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; transition: color .2s; }
.ecd-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.ecd-breadcrumb svg { color: rgba(255,255,255,.15); }

/* Banner body */
.ecd-banner__body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
    align-items: end;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.ecd-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 1rem;
    animation: ecd-up .7s .05s ease both;
}
.ecd-eyebrow-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--hpg-red);
    display: inline-block;
    flex-shrink: 0;
    animation: ecd-pulse 2.5s ease-in-out infinite;
}
@keyframes ecd-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.6); }
    50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}
.ecd-banner__title {
    font-family: var(--hpg-font-display);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: 1.08;
    margin-bottom: 1rem;
    animation: ecd-up .8s .1s ease both;
}
.ecd-banner__subtitle {
    font-size: .975rem;
    line-height: 1.72;
    color: rgba(255,255,255,.9);
    max-width: 500px;
    animation: ecd-up .8s .16s ease both;
}

/* Severity panel */
.ecd-severity-panel {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem;
    animation: ecd-up .8s .22s ease both;
}
.ecd-severity-panel__title {
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.2rem;
}
.ecd-severity-row {
    display: grid;
    grid-template-columns: 80px 1fr 28px;
    align-items: center;
    gap: .75rem;
    margin-bottom: .85rem;
}
.ecd-severity-row:last-of-type { margin-bottom: 0; }
.ecd-sev-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.ecd-sev-indicator {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}
.ecd-severity-row--high   .ecd-sev-indicator { background: #ef4444; }
.ecd-severity-row--medium .ecd-sev-indicator { background: #f59e0b; }
.ecd-severity-row--low    .ecd-sev-indicator { background: #22c55e; }
.ecd-sev-bar-wrap {
    height: 4px;
    background: rgba(255,255,255,.07);
    border-radius: 2px;
    overflow: hidden;
}
.ecd-sev-bar {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 1s cubic-bezier(.4,0,.2,1) .5s;
}
.ecd-severity-row--high   .ecd-sev-bar { background: #ef4444; }
.ecd-severity-row--medium .ecd-sev-bar { background: #f59e0b; }
.ecd-severity-row--low    .ecd-sev-bar { background: #22c55e; }
.ecd-sev-count {
    font-family: var(--hpg-font-mono);
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    text-align: right;
}
.ecd-severity-panel__total {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
    text-align: right;
    margin-top: 1rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255,255,255,.07);
}

@keyframes ecd-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}

/* ================================================================
   ADVISORY SECTION
   ================================================================ */
.ecd-advisory {
    padding: 4rem 0;
    background: var(--hpg-white);
    position: relative;
}
.ecd-advisory::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--hpg-black) 0, var(--hpg-black) 32px,
        var(--hpg-red)   32px, var(--hpg-red) 34px,
        transparent 34px, transparent 40px
    );
}
.ecd-advisory__label {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hpg-red);
    margin-bottom: 2rem;
}

/* 4-column advisory grid */
.ecd-advisory__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--hpg-light-grey);
    border: 1.5px solid var(--hpg-light-grey);
}

.ecd-advisory-card {
    background: var(--hpg-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    position: relative;
    overflow: hidden;
    transition: background .25s;
}
.ecd-advisory-card:hover { background: var(--hpg-off-white); }

/* Top-border accent colour per card */
.ecd-advisory-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.ecd-advisory-card--1::before { background: #22c55e; }
.ecd-advisory-card--2::before { background: var(--hpg-black); }
.ecd-advisory-card--3::before { background: #ef4444; }
.ecd-advisory-card--4::before { background: var(--hpg-red); }

.ecd-advisory-card__icon {
    width: 48px; height: 48px;
    border: 1.5px solid var(--hpg-light-grey);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hpg-black);
    background: var(--hpg-off-white);
    margin-bottom: .25rem;
    flex-shrink: 0;
}
.ecd-advisory-card__icon--alert { color: #ef4444; background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.2); }

.ecd-advisory-card__kicker {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
}
.ecd-advisory-card__heading {
    font-family: var(--hpg-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.3;
}
.ecd-advisory-card__body {
    font-size: .86rem;
    line-height: 1.7;
    color: var(--hpg-dark-grey);
    flex: 1;
}
.ecd-advisory-card__body strong { color: var(--hpg-black); font-weight: 600; }

/* Severity tags (card 1) */
.ecd-advisory-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: auto;
}
.ecd-tag {
    font-family: var(--hpg-font-mono);
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .6rem;
    border-radius: 2px;
}
.ecd-tag--low    { background: rgba(34,197,94,.1);  color: #15803d; border: 1px solid rgba(34,197,94,.25); }
.ecd-tag--medium { background: rgba(245,158,11,.1); color: #b45309; border: 1px solid rgba(245,158,11,.25); }
.ecd-tag--high   { background: rgba(239,68,68,.1);  color: #b91c1c; border: 1px solid rgba(239,68,68,.25); }

/* Power cycle steps (card 2) */
.ecd-advisory-card__step-hint {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
    font-family: var(--hpg-font-mono);
    font-size: .66rem;
    letter-spacing: .08em;
    color: var(--hpg-mid-grey);
    padding: .6rem .75rem;
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
}
.ecd-advisory-card__step-hint svg { color: var(--hpg-light-grey); flex-shrink: 0; }

/* Stop list (card 3) */
.ecd-advisory-card__stop-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.ecd-advisory-card__stop-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    color: var(--hpg-dark-grey);
}
.ecd-stop-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}

/* CTA link (card 4) */
.ecd-advisory-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-white);
    background: var(--hpg-black);
    padding: .6rem 1rem;
    margin-top: auto;
    transition: background .25s, gap .25s;
}
.ecd-advisory-card__cta:hover { background: var(--hpg-red); gap: .9rem; }

/* ================================================================
   DIRECTORY / TABLE SECTION
   ================================================================ */
.ecd-directory {
    padding: 3.5rem 0 5rem;
    background: var(--hpg-off-white);
}

/* Controls bar */
.ecd-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.ecd-controls__left {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

/* Search */
.ecd-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.ecd-search-wrap > svg {
    position: absolute;
    left: .8rem;
    color: var(--hpg-mid-grey);
    pointer-events: none;
}
.ecd-search {
    padding: .65rem 2.4rem .65rem 2.4rem;
    font-family: var(--hpg-font-mono);
    font-size: .78rem;
    letter-spacing: .04em;
    border: 1.5px solid var(--hpg-light-grey);
    background: var(--hpg-white);
    color: var(--hpg-black);
    outline: none;
    min-width: 260px;
    border-radius: 3px;
    transition: border-color .2s;
}
.ecd-search:focus { border-color: var(--hpg-black); }
.ecd-search::placeholder { color: var(--hpg-mid-grey); }
.ecd-search-clear {
    position: absolute;
    right: .7rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--hpg-mid-grey);
    display: flex;
    padding: 2px;
    transition: color .2s;
}
.ecd-search-clear:hover { color: var(--hpg-red); }

/* Severity filter buttons */
.ecd-sev-filters { display: flex; gap: .4rem; }
.ecd-sev-btn {
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .45rem .9rem;
    border: 1.5px solid var(--hpg-light-grey);
    background: var(--hpg-white);
    color: var(--hpg-dark-grey);
    cursor: pointer;
    border-radius: 3px;
    transition: all .22s;
}
.ecd-sev-btn--active,
.ecd-sev-btn:hover { background: var(--hpg-black); border-color: var(--hpg-black); color: var(--hpg-white); }
.ecd-sev-btn--high.ecd-sev-btn--active   { background: #ef4444; border-color: #ef4444; }
.ecd-sev-btn--medium.ecd-sev-btn--active { background: #f59e0b; border-color: #f59e0b; color: var(--hpg-black); }
.ecd-sev-btn--low.ecd-sev-btn--active    { background: #22c55e; border-color: #22c55e; color: var(--hpg-black); }

.ecd-controls__count {
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    white-space: nowrap;
}
#ecd-count { color: var(--hpg-red); font-weight: 600; }

/* ── Table ── */
.ecd-table {
    background: var(--hpg-white);
    border: 1.5px solid var(--hpg-light-grey);
    overflow: hidden;
}
.ecd-table__head {
    display: grid;
    grid-template-columns: 110px 1fr 1fr 110px 140px;
    background: var(--hpg-black);
    border-bottom: 2px solid var(--hpg-red);
}
.ecd-th {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    padding: .85rem 1rem;
}
.ecd-th--action { text-align: center; }

/* Row */
.ecd-row {
    display: grid;
    grid-template-columns: 110px 1fr 1fr 110px 140px;
    align-items: center;
    border-bottom: 1px solid var(--hpg-light-grey);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity .4s ease, transform .4s ease, background .2s;
}
.ecd-row:last-child { border-bottom: none; }
.ecd-row--in { opacity: 1; transform: none; }
.ecd-row:hover { background: var(--hpg-off-white); }

.ecd-cell {
    padding: .9rem 1rem;
    font-size: .875rem;
    color: var(--hpg-dark-grey);
    line-height: 1.45;
}
.ecd-cell--action { display: flex; justify-content: center; }

/* Error code chip */
.ecd-code-chip {
    display: inline-block;
    font-family: var(--hpg-font-mono);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--hpg-white);
    background: var(--hpg-black);
    padding: .3rem .7rem;
    border-radius: 3px;
    border-left: 3px solid var(--hpg-red);
}
.ecd-meaning { font-weight: 500; color: var(--hpg-black); }
.ecd-symptom {
    display: inline-flex;
    align-items: flex-start;
    gap: .4rem;
    font-size: .83rem;
    color: var(--hpg-dark-grey);
}
.ecd-symptom svg { color: var(--hpg-mid-grey); flex-shrink: 0; margin-top: .35em; }
.ecd-symptom--none { color: var(--hpg-mid-grey); }

/* Severity badge */
.ecd-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .65rem;
    border-radius: 3px;
}
.ecd-badge-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ecd-badge--high   { background: rgba(239,68,68,.1);  color: #b91c1c; border: 1px solid rgba(239,68,68,.25); }
.ecd-badge--high   .ecd-badge-dot { background: #ef4444; }
.ecd-badge--medium { background: rgba(245,158,11,.1); color: #92400e; border: 1px solid rgba(245,158,11,.25); }
.ecd-badge--medium .ecd-badge-dot { background: #f59e0b; }
.ecd-badge--low    { background: rgba(34,197,94,.1);  color: #15803d; border: 1px solid rgba(34,197,94,.25); }
.ecd-badge--low    .ecd-badge-dot { background: #22c55e; }
.ecd-badge--unknown { background: var(--hpg-off-white); color: var(--hpg-mid-grey); border: 1px solid var(--hpg-light-grey); }
.ecd-badge--unknown .ecd-badge-dot { background: var(--hpg-light-grey); }

/* Row action link */
.ecd-row-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hpg-black);
    border: 1px solid var(--hpg-light-grey);
    padding: .3rem .7rem;
    border-radius: 3px;
    transition: background .2s, color .2s, border-color .2s, gap .2s;
}
.ecd-row-link:hover { background: var(--hpg-red); color: var(--hpg-white); border-color: var(--hpg-red); gap: .6rem; }
.ecd-row-link--none { color: var(--hpg-mid-grey); border: none; padding: 0; }

/* Empty state */
.ecd-table__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--hpg-mid-grey);
}
.ecd-table__empty p {
    font-size: .9rem;
    color: var(--hpg-mid-grey);
}
.ecd-table__empty button {
    font-family: var(--hpg-font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--hpg-black);
    color: var(--hpg-white);
    border: none;
    padding: .6rem 1.2rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background .25s;
}
.ecd-table__empty button:hover { background: var(--hpg-red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .ecd-banner__body { grid-template-columns: 1fr 280px; }
    .ecd-advisory__grid { grid-template-columns: repeat(2, 1fr); }
    .ecd-table__head,
    .ecd-row { grid-template-columns: 100px 1fr 1fr 100px 80px; }
}

@media (max-width: 768px) {
    .ecd-banner__body { grid-template-columns: 1fr; }
    .ecd-advisory__grid { grid-template-columns: 1fr; }
    .ecd-table__head { display: none; }
    .ecd-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
        padding: .75rem 0;
    }
    .ecd-cell { padding: .4rem 1rem; }
    .ecd-cell--code   { grid-column: 1; grid-row: 1; }
    .ecd-cell--severity { grid-column: 2; grid-row: 1; justify-content: flex-end; display: flex; }
    .ecd-cell--meaning  { grid-column: 1 / 3; grid-row: 2; }
    .ecd-cell--symptom  { grid-column: 1 / 3; grid-row: 3; padding-top: 0; }
    .ecd-cell--action   { grid-column: 1 / 3; grid-row: 4; justify-content: flex-start; padding-top: .2rem; }
    .ecd-controls { flex-direction: column; align-items: flex-start; }
    .ecd-search { min-width: 100%; }
}

@media (max-width: 480px) {
    .ecd-banner__title { font-size: 2rem; }
    .ecd-advisory-card { padding: 1.5rem; }
}



/* error-detail.css */
/* Black & White theme with elegant spacing and typography */


/* ==================== COMPACT INFO GRID ==================== */
.info-card-compact {
    background-color: #f8f8f8;
    padding: 20px 32px;
}

.info-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: baseline;
}

.compact-item {
    flex: 1;
    min-width: 180px;
}

.compact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 4px;
}

.compact-value {
    font-weight: 500;
    color: #1a1a1a;
}

.compact-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.compact-link:hover {
    border-bottom-color: #000000;
}
/* ================================================================
   SINGLE ERROR DETAIL PAGE
   Class prefix: sed-
   Depends on: home-page.css (--hpg-* variables & .hpg-container)
   ================================================================ */

.sed-main {
    font-family: var(--hpg-font-body);
    color: var(--hpg-black);
    background: var(--hpg-off-white);
    overflow-x: hidden;
}
.sed-main *, .sed-main *::before, .sed-main *::after { box-sizing: border-box; }

/* ── Shared reveal ── */
.sed-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.sed-reveal--in { opacity: 1; transform: none; }
.sed-section--causes.sed-reveal { transition-delay: .12s; }
.sed-section--checks.sed-reveal { transition-delay: .24s; }

/* ── Buttons ── */
.sed-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--hpg-font-mono);
    font-size: .73rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .8rem 1.5rem;
    border-radius: 3px;
    transition: all .28s ease;
    white-space: nowrap;
}
.sed-btn--primary {
    background: var(--hpg-red);
    color: var(--hpg-white);
    border: 2px solid var(--hpg-red);
}
.sed-btn--primary:hover {
    background: #96281b;
    border-color: #96281b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192,57,43,.3);
}
.sed-btn--outline {
    background: transparent;
    color: rgba(255,255,255,.7);
    border: 2px solid rgba(255,255,255,.2);
}
.sed-btn--outline:hover {
    border-color: rgba(255,255,255,.6);
    color: var(--hpg-white);
}
.sed-btn--ghost-dark {
    background: transparent;
    color: #f2f2f2;
    border: 2px solid var(--hpg-light-grey);
}
.sed-btn--ghost-dark:hover {
    border-color: var(--hpg-black);
    color: #fff;
}

/* ================================================================
   HERO
   ================================================================ */
.sed-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #080808;
    background-image: var(--sed-banner, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sed-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,8,8,.6) 0%, rgba(8,8,8,.92) 100%),
        linear-gradient(90deg, rgba(8,8,8,.8) 0%, transparent 60%);
    z-index: 1;
}

/* ── Oscilloscope grid ── */
.sed-hero__osc {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.sed-osc-grid {
    position: absolute;
    inset: 0;
}
.sed-osc-row {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,.04);
}
.sed-osc-row:nth-child(1) { top: 12.5%; }
.sed-osc-row:nth-child(2) { top: 25%; }
.sed-osc-row:nth-child(3) { top: 37.5%; }
.sed-osc-row:nth-child(4) { top: 50%; background: rgba(255,255,255,.07); }
.sed-osc-row:nth-child(5) { top: 62.5%; }
.sed-osc-row:nth-child(6) { top: 75%; }
.sed-osc-row:nth-child(7) { top: 87.5%; }
.sed-osc-col {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,.04);
}
.sed-osc-col:nth-child(9)  { left: 8.33%; }
.sed-osc-col:nth-child(10) { left: 16.66%; }
.sed-osc-col:nth-child(11) { left: 25%; }
.sed-osc-col:nth-child(12) { left: 33.33%; }
.sed-osc-col:nth-child(13) { left: 41.66%; }
.sed-osc-col:nth-child(14) { left: 50%; background: rgba(255,255,255,.07); }
.sed-osc-col:nth-child(15) { left: 58.33%; }
.sed-osc-col:nth-child(16) { left: 66.66%; }
.sed-osc-col:nth-child(17) { left: 75%; }
.sed-osc-col:nth-child(18) { left: 83.33%; }
.sed-osc-col:nth-child(19) { left: 91.66%; }

/* Wave line */
.sed-osc-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: .12;
}
.sed-wave-line {
    fill: none;
    stroke: var(--hpg-red);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    animation: sed-wave-draw 2.5s ease forwards .3s;
}
@keyframes sed-wave-draw {
    to { stroke-dashoffset: 0; }
}

/* Scanline sweep */
.sed-hero__scanline {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.sed-hero__scanline::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(192,57,43,.35), transparent);
    animation: sed-scanline 5s linear infinite 2s;
    top: -3px;
}
@keyframes sed-scanline {
    0%   { top: -3px; opacity: 0; }
    3%   { opacity: 1; }
    97%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Hero inner */
.sed-hero__inner {
    position: relative;
    z-index: 3;
    padding: 6rem 0 0;
}

/* Breadcrumb */
.sed-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--hpg-font-mono);
    font-size: .67rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
    animation: sed-up .7s ease both;
}
.sed-breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; transition: color .2s; }
.sed-breadcrumb a:hover { color: rgba(255,255,255,1); }
.sed-breadcrumb svg { color: rgba(255,255,255,.9); flex-shrink: 0; }

/* Hero body */
.sed-hero__body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: end;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Status bar */
.sed-hero__status-bar {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(192,57,43,.12);
    border: 1px solid rgba(192,57,43,.3);
    padding: .35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: sed-up .75s .05s ease both;
}
.sed-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--hpg-red);
    display: inline-block;
    flex-shrink: 0;
    animation: sed-dot-pulse 2s ease-in-out infinite;
}
@keyframes sed-dot-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.7); }
    50%      { box-shadow: 0 0 0 7px rgba(192,57,43,0); }
}
.sed-status-text {
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #e57373;
}
.sed-status-time {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .08em;
    color: rgba(255,255,255,.9);
    margin-left: auto;
    padding-left: .75rem;
    border-left: 1px solid rgba(255,255,255,.1);
}

/* Code display */
.sed-hero__code-display {
    margin-bottom: 1rem;
    animation: sed-up .8s .1s ease both;
}
.sed-hero__code-label {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: .4rem;
}
.sed-hero__code {
    font-family: var(--hpg-font-display);
    font-size: clamp(3rem, 8vw, 3.5rem);
    font-weight: 900;
    color: var(--hpg-white);
    line-height: .95;
    letter-spacing: -.02em;
    /* Split stroke effect */
    text-shadow:
        2px 2px 0 rgba(192,57,43,.4),
        4px 4px 0 rgba(192,57,43,.15);
}

.sed-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.72;
    color: rgba(255,255,255,.9);
    max-width: 520px;
    margin-bottom: 2rem;
    animation: sed-up .8s .16s ease both;
}

.sed-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    animation: sed-up .8s .22s ease both;
}

/* Quick-diagnostics panel */
.sed-hero__panel {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-top: 3px solid var(--hpg-red);
    padding: 1.4rem;
    animation: sed-up .8s .28s ease both;
}
.sed-hero__panel-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--hpg-font-mono);
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.1rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.sed-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.sed-panel-row:last-of-type { border-bottom: none; }
.sed-panel-row__label {
    font-family: var(--hpg-font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    color: rgba(255,255,255,.9);
}
.sed-panel-row__val {
    font-family: var(--hpg-font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--hpg-white);
}
.sed-panel-divider {
    height: 1px;
    background: rgba(255,255,255,.07);
    margin: 1rem 0;
}
.sed-panel-advisory {
    display: flex;
    gap: .6rem;
    font-size: .78rem;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
}
.sed-panel-advisory svg { color: var(--hpg-red); flex-shrink: 0; margin-top: .2em; }

@keyframes sed-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* ================================================================
   THREE DATA SECTIONS
   ================================================================ */
.sed-sections {
    padding: 4rem 0 5rem;
}
.sed-sections__layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--hpg-light-grey);
    border: 1.5px solid var(--hpg-light-grey);
    margin-bottom: 3rem;
}

/* ── Section base ── */
.sed-section {
    background: var(--hpg-white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-height: 480px;
}

/* Section header */
.sed-section__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--hpg-light-grey);
    position: relative;
}
.sed-section__header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 2.5rem;
    height: 2px;
}
.sed-section--symptoms .sed-section__header::after { background: #f59e0b; }
.sed-section--causes   .sed-section__header::after { background: var(--hpg-red); }
.sed-section--checks   .sed-section__header::after { background: #22c55e; }

.sed-section__icon {
    width: 46px; height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--hpg-light-grey);
}
.sed-section__icon--symptoms { color: #d97706; background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); }
.sed-section__icon--causes   { color: var(--hpg-red); background: rgba(192,57,43,.06); border-color: rgba(192,57,43,.2); }
.sed-section__icon--checks   { color: #16a34a; background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.2); }

.sed-section__kicker {
    font-family: var(--hpg-font-mono);
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hpg-mid-grey);
    margin-bottom: .25rem;
}
.sed-section__title {
    font-family: var(--hpg-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hpg-black);
    line-height: 1.2;
}
.sed-section__count {
    margin-left: auto;
    font-family: var(--hpg-font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0,0,0,.06);
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ── Symptoms list ── */
.sed-symptom-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.sed-symptom-item {
    display: grid;
    grid-template-columns: 28px 3px 1fr;
    gap: 0 .9rem;
    align-items: stretch;
    padding: .8rem 0;
    border-bottom: 1px dashed var(--hpg-light-grey);
    transition: background .2s;
    cursor: default;
}
.sed-symptom-item:last-child { border-bottom: none; }
.sed-symptom-item:hover { background: var(--hpg-off-white); margin: 0 -1rem; padding: .8rem 1rem; }

.sed-symptom-item__num {
    font-family: var(--hpg-font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    color: var(--hpg-mid-grey);
    line-height: 1.5;
    padding-top: .1rem;
}
.sed-symptom-item__bar {
    width: 3px;
    border-radius: 2px;
    background: #f59e0b;
    transition: background .2s;
    align-self: stretch;
}
.sed-symptom-item:hover .sed-symptom-item__bar { background: #d97706; }
.sed-symptom-item__text {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--hpg-dark-grey);
}

/* ── Causes ── */
.sed-cause-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    flex: 1;
}
.sed-cause-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--hpg-off-white);
    border: 1px solid var(--hpg-light-grey);
    border-left: 3px solid var(--hpg-red);
    transition: background .25s, border-left-color .25s;
}
.sed-cause-item:hover { background: var(--hpg-white); border-left-color: #96281b; }
.sed-cause-item__letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 4px;
    background: var(--hpg-black);
    color: var(--hpg-white);
    font-family: var(--hpg-font-display);
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sed-cause-item__text {
    font-size: .88rem;
    line-height: 1.62;
    color: var(--hpg-dark-grey);
    display: block;
}

/* ── Safe checks ── */
.sed-check-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.sed-check-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding-bottom: 1.4rem;
    position: relative;
}
.sed-check-item:last-child { padding-bottom: 0; }

.sed-check-item__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.sed-check-item__node > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--hpg-white);
    border: 2px solid #22c55e;
    font-family: var(--hpg-font-mono);
    font-size: .72rem;
    font-weight: 500;
    color: #16a34a;
    transition: background .3s, color .3s;
    flex-shrink: 0;
}
.sed-check-item:hover .sed-check-item__node > span {
    background: #22c55e;
    color: var(--hpg-white);
}
.sed-check-item__connector {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(to bottom, #22c55e, rgba(34,197,94,.1));
    margin-top: 4px;
    border-radius: 1px;
}
.sed-check-item__text {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--hpg-dark-grey);
    padding-top: .35rem;
    flex: 1;
}

/* Safety reminder */
.sed-check-reminder {
    display: flex;
    gap: .6rem;
    padding: .9rem 1rem;
    background: rgba(245,158,11,.06);
    border: 1px solid rgba(245,158,11,.2);
    border-left: 3px solid #f59e0b;
    font-size: .8rem;
    line-height: 1.6;
    color: #92400e;
    margin-top: auto;
}
.sed-check-reminder svg { color: #f59e0b; flex-shrink: 0; margin-top: .15em; }

/* ================================================================
   BOTTOM CTA STRIP
   ================================================================ */
.sed-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: var(--hpg-black);
    border-left: 5px solid var(--hpg-red);
    flex-wrap: wrap;
}
.sed-cta-strip__heading {
    font-family: var(--hpg-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hpg-white);
    margin-bottom: .35rem;
}
.sed-cta-strip__body {
    font-size: .9rem;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
}
.sed-cta-strip__actions {
    display: flex;
    gap: .85rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .sed-sections__layout {
        grid-template-columns: 1fr 1fr;
    }
    .sed-section--checks {
        grid-column: 1 / 3;
        min-height: auto;
    }
    .sed-check-list { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .sed-check-item { flex: 1 1 calc(50% - .5rem); }
    .sed-check-item__connector { display: none; }
    .sed-hero__body { grid-template-columns: 1fr 260px; }
}

@media (max-width: 768px) {
    .sed-sections__layout { grid-template-columns: 1fr; }
    .sed-section--checks { grid-column: auto; }
    .sed-check-list { flex-direction: column; }
    .sed-check-item { flex: auto; }
    .sed-check-item__connector { display: flex; }
    .sed-hero__body { grid-template-columns: 1fr; }
    .sed-hero__panel { display: none; } /* hide on mobile */
    .sed-cta-strip { flex-direction: column; align-items: flex-start; padding: 2rem; }
    .sed-section { padding: 1.75rem; min-height: auto; }
}

@media (max-width: 480px) {
    .sed-hero__code { font-size: 3.5rem; }
    .sed-hero__actions { flex-direction: column; }
    .sed-btn { justify-content: center; }
    .sed-symptom-item:hover { margin: 0; padding: .8rem 0; }
}
/* ==================== CALL TO ACTION ==================== */
.error-detail-cta {
    background-color: #000000;
    padding: 40px 48px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.cta-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.cta-button {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ==================== NOT FOUND STATE ==================== */
.error-detail-not-found {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-detail-not-found .error-detail-card {
    max-width: 500px;
    margin: 0 auto;
}

.error-detail-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.error-detail-title {
    font-size: 1.8rem;
    margin: 0 0 16px 0;
    color: #000000;
}

.error-detail-message {
    color: #555555;
    margin-bottom: 28px;
}

.error-detail-back-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid #000000;
    padding-bottom: 4px;
    font-weight: 500;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .error-detail-container {
        padding: 24px 16px;
    }

    .error-detail-card {
        padding: 20px;
    }

    .error-detail-header {
        flex-direction: column;
        gap: 16px;
    }

    .error-code-value {
        font-size: 2.2rem;
    }

    .severity-indicator {
        align-self: flex-start;
    }

    .detail-section-title {
        font-size: 1.15rem;
    }

    .info-grid-compact {
        flex-direction: column;
        gap: 16px;
    }

    .error-detail-cta {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
    }

    .cta-button {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .error-detail-card {
        padding: 16px;
    }

    .meaning-text {
        font-size: 1rem;
    }

    .detail-list {
        padding-left: 20px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .error-detail-nav,
    .error-detail-cta,
    .safety-note,
    .compact-link {
        display: none;
    }

    .error-detail-card {
        border: 1px solid #ddd;
        break-inside: avoid;
        box-shadow: none;
    }

    .severity-message-box {
        border: 1px solid #ccc;
        background-color: #f9f9f9;
    }
}
.main-navigation-container{
	z-index: 9!important;
}
/*** CALL ICON ***/
.sticky-call-btn {
    position: fixed;
    bottom: 82px;
    right: 13px;
    
    width: 60px;
    height: 60px;
    
    background: #252525;
    color: #fff;
    
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-decoration: none;
    
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    
    z-index: 9999;
    
    transition: all 0.3s ease;
}

.sticky-call-btn:hover {
    transform: scale(1.08);
    background: #ec1c24;
	color: #ffffff;
}

.sticky-call-btn .dashicons {
    font-size: 26px;
    width: 26px;
    height: 26px;
}

.error-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f8eaea;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    color:var(--hpg-red);
}


@media(max-width:768px){
    .sticky-call-btn {
        width: 55px;
        height: 55px;
        bottom: 75px;
    	right: 14px;
    }
}
.hpg-blog-card__author, .author.vcard, .comments-link{
	display: none!important;
}

footer .widget-area h2 {
    font-size: 20px;
    margin-top: 0.7em !important;
}