/* Hotprint visual refresh - August 2026 */
:root {
    --hp-orange: #ed7d31;
    --hp-orange-dark: #cf641d;
    --hp-ink: #15191f;
    --hp-ink-soft: #252b34;
    --hp-navy: #18324a;
    --hp-text: #343b44;
    --hp-muted: #66717d;
    --hp-line: #e4e8ec;
    --hp-light: #f5f7f9;
    --hp-white: #ffffff;
    --hp-radius: 16px;
    --hp-shadow: 0 18px 48px rgba(15, 28, 40, 0.12);
    --hp-shadow-soft: 0 10px 28px rgba(15, 28, 40, 0.08);
}

html { scroll-behavior: smooth; }
body {
    color: var(--hp-text);
    background: var(--hp-white);
    font-family: "Open Sans", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
body, p { font-size: 16px; line-height: 1.72; }
h1, h2, h3, h4, h5, h6 {
    color: var(--hp-ink);
    font-family: Raleway, "Open Sans", Arial, sans-serif;
    letter-spacing: -0.02em;
}
a { color: var(--hp-navy); }
a:hover, a:focus { color: var(--hp-orange-dark); }
.hp-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hp-section { padding: 88px 0; }
.hp-section--soft { background: var(--hp-light); }
.hp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--hp-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hp-kicker:before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--hp-orange); }
.hp-section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.hp-section-heading h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 46px); font-weight: 750; line-height: 1.12; }
.hp-section-heading p { margin: 0; color: var(--hp-muted); font-size: 18px; }

/* Header */
#header { background: var(--hp-ink) !important; border: 0 !important; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
#header .hp-site-header { background: var(--hp-ink); }
#header .hp-nav-shell { min-height: 84px; display: flex; align-items: center; gap: 24px; }
#header .hp-brand { flex: 0 0 auto; display: inline-flex; align-items: center; padding: 0; }
#header .hp-brand img { display: block; width: 230px; max-width: 100%; height: auto; }
#header .hp-menu-toggle { display: none; margin-left: auto; padding: 10px 13px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 10px; }
#header .hp-menu-toggle i { margin: 0; }
#header .hp-navigation { margin-left: auto; }
#header .hp-nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
#header .hp-nav-list > li { position: relative; margin: 0; }
#header .hp-nav-list > li > a {
    display: flex;
    align-items: center;
    min-height: 84px;
    padding: 0 13px;
    color: rgba(255,255,255,.84) !important;
    font-family: Raleway, sans-serif;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: .045em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}
#header .hp-nav-list > li > a:hover,
#header .hp-nav-list > li.active > a { color: #fff !important; background: rgba(255,255,255,.055); }
#header .hp-nav-list > li.active > a:after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 18px;
    left: 13px;
    height: 3px;
    border-radius: 3px;
    background: var(--hp-orange);
}
#header .hp-nav-phone > a { color: #fff !important; white-space: nowrap; }
#header .hp-nav-phone i { margin-right: 7px; color: var(--hp-orange); }
#header .hp-nav-quote > a {
    width: auto !important;
    min-width: 112px;
    height: 44px !important;
    min-height: 44px !important;
    line-height: 44px !important;
    margin-left: 8px;
    padding: 0 18px !important;
    color: #fff !important;
    background: var(--hp-orange);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(237,125,49,.24);
}
#header .hp-nav-quote > a:hover { background: var(--hp-orange-dark) !important; }
#header .hp-dropdown-menu {
    position: absolute;
    z-index: 1000;
    top: calc(100% - 9px);
    left: 0;
    display: none;
    width: 610px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 14px;
    box-shadow: var(--hp-shadow);
}
#header .hp-nav-services:hover .hp-dropdown-menu,
#header .hp-nav-services.open .hp-dropdown-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 12px; }
#header .hp-dropdown-menu li { margin: 0; list-style: none; }
#header .hp-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--hp-text) !important;
    border-radius: 9px;
    font-size: 14px !important;
    font-weight: 650;
    line-height: 1.3;
    text-decoration: none !important;
}
#header .hp-dropdown-menu a:hover { color: var(--hp-orange-dark) !important; background: #fff4ec; }

/* Buttons */
.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: Raleway, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .015em;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.hp-btn:hover { transform: translateY(-2px); }
.hp-btn--primary { color: #fff !important; background: var(--hp-orange); box-shadow: 0 12px 26px rgba(237,125,49,.28); }
.hp-btn--primary:hover { color: #fff !important; background: var(--hp-orange-dark); }
.hp-btn--ghost { color: #fff !important; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }
.hp-btn--ghost:hover { color: var(--hp-ink) !important; background: #fff; }
.hp-btn--dark { color: #fff !important; background: var(--hp-ink); }
.hp-btn--dark:hover { color: #fff !important; background: var(--hp-navy); }
.hp-btn i { margin-right: 9px; }

/* Homepage hero */
.hp-hero { position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; background: var(--hp-ink); }
.hp-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,19,24,.97) 0%, rgba(16,19,24,.88) 43%, rgba(16,19,24,.28) 70%, rgba(16,19,24,.08) 100%), url('../../images/179180-Wellington-full.jpg') center bottom/cover no-repeat;
}
.hp-home .hp-hero:before { background-image: linear-gradient(90deg, rgba(16,19,24,.97) 0%, rgba(16,19,24,.88) 43%, rgba(16,19,24,.28) 70%, rgba(16,19,24,.08) 100%), url('../../images/179180-Wellington-full.jpg'); }
.hp-hero:after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(237,125,49,.16);
    border-radius: 50%;
}
.hp-hero .hp-container { position: relative; z-index: 2; }
.hp-hero-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); align-items: center; gap: 66px; }
.hp-hero-content { max-width: 760px; padding: 86px 0; }
.hp-hero-visual { position: relative; height: 440px; }
.hp-hero-visual:before { content: ""; position: absolute; top: -18px; right: -18px; width: 54%; height: 48%; border: 4px solid rgba(237,125,49,.68); border-left: 0; border-bottom: 0; border-radius: 0 22px 0 0; }
.hp-hero-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 22px; box-shadow: 0 28px 70px rgba(0,0,0,.42); }
.hp-hero-visual-card { position: absolute; z-index: 2; right: -20px; bottom: 26px; max-width: 245px; padding: 20px 22px; color: #fff; background: var(--hp-orange); border-radius: 14px; box-shadow: 0 16px 34px rgba(237,125,49,.34); }
.hp-hero-visual-card strong { display: block; margin-bottom: 4px; font-family: Raleway, sans-serif; font-size: 20px; }
.hp-hero-visual-card span { color: rgba(255,255,255,.88); font-size: 14px; }
.hp-hero .hp-kicker { color: #ffb17b; }
.hp-hero h1 { max-width: 720px; margin: 0 0 20px; color: #fff; font-size: clamp(42px, 6vw, 72px); font-weight: 800; line-height: 1.01; }
.hp-hero h1 span { color: var(--hp-orange); }
.hp-hero-lead { max-width: 690px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: clamp(18px, 2.4vw, 22px); line-height: 1.55; }
.hp-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hp-hero-note { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: 14px; }
.hp-hero-note span { display: inline-flex; align-items: center; }
.hp-hero-note i { margin-right: 8px; color: var(--hp-orange); }

/* Trust strip */
.hp-trust-strip { position: relative; z-index: 3; margin-top: -32px; }
.hp-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); overflow: hidden; background: #fff; border: 1px solid var(--hp-line); border-radius: var(--hp-radius); box-shadow: var(--hp-shadow); }
.hp-trust-item { display: flex; align-items: center; min-height: 112px; padding: 22px 25px; border-right: 1px solid var(--hp-line); }
.hp-trust-item:last-child { border-right: 0; }
.hp-trust-icon { flex: 0 0 44px; width: 44px; height: 44px; margin-right: 14px; display: grid; place-items: center; color: var(--hp-orange); background: #fff1e7; border-radius: 12px; font-size: 20px; }
.hp-trust-item strong { display: block; color: var(--hp-ink); font-family: Raleway, sans-serif; font-size: 15px; line-height: 1.3; }
.hp-trust-item small { display: block; margin-top: 3px; color: var(--hp-muted); font-size: 13px; line-height: 1.35; }

/* Service cards */
.hp-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.hp-service-card { position: relative; overflow: hidden; min-height: 360px; border-radius: var(--hp-radius); background: var(--hp-ink); box-shadow: var(--hp-shadow-soft); }
.hp-service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hp-service-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,18,22,.02) 22%, rgba(15,18,22,.92) 100%); }
.hp-service-card:hover img { transform: scale(1.055); }
.hp-service-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.hp-service-card h3 { margin: 0 0 8px; color: #fff; font-size: 24px; font-weight: 750; }
.hp-service-card p { margin: 0 0 18px; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.55; }
.hp-service-card a { color: #fff !important; font-family: Raleway, sans-serif; font-size: 14px; font-weight: 800; text-decoration: none !important; }
.hp-service-card a i { margin-left: 7px; color: var(--hp-orange); transition: transform .2s ease; }
.hp-service-card:hover a i { transform: translateX(4px); }
.hp-service-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 30px; }
.hp-service-list a { display: flex; align-items: center; min-height: 66px; padding: 15px 18px; color: var(--hp-text); background: #fff; border: 1px solid var(--hp-line); border-radius: 12px; font-weight: 700; text-decoration: none !important; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.hp-service-list a:hover { color: var(--hp-orange-dark); border-color: #f3b78f; transform: translateY(-2px); box-shadow: var(--hp-shadow-soft); }
.hp-service-list i { width: 28px; margin-right: 9px; color: var(--hp-orange); font-size: 18px; text-align: center; }

/* Split sections */
.hp-split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.hp-split-media { position: relative; }
.hp-split-media img { width: 100%; min-height: 440px; object-fit: cover; border-radius: 20px; box-shadow: var(--hp-shadow); }
.hp-split-badge { position: absolute; right: -24px; bottom: 28px; max-width: 245px; padding: 20px 22px; color: #fff; background: var(--hp-orange); border-radius: 14px; box-shadow: 0 16px 34px rgba(237,125,49,.32); }
.hp-split-badge strong { display: block; margin-bottom: 4px; font-family: Raleway, sans-serif; font-size: 20px; }
.hp-split-copy h2 { margin: 0 0 18px; font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.12; }
.hp-split-copy > p { margin-bottom: 24px; color: var(--hp-muted); font-size: 18px; }
.hp-check-list { margin: 0 0 28px; padding: 0; list-style: none; }
.hp-check-list li { position: relative; margin: 0 0 12px; padding-left: 32px; color: var(--hp-text); font-weight: 650; }
.hp-check-list li:before { content: "\f00c"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center; color: #fff; background: var(--hp-orange); border-radius: 50%; font: 11px/1 FontAwesome; }

/* Process */
.hp-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.hp-process-card { position: relative; padding: 32px; background: #fff; border: 1px solid var(--hp-line); border-radius: var(--hp-radius); box-shadow: var(--hp-shadow-soft); }
.hp-process-number { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; color: #fff; background: var(--hp-ink); border-radius: 13px; font-family: Raleway, sans-serif; font-size: 17px; font-weight: 800; }
.hp-process-card h3 { margin: 0 0 10px; font-size: 21px; font-weight: 750; }
.hp-process-card p { margin: 0; color: var(--hp-muted); font-size: 15px; }

/* FAQ */
.hp-faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.hp-faq-card { padding: 28px; background: #fff; border: 1px solid var(--hp-line); border-radius: var(--hp-radius); }
.hp-faq-card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 750; }
.hp-faq-card p { margin: 0; color: var(--hp-muted); font-size: 15px; }

/* CTA */
.hp-cta { position: relative; overflow: hidden; padding: 72px 0; background: var(--hp-navy); }
.hp-cta:before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.035), transparent 42%); }
.hp-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.hp-cta h2 { margin: 0 0 8px; color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.hp-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 18px; }
.hp-cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 12px; }

/* Footer */
.hp-footer { padding: 58px 0 24px; color: rgba(255,255,255,.72); background: var(--hp-ink); }
.hp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 55px; }
.hp-footer-logo { width: 230px; max-width: 100%; margin-bottom: 18px; }
.hp-footer h3 { margin: 0 0 16px; color: #fff; font-size: 16px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.hp-footer p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.hp-footer a { color: rgba(255,255,255,.76) !important; text-decoration: none !important; }
.hp-footer a:hover { color: var(--hp-orange) !important; }
.hp-footer-links { margin: 0; padding: 0; list-style: none; }
.hp-footer-links li { margin: 0 0 9px; }
.hp-footer-contact div { margin-bottom: 9px; }
.hp-footer-contact i { width: 22px; color: var(--hp-orange); }
.hp-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.hp-socials { display: flex; gap: 10px; }
.hp-socials a { width: 36px; height: 36px; display: grid; place-items: center; color: #fff !important; background: rgba(255,255,255,.08); border-radius: 50%; }
.hp-socials a:hover { background: var(--hp-orange); }

/* Existing service and form pages */
body.hp-inner-page .page-header {
    position: relative;
    margin: 0;
    padding: 58px 0 54px !important;
    background: linear-gradient(115deg, var(--hp-ink), var(--hp-navy)) !important;
    border: 0 !important;
}
body.hp-inner-page .page-header:after { content: ""; position: absolute; right: 7%; bottom: 0; width: 150px; height: 5px; background: var(--hp-orange); }
body.hp-inner-page .page-header h1:first-child { margin: 0 0 7px; color: #fff !important; font-size: clamp(30px, 4vw, 45px) !important; font-weight: 800; line-height: 1.12; }
body.hp-inner-page .page-header h1.font-lato { margin: 0; color: rgba(255,255,255,.68) !important; font-size: 16px !important; font-weight: 400; }
body.hp-inner-page .page-header .page-options { display: none; }
body.hp-service-page #wrapper > .row {
    width: min(1180px, calc(100% - 40px));
    margin: 64px auto 38px !important;
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr) minmax(235px, .8fr);
    align-items: start;
    gap: 30px;
}
body.hp-service-page #wrapper > .row:before,
body.hp-service-page #wrapper > .row:after { display: none; }
body.hp-service-page #wrapper > .row > .col-md-1 { display: none; }
body.hp-service-page #wrapper > .row > .col-md-3:nth-child(2),
body.hp-service-page #wrapper > .row > .col-md-4,
body.hp-service-page #wrapper > .row > .col-md-3:nth-child(4) { width: auto; max-width: none; padding: 0; }
body.hp-service-page #wrapper > .row img.img-fluid { width: 100%; min-height: 300px; object-fit: cover; border-radius: var(--hp-radius); box-shadow: var(--hp-shadow-soft); }
body.hp-service-page #wrapper > .row h3 { margin: 0 0 14px; font-size: 30px; font-weight: 800; }
body.hp-service-page #wrapper > .row p { color: var(--hp-muted); }
body.hp-service-page #wrapper > .row br:first-child,
body.hp-service-page #wrapper > .row br:nth-child(2) { display: none; }
body.hp-service-page .categories { display: flex; flex-wrap: wrap; gap: 8px; }
body.hp-service-page .categories li { margin: 0 !important; }
body.hp-service-page .categories a { display: inline-flex; padding: 7px 11px; color: var(--hp-navy) !important; background: #edf3f7; border-radius: 999px; font-size: 13px !important; font-weight: 700; text-decoration: none !important; pointer-events: none; }
body.hp-service-page .card-default { overflow: hidden; border: 1px solid var(--hp-line) !important; border-radius: var(--hp-radius) !important; box-shadow: var(--hp-shadow-soft); }
body.hp-service-page .card-default .card-block { padding: 24px !important; }
body.hp-service-page .card-default .font-lato { margin: -24px -24px 17px; padding: 17px 20px; color: #fff; background: var(--hp-ink); font-family: Raleway, sans-serif !important; font-weight: 750; }
body.hp-service-page .card-default ul { margin: 0; padding: 0; list-style: none; }
body.hp-service-page .card-default li { margin: 0 !important; border-bottom: 1px solid var(--hp-line); }
body.hp-service-page .card-default li:last-child { border-bottom: 0; }
body.hp-service-page .card-default a { display: block; padding: 9px 3px; color: var(--hp-text) !important; font-size: 14px !important; font-weight: 650; text-decoration: none !important; }
body.hp-service-page .card-default a:hover { color: var(--hp-orange-dark) !important; }
body.hp-service-page section:has(.hp-service-quote) { padding: 0; }
.hp-service-quote { margin-top: 30px; padding: 54px 0; background: var(--hp-light); border-top: 1px solid var(--hp-line); }
.hp-service-quote-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.hp-service-quote h2 { margin: 0 0 6px; font-size: 30px; font-weight: 800; }
.hp-service-quote p { margin: 0; color: var(--hp-muted); }
.hp-service-quote-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 11px; }


/* Wide format image showcase supplied by Hotprint */
.hp-wide-showcase { padding: 22px 0 62px; background: #fff; }
.hp-wide-showcase-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hp-wide-showcase-section { margin-top: 38px; }
.hp-wide-showcase-section:first-child { margin-top: 0; }
.hp-wide-showcase-section h2 { margin: 0 0 8px; color: var(--hp-ink); font-size: 28px; font-weight: 800; }
.hp-wide-showcase-section p { margin: 0 0 18px; color: var(--hp-muted); }
.hp-wide-image-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.hp-wide-image-grid-single { grid-template-columns: minmax(0, 760px); }
.hp-wide-image-grid figure { margin: 0; overflow: hidden; border-radius: var(--hp-radius); background: #f5f6f7; box-shadow: var(--hp-shadow-soft); }
.hp-wide-image-grid img { display: block; width: 100%; height: 360px; object-fit: cover; }
.hp-wide-image-grid-single img { height: auto; max-height: 500px; object-fit: cover; }

/* Upgrade legacy footer without changing old page markup */
body.hp-inner-page .solution5 { height: auto !important; min-height: 225px; padding: 50px 0 36px; background: var(--hp-ink) !important; }
body.hp-inner-page .solution5 .row { display: flex; align-items: center; }
body.hp-inner-page .solution5 .col-md-6 { margin-top: 0 !important; }
body.hp-inner-page .solution5 img { width: 230px !important; max-width: 100%; background: transparent !important; }
body.hp-inner-page .solution5 span { color: rgba(255,255,255,.75) !important; }
body.hp-inner-page .solution5 a { color: var(--hp-orange) !important; }
body.hp-inner-page .solution5 .social-icon { margin-right: 10px !important; color: #fff !important; border-color: rgba(255,255,255,.3) !important; }

/* Form page framing only; the forms themselves remain untouched */
body.hp-form-page section:not(.page-header) { padding: 62px 0 80px; background: var(--hp-light); }
body.hp-form-page section:not(.page-header) > .container { padding-top: 0; }
body.hp-form-page section:not(.page-header) .col-md-8 { padding: 30px; background: #fff; border: 1px solid var(--hp-line); border-radius: var(--hp-radius); box-shadow: var(--hp-shadow-soft); }
body.hp-form-page section:not(.page-header) h3:first-child { margin-top: 0; color: var(--hp-ink); font-weight: 750; }

@media (min-width: 992px) {
    #header .hp-navigation.collapse { display: block !important; height: auto !important; }
}

/* Responsive */
@media (max-width: 1199px) {
    #header .hp-nav-list > li > a { padding: 0 9px; font-size: 12px !important; }
    #header .hp-brand img { width: 205px; }
    #header .hp-nav-phone { display: none; }
}
@media (max-width: 991px) {
    #header .hp-nav-shell { min-height: 74px; flex-wrap: wrap; padding: 12px 0; }
    #header .hp-brand img { width: 200px; }
    #header .hp-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    #header .hp-navigation { flex: 1 0 100%; width: 100%; margin: 0; }
    #header .hp-navigation.collapse:not(.show):not(.in) { display: none !important; }
    #header .hp-navigation.collapse.show,
    #header .hp-navigation.collapse.in { display: block !important; }
    #header .hp-nav-list { display: block; padding: 8px 0 14px; }
    #header .hp-nav-list > li > a { min-height: 46px; padding: 0 8px; }
    #header .hp-nav-list > li.active > a:after { right: auto; bottom: 4px; left: 8px; width: 38px; }
    #header .hp-nav-quote > a { display: inline-flex; margin: 8px 0 0; padding: 0 18px !important; }
    #header .hp-dropdown-menu { position: static; width: 100%; margin: 0 0 8px; padding: 8px; border-radius: 10px; box-shadow: none; }
    #header .hp-nav-services.open .hp-dropdown-menu,
    #header .hp-nav-services:hover .hp-dropdown-menu { display: grid; }
    .hp-hero { min-height: 590px; }
    .hp-hero-layout { grid-template-columns: 1fr; }
    .hp-hero-visual { display: none; }
    .hp-hero:before { background-position: 63% center; }
    .hp-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hp-trust-item:nth-child(2) { border-right: 0; }
    .hp-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--hp-line); }
    .hp-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hp-service-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hp-split { gap: 42px; }
    .hp-split-badge { right: 18px; }
    .hp-footer-grid { grid-template-columns: 1.25fr 1fr; }
    .hp-footer-grid > div:last-child { grid-column: 1 / -1; }
    body.hp-service-page #wrapper > .row { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
    body.hp-service-page #wrapper > .row > .col-md-3:nth-child(4) { grid-column: 1 / -1; }
    body.hp-service-page .card-default ul { columns: 2; column-gap: 28px; }
}
@media (max-width: 767px) {
    .hp-container { width: min(100% - 28px, 1180px); }
    .hp-section { padding: 66px 0; }
    .hp-hero { min-height: 620px; }
    .hp-hero:before { background: linear-gradient(180deg, rgba(16,19,24,.92), rgba(16,19,24,.9)), url('../../images/179180-Wellington-full.jpg') center/cover no-repeat; }
    .hp-home .hp-hero:before { background-image: linear-gradient(180deg, rgba(16,19,24,.92), rgba(16,19,24,.9)), url('../../images/179180-Wellington-full.jpg'); }
    .hp-hero-content { padding: 70px 0 92px; }
    .hp-hero-actions .hp-btn { width: 100%; }
    .hp-trust-strip { margin-top: -42px; }
    .hp-trust-grid { grid-template-columns: 1fr; }
    .hp-trust-item { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--hp-line); }
    .hp-trust-item:last-child { border-bottom: 0; }
    .hp-service-grid, .hp-service-list, .hp-process-grid, .hp-faq-grid { grid-template-columns: 1fr; }
    .hp-service-card { min-height: 330px; }
    .hp-split { grid-template-columns: 1fr; gap: 38px; }
    .hp-split-media img { min-height: 330px; }
    .hp-split-badge { right: 12px; bottom: 15px; max-width: calc(100% - 24px); }
    .hp-cta-inner, .hp-service-quote-inner { align-items: flex-start; flex-direction: column; }
    .hp-cta-actions, .hp-service-quote-actions { width: 100%; }
    .hp-cta-actions .hp-btn, .hp-service-quote-actions .hp-btn { width: 100%; }
    .hp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hp-footer-grid > div:last-child { grid-column: auto; }
    .hp-footer-bottom { flex-direction: column; }
    body.hp-service-page #wrapper > .row { width: min(100% - 28px, 1180px); margin-top: 42px !important; grid-template-columns: 1fr; }
    body.hp-service-page #wrapper > .row > .col-md-3:nth-child(4) { grid-column: auto; }
    body.hp-service-page #wrapper > .row > .col-md-3:nth-child(2),
    body.hp-service-page #wrapper > .row > .col-md-4,
    body.hp-service-page #wrapper > .row > .col-md-3:nth-child(4) { margin-bottom: 0; }
    body.hp-service-page #wrapper > .row img.img-fluid { min-height: 250px; }
    body.hp-service-page .card-default ul { columns: 1; }
    body.hp-inner-page .solution5 .row { display: block; }
    body.hp-inner-page .solution5 .col-md-6 { margin-bottom: 22px; }
    body.hp-form-page section:not(.page-header) .col-md-8 { padding: 20px; }
    .hp-wide-showcase-inner { width: min(100% - 28px, 1180px); }
    .hp-wide-image-grid, .hp-wide-image-grid-single { grid-template-columns: 1fr; }
    .hp-wide-image-grid img, .hp-wide-image-grid-single img { height: auto; max-height: none; }
}

/* Homepage direction refinement - lighter, more product-led */
.hp-home { background: #fff; }
.hp-home #header { box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.hp-home #header .hp-nav-shell { min-height: 78px; }
.hp-home #header .hp-nav-list > li > a { min-height: 78px; }
.hp-home #header .hp-nav-list > li.active > a:after { bottom: 14px; }

.hp-home .hp-hero {
    min-height: 470px;
    padding: 52px 0 48px;
    color: var(--hp-text);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #f4f5f6 100%);
    border-bottom: 1px solid var(--hp-line);
}
.hp-home .hp-hero:before {
    content: "";
    position: absolute;
    inset: auto -90px -170px auto;
    width: 420px;
    height: 420px;
    background: transparent;
    border: 64px solid rgba(237,125,49,.08);
    border-radius: 50%;
}
.hp-home .hp-hero:after { display: none; }
.hp-home .hp-hero-layout {
    grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
    gap: 62px;
}
.hp-home .hp-hero-content {
    position: relative;
    max-width: 650px;
    padding: 26px 28px 22px;
    isolation: isolate;
}
.hp-home .hp-hero-content:before {
    content: "";
    position: absolute;
    inset: -10px -26px -12px -12px;
    z-index: -1;
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.89) 45%, rgba(255,255,255,.97) 100%), url('../../images/179180-Wellington-full.jpg') center center/cover no-repeat;
    box-shadow: 0 8px 28px rgba(15,28,40,.05);
}
.hp-home .hp-hero-content:after {
    content: "";
    position: absolute;
    inset: -10px -26px -12px -12px;
    z-index: -1;
    border: 1px solid rgba(24,50,74,.08);
    border-radius: 28px;
}
.hp-home .hp-hero .hp-kicker { color: var(--hp-orange-dark); }
.hp-home .hp-hero h1 {
    max-width: 650px;
    margin-bottom: 18px;
    color: var(--hp-ink);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.04;
}
.hp-home .hp-hero h1 span { color: var(--hp-orange); }
.hp-home .hp-hero-lead {
    max-width: 640px;
    margin-bottom: 26px;
    color: var(--hp-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
}
.hp-btn--outline {
    color: var(--hp-ink) !important;
    border-color: #aeb5bc;
    background: #fff;
}
.hp-btn--outline:hover {
    color: #fff !important;
    border-color: var(--hp-ink);
    background: var(--hp-ink);
}
.hp-home .hp-hero-note {
    margin-top: 24px;
    color: var(--hp-muted);
    font-size: 14px;
}
.hp-home .hp-hero-note i { color: var(--hp-orange); }


.hp-hero-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hp-print-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    height: 385px;
}
.hp-print-showcase a {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff !important;
    background: #ddd;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15,28,40,.13);
    text-decoration: none !important;
}
.hp-print-showcase a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(14,18,22,.82) 100%);
}
.hp-print-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.hp-print-showcase a:hover img { transform: scale(1.035); }
.hp-showcase-main { grid-row: 1 / 3; }
.hp-showcase-main span,
.hp-showcase-small span {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    font-family: Raleway, sans-serif;
    font-weight: 800;
}
.hp-showcase-main span { padding: 24px; }
.hp-showcase-main strong { display: block; font-size: 23px; }
.hp-showcase-main small { display: block; margin-top: 3px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; }
.hp-showcase-small span { padding: 15px 16px; font-size: 15px; }
.hp-print-showcase:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -14px;
    right: -14px;
    width: 46%;
    height: 44%;
    border: 3px solid rgba(237,125,49,.5);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 20px 0 0;
}

.hp-home .hp-trust-strip { margin-top: 0; background: #fff; }
.hp-home .hp-trust-strip .hp-container { width: 100%; max-width: none; }
.hp-home .hp-trust-grid {
    border: 0;
    border-bottom: 1px solid var(--hp-line);
    border-radius: 0;
    box-shadow: none;
}
.hp-home .hp-trust-item { min-height: 86px; padding: 16px 26px; }
.hp-home .hp-trust-icon { width: 40px; height: 40px; flex-basis: 40px; }

.hp-home .hp-trust-strip + .hp-section { padding-top: 58px; }
.hp-home .hp-section-heading { margin-bottom: 30px; }
.hp-home .hp-section-heading h2 { font-size: clamp(29px, 3.5vw, 42px); }
.hp-home .hp-service-grid { gap: 20px; }
.hp-home .hp-service-card {
    min-height: 0;
    background: #fff;
    border: 1px solid var(--hp-line);
    box-shadow: 0 8px 24px rgba(15,28,40,.07);
}
.hp-home .hp-service-card img {
    position: static;
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.hp-home .hp-service-card:after { display: none; }
.hp-home .hp-service-card-content {
    position: static;
    padding: 22px 23px 24px;
}
.hp-home .hp-service-card h3 { color: var(--hp-ink); font-size: 21px; }
.hp-home .hp-service-card p { min-height: 68px; color: var(--hp-muted); }
.hp-home .hp-service-card a { color: var(--hp-ink) !important; }
.hp-home .hp-service-card a:hover { color: var(--hp-orange-dark) !important; }

@media (max-width: 1199px) {
    .hp-home .hp-hero-layout { grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); gap: 42px; }
}
@media (max-width: 991px) {
    .hp-home #header .hp-nav-shell { min-height: 74px; }
    .hp-home #header .hp-nav-list > li > a { min-height: 46px; }
    .hp-home .hp-hero { min-height: 0; padding: 54px 0; }
    .hp-home .hp-hero-layout { grid-template-columns: 1fr; gap: 36px; }
    .hp-home .hp-print-showcase { display: grid; height: 360px; }
    .hp-home .hp-hero-visual { display: none; }
}
@media (max-width: 767px) {
    .hp-home .hp-hero { padding: 42px 0 38px; background: #fff; }
    .hp-home .hp-hero:before { display: none; }
    .hp-home .hp-hero-content { padding: 18px 18px 14px; }
    .hp-home .hp-hero-content:before,
    .hp-home .hp-hero-content:after { inset: -8px; border-radius: 22px; }
    .hp-home .hp-hero h1 { font-size: 40px; }
    .hp-home .hp-hero-actions .hp-btn { width: 100%; }
    .hp-home .hp-print-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 210px 150px;
        height: auto;
    }
    .hp-showcase-main { grid-column: 1 / 3; grid-row: 1; }
    .hp-home .hp-trust-grid { grid-template-columns: 1fr 1fr; }
    .hp-home .hp-trust-item { min-height: 84px; padding: 14px; }
    .hp-home .hp-trust-item:nth-child(odd) { border-right: 1px solid var(--hp-line); }
    .hp-home .hp-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--hp-line); }
    .hp-home .hp-trust-item strong { font-size: 13px; }
    .hp-home .hp-trust-item small { font-size: 11px; }
    .hp-home .hp-trust-strip + .hp-section { padding-top: 48px; }
    .hp-home .hp-service-card img { height: 210px; }
    .hp-home .hp-service-card p { min-height: 0; }
}


/* Final homepage hero direction: retain the original Wellington panorama as the visual focus */
.hp-home .hp-hero {
    min-height: 535px;
    padding: 0;
    color: #fff;
    background: #17202a;
    border-bottom: 0;
}
.hp-home .hp-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(12,18,24,.88) 0%, rgba(12,18,24,.70) 38%, rgba(12,18,24,.22) 65%, rgba(12,18,24,.05) 100%),
        url('../../images/hotprint-wellington.jpg') center center / cover no-repeat;
}
.hp-home .hp-hero:after {
    content: "";
    display: block;
    position: absolute;
    inset: auto 0 0 0;
    height: 110px;
    background: linear-gradient(180deg, transparent, rgba(12,18,24,.22));
    pointer-events: none;
}
.hp-home .hp-hero .hp-container {
    position: relative;
    z-index: 2;
}
.hp-home .hp-hero-layout {
    display: block;
}
.hp-home .hp-hero-content {
    position: relative;
    max-width: 675px;
    padding: 84px 0 76px;
    isolation: auto;
}
.hp-home .hp-hero-content:before,
.hp-home .hp-hero-content:after {
    display: none;
}
.hp-home .hp-hero .hp-kicker {
    color: #ffc49b;
}
.hp-home .hp-hero h1 {
    max-width: 660px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(43px, 5.4vw, 68px);
    line-height: 1.02;
    text-shadow: 0 3px 24px rgba(0,0,0,.28);
}
.hp-home .hp-hero h1 span {
    color: #ff8a3d;
}
.hp-home .hp-hero-lead {
    max-width: 620px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.91);
    font-size: clamp(17px, 2vw, 20px);
    text-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.hp-home .hp-btn--outline {
    color: #fff !important;
    border-color: rgba(255,255,255,.72);
    background: rgba(10,18,25,.22);
    backdrop-filter: blur(3px);
}
.hp-home .hp-btn--outline:hover {
    color: var(--hp-ink) !important;
    border-color: #fff;
    background: #fff;
}
.hp-home .hp-hero-note {
    color: rgba(255,255,255,.85);
    text-shadow: 0 2px 12px rgba(0,0,0,.26);
}
.hp-home .hp-hero-note i {
    color: #ff8a3d;
}
.hp-home .hp-trust-strip {
    position: relative;
    z-index: 4;
}

@media (max-width: 991px) {
    .hp-home .hp-hero {
        min-height: 500px;
        padding: 0;
    }
    .hp-home .hp-hero:before {
        background:
            linear-gradient(90deg, rgba(12,18,24,.89) 0%, rgba(12,18,24,.72) 55%, rgba(12,18,24,.28) 100%),
            url('../../images/hotprint-wellington.jpg') 56% center / cover no-repeat;
    }
    .hp-home .hp-hero-content {
        padding: 70px 0 68px;
    }
}

@media (max-width: 767px) {
    .hp-home .hp-hero {
        min-height: 0;
        padding: 0;
        background: #17202a;
    }
    .hp-home .hp-hero:before {
        display: block;
        background:
            linear-gradient(180deg, rgba(12,18,24,.76) 0%, rgba(12,18,24,.82) 100%),
            url('../../images/hotprint-wellington.jpg') 57% center / cover no-repeat;
    }
    .hp-home .hp-hero-content {
        padding: 58px 0 64px;
    }
    .hp-home .hp-hero h1 {
        font-size: 42px;
    }
    .hp-home .hp-hero-actions .hp-btn {
        width: 100%;
    }
}


/* Wellington panorama hero correction - a real image element keeps the original city photo visible */
.hp-home .hp-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 0;
    color: #fff;
    background: #17202a;
    border: 0;
}
.hp-home .hp-hero:before,
.hp-home .hp-hero:after {
    display: none !important;
    content: none !important;
}
.hp-home .hp-hero-city {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hp-home .hp-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,16,22,.86) 0%, rgba(10,16,22,.68) 34%, rgba(10,16,22,.28) 56%, rgba(10,16,22,.03) 78%, rgba(10,16,22,0) 100%);
}
.hp-home .hp-hero .hp-container {
    position: relative;
    z-index: 2;
}
.hp-home .hp-hero-layout { display: block; }
.hp-home .hp-hero-content {
    position: relative;
    max-width: 665px;
    padding: 72px 0 68px;
    isolation: auto;
}
.hp-home .hp-hero-content:before,
.hp-home .hp-hero-content:after {
    display: none !important;
    content: none !important;
}
.hp-home .hp-hero .hp-kicker { color: #ffd0ae; }
.hp-home .hp-hero h1 {
    max-width: 650px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(43px, 5.2vw, 66px);
    line-height: 1.02;
    text-shadow: 0 3px 22px rgba(0,0,0,.4);
}
.hp-home .hp-hero h1 span { color: #ff8a3d; }
.hp-home .hp-hero-lead {
    max-width: 610px;
    margin-bottom: 27px;
    color: rgba(255,255,255,.94);
    font-size: clamp(17px, 2vw, 20px);
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hp-home .hp-btn--outline {
    color: #fff !important;
    border-color: rgba(255,255,255,.78);
    background: rgba(10,18,25,.28);
}
.hp-home .hp-btn--outline:hover {
    color: var(--hp-ink) !important;
    border-color: #fff;
    background: #fff;
}
.hp-home .hp-hero-note {
    color: rgba(255,255,255,.88);
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.hp-home .hp-hero-note i { color: #ff8a3d; }
@media (max-width: 991px) {
    .hp-home .hp-hero { min-height: 485px; }
    .hp-home .hp-hero-city { object-position: 56% center; }
    .hp-home .hp-hero-shade { background: linear-gradient(90deg, rgba(10,16,22,.9) 0%, rgba(10,16,22,.73) 52%, rgba(10,16,22,.18) 100%); }
    .hp-home .hp-hero-content { padding: 64px 0 62px; }
}
@media (max-width: 767px) {
    .hp-home .hp-hero { min-height: 0; }
    .hp-home .hp-hero-city { object-position: 58% center; }
    .hp-home .hp-hero-shade { background: linear-gradient(180deg, rgba(10,16,22,.72) 0%, rgba(10,16,22,.84) 100%); }
    .hp-home .hp-hero-content { padding: 54px 0 58px; }
    .hp-home .hp-hero h1 { font-size: 42px; }
}


/* Mobile panorama refinement: show the complete wide Wellington image above the copy */
@media (max-width: 767px) {
    .hp-home .hp-hero {
        display: block;
        min-height: 0;
        background: #17202a;
    }
    .hp-home .hp-hero-city {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 592;
        object-fit: cover;
        object-position: center center;
    }
    .hp-home .hp-hero-shade {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        height: auto;
        aspect-ratio: 1920 / 592;
        background: linear-gradient(180deg, rgba(10,16,22,.05) 0%, rgba(10,16,22,.20) 100%);
        pointer-events: none;
    }
    .hp-home .hp-hero .hp-container {
        width: min(100% - 30px, 1180px);
    }
    .hp-home .hp-hero-content {
        max-width: none;
        padding: 30px 0 38px;
    }
    .hp-home .hp-hero .hp-kicker {
        margin-bottom: 10px;
        font-size: 11px;
        letter-spacing: .10em;
    }
    .hp-home .hp-hero h1 {
        max-width: none;
        margin-bottom: 15px;
        font-size: clamp(34px, 9vw, 40px);
        line-height: 1.02;
    }
    .hp-home .hp-hero-lead {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.52;
    }
    .hp-home .hp-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .hp-home .hp-hero-actions .hp-btn {
        width: 100%;
        min-height: 48px;
        padding: 0 10px;
        font-size: 13px;
        white-space: nowrap;
    }
    .hp-home .hp-hero-note {
        justify-content: space-between;
        gap: 8px 14px;
        margin-top: 20px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .hp-home .hp-hero-actions {
        grid-template-columns: 1fr;
    }
    .hp-home .hp-hero h1 {
        font-size: 34px;
    }
    .hp-home .hp-hero-note {
        display: grid;
        grid-template-columns: 1fr;
    }
}


/* Print Help and FAQ page */
body.hp-help-page { background: #fff; }
body.hp-help-page .page-header { padding: 54px 0 50px !important; }
.hp-help-intro-section { padding: 66px 0 56px; }
.hp-help-intro {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 54px;
}
.hp-help-image {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 20px;
    box-shadow: var(--hp-shadow);
}
.hp-help-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-help-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(15,24,32,.55));
}
.hp-help-copy h2 {
    margin: 0 0 17px;
    font-size: clamp(31px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
}
.hp-help-copy > p {
    margin: 0 0 23px;
    color: var(--hp-muted);
    font-size: 18px;
}
.hp-help-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hp-help-prep-section { padding: 62px 0 70px; background: var(--hp-light); }
.hp-help-prep-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.hp-help-prep-card {
    padding: 25px 23px;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(15,28,40,.06);
}
.hp-help-prep-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    color: var(--hp-orange);
    background: #fff0e5;
    border-radius: 12px;
    font-size: 20px;
}
.hp-help-prep-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 800; }
.hp-help-prep-card p { margin: 0; color: var(--hp-muted); font-size: 14px; line-height: 1.6; }
.hp-help-faq-section { padding: 76px 0 84px; }
.hp-help-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.hp-help-faq-card {
    padding: 26px 27px;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 15px;
    box-shadow: 0 7px 20px rgba(15,28,40,.045);
}
.hp-help-faq-card h3 {
    position: relative;
    margin: 0 0 9px;
    padding-left: 27px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}
.hp-help-faq-card h3:before {
    content: "?";
    position: absolute;
    top: 1px;
    left: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hp-orange);
    border-radius: 50%;
    font: 800 12px/1 Raleway, sans-serif;
}
.hp-help-faq-card p { margin: 0; color: var(--hp-muted); font-size: 15px; line-height: 1.65; }
.hp-help-contact-band {
    padding: 56px 0;
    background: var(--hp-navy);
}
.hp-help-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}
.hp-help-contact-inner h2 { margin: 0 0 7px; color: #fff; font-size: 32px; font-weight: 800; }
.hp-help-contact-inner p { margin: 0; color: rgba(255,255,255,.72); }
.hp-help-contact-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 11px; }

@media (max-width: 991px) {
    .hp-help-intro { grid-template-columns: 1fr; gap: 34px; }
    .hp-help-image { min-height: 330px; }
    .hp-help-prep-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
    body.hp-help-page .page-header { padding: 40px 0 38px !important; }
    .hp-help-intro-section { padding: 42px 0 46px; }
    .hp-help-image { min-height: 245px; }
    .hp-help-copy > p { font-size: 16px; }
    .hp-help-actions .hp-btn { width: 100%; }
    .hp-help-prep-section { padding: 48px 0 54px; }
    .hp-help-prep-grid, .hp-help-faq-grid { grid-template-columns: 1fr; }
    .hp-help-faq-section { padding: 54px 0 62px; }
    .hp-help-contact-inner { align-items: flex-start; flex-direction: column; }
    .hp-help-contact-actions { width: 100%; }
    .hp-help-contact-actions .hp-btn { width: 100%; }
}
