.htsp-page,
.htsp-page * {
    box-sizing: border-box;
}

.htsp-page {
    --htsp-accent: #27a33f;
    --htsp-accent-dark: #16822b;
    --htsp-accent-soft: #edf8ef;
    --htsp-dark: #111827;
    --htsp-text: #4b5563;
    --htsp-muted: #7b8494;
    --htsp-border: #e5e7eb;
    --htsp-border-soft: #eef1f4;
    --htsp-bg: #ffffff;
    --htsp-soft: #f8faf9;
    --htsp-shadow: 0 18px 48px rgba(17, 24, 39, .055);
    width: 100%;
    overflow: hidden;
    background: var(--htsp-bg);
    color: var(--htsp-text);
    font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.htsp-page a {
    color: inherit;
    text-decoration: none;
    transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.htsp-page svg.htsp-svg {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    vertical-align: middle;
}

.htsp-container {
    width: min(1400px, calc(100% - 96px));
    margin-inline: auto;
}

.htsp-header {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--htsp-border-soft);
}

.htsp-header-top {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #1f2937;
}

.htsp-top-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.htsp-top-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.htsp-top-links svg {
    width: 15px;
    height: 15px;
    color: var(--htsp-accent);
}

.htsp-top-support {
    min-height: 34px;
    padding: 8px 18px;
    border-radius: 6px;
    color: #fff !important;
    background: linear-gradient(180deg, var(--htsp-accent), var(--htsp-accent-dark));
    box-shadow: 0 10px 20px rgba(39, 163, 63, .16);
}

.htsp-main-header {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 36px;
}

.htsp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: var(--htsp-dark) !important;
}

.htsp-logo-mark {
    width: 43px;
    height: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--htsp-accent);
}

.htsp-logo-mark span {
    position: absolute;
    display: block;
    width: 24px;
    height: 8px;
    border-radius: 99px;
    background: currentColor;
    transform: rotate(-38deg);
}

.htsp-logo-mark span:nth-child(1) { left: 0; top: 13px; }
.htsp-logo-mark span:nth-child(2) { left: 11px; top: 9px; }
.htsp-logo-mark span:nth-child(3) { left: 22px; top: 14px; }

.htsp-logo-text {
    color: var(--htsp-dark);
    font-size: 33px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.06em;
}

.htsp-logo-dot {
    color: var(--htsp-accent);
    font-size: 36px;
    line-height: .8;
    margin-left: -7px;
}

.htsp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    white-space: nowrap;
}

.htsp-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
}

.htsp-nav a:hover,
.htsp-top-links a:hover,
.htsp-footer a:hover {
    color: var(--htsp-accent);
}

.htsp-down {
    font-size: 14px;
    transform: translateY(-1px);
}

.htsp-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}

.htsp-icon-btn {
    position: relative;
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--htsp-border);
    border-radius: 8px;
    background: #fff;
    color: #111827;
}

.htsp-icon-btn:hover {
    border-color: rgba(39, 163, 63, .45);
    color: var(--htsp-accent);
    transform: translateY(-1px);
}

.htsp-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background: var(--htsp-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.htsp-login,
.htsp-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 34px;
    border-radius: 7px;
    color: #fff !important;
    background: linear-gradient(180deg, var(--htsp-accent), var(--htsp-accent-dark));
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 14px 26px rgba(39, 163, 63, .18);
}

.htsp-login:hover,
.htsp-primary:hover,
.htsp-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(39, 163, 63, .24);
}

.htsp-main {
    position: relative;
}

.htsp-hero {
    position: relative;
    padding: 68px 0 70px;
    background:
        radial-gradient(circle at 75% 42%, rgba(35, 163, 65, .05), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
}

.htsp-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 88%);
    pointer-events: none;
}

.htsp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: 64px;
}

.htsp-hero-content {
    max-width: 650px;
}

.htsp-eyebrow,
.htsp-hero h1 {
    color: var(--htsp-dark);
    font-size: clamp(31px, 3vw, 42px);
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: -.045em;
    margin: 0;
}

.htsp-eyebrow {
    margin-bottom: 4px;
}

.htsp-hero h1 {
    margin: 0 0 27px;
}

.htsp-hero p {
    max-width: 585px;
    margin: 0 0 31px;
    color: #374151;
    font-size: 17px;
    line-height: 1.85;
    font-weight: 400;
}

.htsp-search {
    width: min(620px, 100%);
    height: 62px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 8px 0 22px;
    background: #fff;
    border: 1px solid #dfe5e8;
    border-radius: 8px;
    box-shadow: 0 11px 30px rgba(17,24,39,.035);
}

.htsp-search svg {
    width: 24px;
    height: 24px;
    color: #9aa4b2;
}

.htsp-search input {
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    color: var(--htsp-dark);
    font: inherit;
    font-size: 15px;
    box-shadow: none !important;
}

.htsp-search input::placeholder {
    color: #98a2b3;
}

.htsp-search button {
    width: 68px;
    height: 50px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(180deg, var(--htsp-accent), var(--htsp-accent-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex: 0 0 auto;
    transition: transform .22s ease, box-shadow .22s ease;
}

.htsp-hero-art {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.htsp-hero-art-image {
    min-height: 330px;
}

.htsp-hero-art-image img {
    display: block;
    max-width: min(100%, 520px);
    width: 100%;
    height: auto;
    object-fit: contain;
}

.htsp-rings {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, rgba(15,23,42,.035) 0 1px, transparent 1px 37px),
        radial-gradient(circle, rgba(255,255,255,.75), rgba(255,255,255,0) 66%);
}

.htsp-chat-bubble {
    position: absolute;
    left: 7%;
    top: 30%;
    width: 150px;
    height: 76px;
    border-radius: 40px 40px 40px 8px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(17,24,39,.06);
    box-shadow: 0 22px 55px rgba(17,24,39,.11);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding-left: 34px;
    z-index: 3;
}

.htsp-chat-bubble span {
    display: block;
    height: 4px;
    border-radius: 99px;
    background: var(--htsp-accent);
}

.htsp-chat-bubble span:first-child { width: 76px; }
.htsp-chat-bubble span:last-child { width: 56px; opacity: .9; }

.htsp-headset {
    position: relative;
    width: 310px;
    height: 255px;
    filter: drop-shadow(0 35px 45px rgba(17,24,39,.18));
}

.htsp-band {
    position: absolute;
    left: 63px;
    top: 9px;
    width: 187px;
    height: 194px;
    border: 29px solid #f8f9f8;
    border-bottom-color: transparent;
    border-radius: 120px 120px 0 0;
    transform: rotate(12deg);
    box-shadow: inset 0 9px 20px rgba(0,0,0,.12), 0 9px 18px rgba(0,0,0,.04);
}

.htsp-band::before {
    content: "";
    position: absolute;
    inset: -22px;
    border: 6px solid rgba(0,0,0,.08);
    border-bottom: 0;
    border-radius: 130px 130px 0 0;
}

.htsp-cup {
    position: absolute;
    top: 112px;
    width: 82px;
    height: 120px;
    border-radius: 50px;
    background: linear-gradient(135deg, #fff, #edf1ee 84%);
    border: 1px solid rgba(15,23,42,.045);
    box-shadow: inset -12px -16px 27px rgba(0,0,0,.08), inset 10px 9px 17px rgba(255,255,255,.9), 0 24px 32px rgba(0,0,0,.1);
}

.htsp-left-cup {
    left: 47px;
    transform: rotate(-13deg);
}

.htsp-left-cup::after {
    content: "";
    position: absolute;
    inset: 24px 20px;
    border-radius: 50%;
    background: #252525;
    box-shadow: inset 8px 5px 13px rgba(255,255,255,.07);
}

.htsp-right-cup {
    right: 45px;
    top: 100px;
    width: 110px;
    height: 128px;
    transform: rotate(10deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.htsp-mini-logo {
    position: relative;
    width: 40px;
    height: 31px;
    color: var(--htsp-accent);
}

.htsp-mini-logo span {
    position: absolute;
    width: 21px;
    height: 7px;
    border-radius: 99px;
    background: currentColor;
    transform: rotate(-38deg);
}
.htsp-mini-logo span:nth-child(1){ left: 1px; top: 14px; }
.htsp-mini-logo span:nth-child(2){ left: 11px; top: 9px; }
.htsp-mini-logo span:nth-child(3){ left: 21px; top: 14px; }

.htsp-mic-line {
    position: absolute;
    left: 58px;
    bottom: 20px;
    width: 90px;
    height: 23px;
    border-bottom: 19px solid #343434;
    border-radius: 0 0 42px 42px;
    transform: rotate(4deg);
}

.htsp-mic {
    position: absolute;
    left: 6px;
    bottom: 18px;
    width: 76px;
    height: 24px;
    border-radius: 99px;
    background: #2d2d2d;
    transform: rotate(4deg);
    box-shadow: inset 0 5px 8px rgba(255,255,255,.05);
}

.htsp-quick-section {
    position: relative;
    z-index: 3;
    margin-top: -12px;
}

.htsp-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.htsp-card,
.htsp-category-card,
.htsp-panel,
.htsp-help-strip {
    background: #fff;
    border: 1px solid var(--htsp-border);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(17,24,39,.028);
}

.htsp-card {
    min-height: 230px;
    padding: 23px 24px 21px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--htsp-text);
}

.htsp-card:hover,
.htsp-category-card:hover,
.htsp-article:hover,
.htsp-help-strip a:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 163, 63, .28);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .07);
}

.htsp-card-icon,
.htsp-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--htsp-accent-soft);
    color: var(--htsp-accent);
}

.htsp-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    margin-bottom: 26px;
}

.htsp-card-icon svg {
    width: 29px;
    height: 29px;
}

.htsp-card strong {
    display: block;
    color: var(--htsp-dark);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 8px;
}

.htsp-card-desc {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    max-width: 265px;
}

.htsp-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--htsp-accent);
    font-size: 14px;
    font-weight: 600;
}

.htsp-card-link svg,
.htsp-section-head a svg,
.htsp-primary svg {
    width: 17px;
    height: 17px;
}

.htsp-knowledge {
    padding-top: 54px;
    padding-bottom: 43px;
}

.htsp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.htsp-section-head h2,
.htsp-panel h3,
.htsp-help-strip h3 {
    margin: 0;
    color: var(--htsp-dark);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -.025em;
}

.htsp-section-head h2 {
    font-size: 25px;
}

.htsp-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--htsp-accent);
    font-weight: 600;
    font-size: 14px;
}

.htsp-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.htsp-category-card {
    min-height: 92px;
    padding: 20px 21px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.htsp-category-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: #667085;
    background: #f2f5f7;
}

.htsp-category-icon svg {
    width: 24px;
    height: 24px;
}

.htsp-category-text {
    min-width: 0;
    display: block;
}

.htsp-category-text strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--htsp-dark);
    font-size: 14px;
    font-weight: 600;
}

.htsp-category-text small {
    display: block;
    color: #667085;
    font-size: 12px;
    font-weight: 500;
    margin-top: 1px;
}

.htsp-lower-grid {
    display: grid;
    grid-template-columns: 1.12fr .98fr;
    gap: 28px;
    margin-top: 49px;
}

.htsp-panel {
    min-height: 286px;
    padding: 29px 31px;
}

.htsp-panel h3 {
    font-size: 21px;
    margin-bottom: 22px;
}

.htsp-article-list {
    display: flex;
    flex-direction: column;
    margin-top: 2px;
}

.htsp-article {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #111827;
    border-bottom: 1px solid var(--htsp-border-soft);
    font-size: 14px;
    font-weight: 500;
}

.htsp-article:first-child {
    border-top: 0;
}

.htsp-article span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.htsp-article span svg {
    width: 17px;
    height: 17px;
    color: var(--htsp-accent);
}

.htsp-article > svg {
    width: 17px;
    height: 17px;
    color: #a5acb8;
}

.htsp-ticket-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 286px;
    background: linear-gradient(105deg, #fff 0%, #f8fbf8 55%, #eff8ef 100%);
}

.htsp-ticket-copy {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

.htsp-ticket-copy p {
    margin: -12px 0 21px;
    color: #4b5563;
    font-size: 13px;
}

.htsp-ticket-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.htsp-ticket-copy li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #26313f;
    font-size: 14px;
    font-weight: 500;
}

.htsp-ticket-copy li svg {
    width: 17px;
    height: 17px;
    color: var(--htsp-accent);
}

.htsp-primary {
    min-height: 45px;
    padding: 0 22px;
}

.htsp-envelope {
    position: absolute;
    right: 41px;
    bottom: 27px;
    width: 210px;
    height: 135px;
    opacity: .75;
}

.htsp-envelope-shape {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 165px;
    height: 100px;
    border: 3px solid rgba(31, 84, 51, .13);
    border-radius: 11px;
    transform: rotate(-14deg);
}

.htsp-envelope-shape::before,
.htsp-envelope-shape::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 48%, rgba(31, 84, 51, .13) 49%, transparent 51%);
}

.htsp-envelope-shape::after {
    background: linear-gradient(225deg, transparent 48%, rgba(31, 84, 51, .13) 49%, transparent 51%);
}

.htsp-small-bubble {
    position: absolute;
    right: 1px;
    top: 0;
    width: 96px;
    height: 60px;
    border-radius: 28px 28px 8px 28px;
    border: 3px solid rgba(31, 84, 51, .12);
    transform: rotate(17deg);
    display: flex;
    flex-direction: column;
    gap: 9px;
    justify-content: center;
    padding-left: 25px;
}

.htsp-small-bubble span {
    display: block;
    width: 45px;
    height: 3px;
    background: rgba(31, 84, 51, .16);
    border-radius: 99px;
}
.htsp-small-bubble span:last-child { width: 32px; }

.htsp-help-strip {
    min-height: 110px;
    margin-top: 31px;
    padding: 20px 31px 20px 39px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    background: linear-gradient(105deg, #fff 0%, #fbfdfb 48%, #f5fbf5 100%);
}

.htsp-help-icon {
    width: 63px;
    height: 63px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--htsp-accent);
}

.htsp-help-icon svg {
    width: 62px;
    height: 62px;
}

.htsp-help-strip h3 {
    font-size: 20px;
    margin-bottom: 2px;
}

.htsp-help-strip p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.htsp-help-strip a {
    min-width: 210px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfd7df;
    border-radius: 7px;
    background: #fff;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

.htsp-footer {
    margin-top: 0;
    background: #fff;
    border-top: 1px solid var(--htsp-border-soft);
}

.htsp-footer-grid {
    padding: 61px 0 60px;
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) .75fr .75fr .75fr minmax(280px, 1.18fr);
    gap: 50px;
    border-bottom: 1px solid var(--htsp-border-soft);
}

.htsp-footer-brand .htsp-logo-text {
    font-size: 31px;
}

.htsp-footer-brand p,
.htsp-newsletter p {
    margin: 20px 0 0;
    max-width: 315px;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}

.htsp-socials {
    display: flex;
    gap: 15px;
    margin-top: 28px;
}

.htsp-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f6;
    color: #98a2b3;
    font-weight: 700;
    line-height: 1;
}

.htsp-footer-col,
.htsp-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.htsp-footer-col h4,
.htsp-newsletter h4 {
    margin: 0 0 8px;
    color: var(--htsp-dark);
    font-size: 16px;
    font-weight: 600;
}

.htsp-footer-col a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

.htsp-newsletter {
    padding-left: 50px;
    border-left: 1px solid var(--htsp-border-soft);
}

.htsp-newsletter p {
    margin-top: -4px;
}

.htsp-newsletter form {
    margin-top: 24px;
    height: 52px;
    display: flex;
    align-items: center;
    border: 1px solid var(--htsp-border);
    border-radius: 7px;
    background: #fff;
    overflow: hidden;
}

.htsp-newsletter input {
    min-width: 0;
    flex: 1;
    height: 100%;
    border: 0 !important;
    outline: 0 !important;
    padding: 0 18px !important;
    background: transparent !important;
    box-shadow: none !important;
    font: inherit;
    font-size: 14px;
}

.htsp-newsletter button {
    width: 50px;
    height: 44px;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(180deg, var(--htsp-accent), var(--htsp-accent-dark));
    color: #fff;
    cursor: pointer;
}

.htsp-newsletter button svg {
    width: 19px;
    height: 19px;
}

.htsp-footer-bottom {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.htsp-footer-bottom p {
    margin: 0;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 500;
}

.htsp-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.htsp-payments span {
    min-width: 58px;
    height: 34px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--htsp-border-soft);
    border-radius: 7px;
    color: #1e40af;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.htsp-search-item.htsp-hidden,
.htsp-no-results.htsp-hidden,
.htsp-hidden {
    display: none !important;
}

.htsp-no-results {
    width: 100%;
    padding: 22px;
    border: 1px dashed rgba(39,163,63,.35);
    border-radius: 12px;
    background: #fbfefb;
    color: #344054;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1280px) {
    .htsp-container { width: min(1180px, calc(100% - 48px)); }
    .htsp-main-header { grid-template-columns: auto 1fr auto; gap: 24px; }
    .htsp-nav { gap: 22px; }
    .htsp-login { padding-inline: 24px; }
    .htsp-category-grid { grid-template-columns: repeat(3, 1fr); }
    .htsp-footer-grid { grid-template-columns: 1.2fr .8fr .8fr .8fr; }
    .htsp-newsletter { grid-column: 1 / -1; padding-left: 0; border-left: 0; max-width: 440px; }
}

@media (max-width: 1024px) {
    .htsp-container { width: min(100% - 36px, 960px); }
    .htsp-header-top { display: none; }
    .htsp-main-header {
        min-height: auto;
        padding: 18px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
    }
    .htsp-logo-text { font-size: 28px; }
    .htsp-logo-mark { width: 37px; transform: scale(.9); transform-origin: left center; }
    .htsp-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }
    .htsp-nav::-webkit-scrollbar { display: none; }
    .htsp-nav a {
        padding: 8px 14px;
        border-radius: 999px;
        background: #f7faf7;
        border: 1px solid #edf2ed;
        font-size: 13px;
    }
    .htsp-actions { gap: 8px; }
    .htsp-icon-btn { width: 42px; height: 42px; }
    .htsp-login { min-height: 42px; padding-inline: 18px; font-size: 13px; }
    .htsp-hero { padding: 43px 0 48px; }
    .htsp-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .htsp-hero-content { max-width: none; text-align: left; }
    .htsp-hero p { max-width: 760px; }
    .htsp-hero-art { min-height: 250px; transform: scale(.82); transform-origin: center top; margin-bottom: -35px; }
    .htsp-hero-art-image { min-height: auto; transform: none; margin-bottom: 0; }
    .htsp-hero-art-image img { max-width: min(100%, 420px); }
    .htsp-card-grid { grid-template-columns: repeat(2, 1fr); }
    .htsp-card { min-height: 210px; }
    .htsp-lower-grid { grid-template-columns: 1fr; }
    .htsp-envelope { opacity: .5; }
    .htsp-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 767px) {
    .htsp-container { width: calc(100% - 28px); }
    .htsp-page { font-size: 14px; }
    .htsp-main-header { padding: 14px 0; }
    .htsp-logo-text { font-size: 25px; }
    .htsp-logo-dot { font-size: 28px; }
    .htsp-actions { width: auto; }
    .htsp-actions .htsp-icon-btn:first-child { display: none; }
    .htsp-login { padding-inline: 14px; }
    .htsp-hero {
        padding: 34px 0 36px;
        text-align: left;
    }
    .htsp-eyebrow,
    .htsp-hero h1 {
        font-size: 29px;
        letter-spacing: -.035em;
    }
    .htsp-hero h1 { margin-bottom: 18px; }
    .htsp-hero p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 22px;
    }
    .htsp-search {
        height: auto;
        min-height: 58px;
        padding: 8px;
        gap: 10px;
    }
    .htsp-search svg { margin-left: 8px; width: 20px; height: 20px; }
    .htsp-search button { width: 62px; height: 44px; }
    .htsp-hero-art {
        min-height: 188px;
        transform: scale(.58);
        margin: -12px 0 -82px;
    }
    .htsp-hero-art-image {
        min-height: auto;
        transform: none;
        margin: 0;
    }
    .htsp-hero-art-image img {
        max-width: min(100%, 320px);
    }
    .htsp-card-grid,
    .htsp-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .htsp-quick-section { margin-top: 6px; }
    .htsp-card {
        min-height: auto;
        padding: 20px;
    }
    .htsp-card-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 16px;
    }
    .htsp-card-icon svg { width: 25px; height: 25px; }
    .htsp-knowledge { padding-top: 36px; }
    .htsp-section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 19px;
        gap: 8px;
    }
    .htsp-section-head h2 { font-size: 23px; }
    .htsp-category-card {
        min-height: 78px;
        padding: 16px;
    }
    .htsp-lower-grid {
        gap: 18px;
        margin-top: 30px;
    }
    .htsp-panel { padding: 22px 18px; min-height: auto; }
    .htsp-panel h3 { font-size: 20px; }
    .htsp-article {
        min-height: 48px;
        font-size: 13px;
    }
    .htsp-article span { gap: 9px; }
    .htsp-ticket-panel { padding-bottom: 132px; }
    .htsp-ticket-copy { max-width: 100%; }
    .htsp-envelope {
        right: 5px;
        bottom: 0;
        transform: scale(.78);
        transform-origin: right bottom;
    }
    .htsp-primary { width: 100%; }
    .htsp-help-strip {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 26px 18px;
        gap: 13px;
    }
    .htsp-help-strip p { font-size: 13px; }
    .htsp-help-strip a { width: 100%; min-width: 0; }
    .htsp-footer-grid {
        padding: 42px 0;
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .htsp-footer-col,
    .htsp-newsletter { gap: 11px; }
    .htsp-newsletter { max-width: none; }
    .htsp-footer-bottom {
        min-height: auto;
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .htsp-payments {
        width: 100%;
        flex-wrap: wrap;
    }
    .htsp-payments span { min-width: 66px; }
}

@media (max-width: 390px) {
    .htsp-actions .htsp-icon-btn:nth-child(2) { display: none; }
    .htsp-login { min-height: 40px; padding-inline: 12px; }
    .htsp-search input { font-size: 13px; }
    .htsp-search button { width: 56px; }
}
