:root {
    --pc-green: #0abb6d;
    --pc-green-dark: #079457;
    --pc-green-light: #e9fbf3;
    --pc-green-soft: #effbf5;
    --pc-green-pale: #f6fdf9;
    --pc-text: #111827;
    --pc-text-soft: #4b5563;
    --pc-text-muted: #6b7280;
    --pc-heading: #111827;
    --pc-muted: #6b7280;
    --pc-border: #e5e7eb;
    --pc-border-soft: #edf0f2;
    --pc-white: #ffffff;
    --pc-bg: #f8faf9;
    --pc-dark: #101918;

    --pc-radius-sm: 10px;
    --pc-radius-md: 14px;
    --pc-radius-lg: 18px;
    --pc-radius-xl: 24px;
    --pc-radius: 14px;

    --pc-shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.04);
    --pc-shadow-md: 0 12px 30px rgba(16, 24, 40, 0.07);
    --pc-shadow-lg: 0 20px 50px rgba(16, 24, 40, 0.1);
    --pc-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);

    --pc-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--pc-text);
    background: var(--pc-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

.help-site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.help-content {
    flex: 1;
}

.help-container {
    width: min(calc(100% - 40px), var(--pc-container));
    margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.help-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--pc-border-soft);
}

.help-header .navbar {
    min-height: 76px;
    padding: 0;
}

.help-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--pc-text);
    font-weight: 800;
}

.help-logo:hover {
    color: var(--pc-text);
}

.help-logo-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.help-logo-img {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.help-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.help-logo-text small {
    display: block;
    margin-top: 4px;
    color: var(--pc-text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.help-mobile-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-sm);
    background: var(--pc-white);
    color: var(--pc-text);
    box-shadow: none;
}

.help-mobile-toggle:focus {
    box-shadow: 0 0 0 4px rgba(10, 187, 109, 0.12);
}

.help-mobile-toggle i {
    font-size: 21px;
}

.help-header .navbar-nav {
    gap: 4px;
}

.help-header .nav-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 9px 12px !important;
    border-radius: 9px;
    color: var(--pc-text-soft);
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.help-header .nav-link:hover {
    color: var(--pc-green-dark);
    background: var(--pc-green-pale);
}

.help-header .nav-link.active {
    color: var(--pc-green-dark);
    background: var(--pc-green-soft);
}

.help-header .nav-link i {
    font-size: 14px;
}

.help-nav-cta {
    margin-left: 8px;
}

.help-nav-button {
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 9px 15px !important;
    border: 1px solid var(--pc-green) !important;
    border-radius: 9px !important;
    background: var(--pc-green) !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(10, 187, 109, 0.16);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.help-nav-button:hover {
    background: var(--pc-green-dark) !important;
    border-color: var(--pc-green-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(10, 187, 109, 0.22);
}

/* =========================================================
   HERO
   ========================================================= */

.help-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 92px;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(10, 187, 109, 0.12),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fcf9 100%
        );
    border-bottom: 1px solid var(--pc-border-soft);
}

.help-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -240px;
    left: -160px;
    border-radius: 50%;
    background: rgba(10, 187, 109, 0.045);
    pointer-events: none;
}

.help-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -160px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(10, 187, 109, 0.05);
    pointer-events: none;
}

.help-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.help-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(10, 187, 109, 0.16);
    border-radius: 999px;
    background: rgba(10, 187, 109, 0.07);
    color: var(--pc-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.help-eyebrow i {
    font-size: 13px;
}

.help-hero h1 {
    margin: 0;
    color: var(--pc-text);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.help-hero p {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--pc-text-soft);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   SEARCH
   ========================================================= */

.help-search {
    width: 100%;
    max-width: 760px;
    margin: 34px auto 0;
}

.help-search-field {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 66px;
    padding: 7px;
    border: 1px solid #dce4e0;
    border-radius: 15px;
    background: var(--pc-white);
    box-shadow:
        0 15px 35px rgba(16, 24, 40, 0.08),
        0 2px 5px rgba(16, 24, 40, 0.03);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.help-search-field:focus-within {
    border-color: rgba(10, 187, 109, 0.55);
    box-shadow:
        0 0 0 4px rgba(10, 187, 109, 0.08),
        0 15px 35px rgba(16, 24, 40, 0.08);
}

.help-search-icon {
    position: absolute;
    left: 22px;
    color: #8a9591;
    font-size: 18px;
    pointer-events: none;
}

.help-search-field input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 130px 0 52px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--pc-text);
    font-size: 14px;
}

.help-search-field input::placeholder {
    color: #9aa39f;
}

.help-search-field button {
    position: absolute;
    top: 7px;
    right: 7px;
    height: 52px;
    min-width: 112px;
    padding: 0 17px;
    border: 0;
    border-radius: 10px;
    background: var(--pc-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.help-search-field button:hover {
    background: var(--pc-green-dark);
    transform: translateY(-1px);
}

/* =========================================================
   MAIN
   ========================================================= */

.help-main {
    padding: 74px 0 100px;
}

.help-section-heading {
    margin-bottom: 30px;
}

.help-section-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--pc-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.help-section-heading h2 {
    margin: 0;
    color: var(--pc-text);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.help-section-heading p {
    margin: 9px 0 0;
    color: var(--pc-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   CATEGORY GRID
   ========================================================= */

.help-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.help-category-card {
    overflow: hidden;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.help-category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 187, 109, 0.3);
    box-shadow: var(--pc-shadow-md);
}

.help-category-main {
    display: block;
    padding: 25px 25px 23px;
}

.help-category-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.help-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
    font-size: 21px;
}

.help-category-open {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pc-border);
    border-radius: 9px;
    color: #7b8581;
    font-size: 14px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.help-category-card:hover .help-category-open {
    border-color: rgba(10, 187, 109, 0.2);
    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
}

.help-category-content {
    margin-top: 22px;
}

.help-category-content h2 {
    margin: 0;
    color: var(--pc-text);
    font-size: 19px;
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.help-category-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0;
    color: var(--pc-text-muted);
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.help-category-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid var(--pc-border-soft);
}

.help-category-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 7px;
    background: #f7f9f8;
    color: var(--pc-text-muted);
    font-size: 11px;
    font-weight: 600;
}

.help-category-meta i {
    color: var(--pc-green-dark);
    font-size: 12px;
}

/* =========================================================
   SUBCATEGORIES
   ========================================================= */

.help-subcategory-area {
    padding: 17px 25px 22px;
    border-top: 1px solid var(--pc-border-soft);
    background: #fbfcfc;
}

.help-subcategory-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--pc-text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.help-subcategory-heading span:last-child {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #eef2f0;
    color: var(--pc-text-soft);
    font-size: 10px;
}

.help-subcategories {
    display: flex;
    flex-direction: column;
}

.help-subcategory {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    padding: 6px 8px;
    border-radius: 9px;
    color: var(--pc-text-soft);
    transition:
        background 0.18s ease,
        color 0.18s ease,
        padding 0.18s ease;
}

.help-subcategory:hover {
    padding-left: 11px;
    padding-right: 11px;
    background: var(--pc-white);
    color: var(--pc-green-dark);
}

.help-subcategory-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-subcategory-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #f0f3f2;
    color: #69736f;
    font-size: 12px;
}

.help-subcategory:hover .help-subcategory-icon {
    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
}

.help-subcategory-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
}

.help-subcategory-arrow {
    margin-left: 12px;
    color: #a0a8a5;
    font-size: 11px;
    transition:
        color 0.18s ease,
        transform 0.18s ease;
}

.help-subcategory:hover .help-subcategory-arrow {
    color: var(--pc-green-dark);
    transform: translateX(2px);
}

/* =========================================================
   FAQ
   ========================================================= */

.help-faq-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.help-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-faq-item {
    overflow: hidden;
    background: var(--pc-white);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow-sm);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.help-faq-item:hover,
.help-faq-item.is-open {
    border-color: rgba(10, 187, 109, 0.25);
    box-shadow: var(--pc-shadow);
}

.help-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 70px;
    padding: 17px 20px;
    border: 0;
    background: var(--pc-white);
    color: var(--pc-heading);
    text-align: left;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.help-faq-question:hover {
    background: var(--pc-green-soft);
}

.help-faq-question-content {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.help-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--pc-green-light);
    color: var(--pc-green-dark);
    font-size: 14px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.help-faq-item.is-open .help-faq-icon {
    background: var(--pc-green);
    color: var(--pc-white);
}

.help-faq-question-text {
    min-width: 0;
    color: var(--pc-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.help-faq-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--pc-border);
    border-radius: 50%;
    color: var(--pc-muted);
    font-size: 10px;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.help-faq-item.is-open .help-faq-chevron {
    transform: rotate(180deg);
    border-color: rgba(10, 187, 109, 0.25);
    background: var(--pc-green-light);
    color: var(--pc-green-dark);
}

.help-faq-answer {
    border-top: 1px solid var(--pc-border-soft);
    background: #fcfdfd;
}

.help-faq-answer-inner {
    padding: 20px 68px 23px;
}

.help-faq-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 13px;
    padding: 5px 8px;
    border-radius: 6px;
    background: var(--pc-green-light);
    color: var(--pc-green-dark);
    font-size: 10px;
    font-weight: 700;
}

.help-faq-category i {
    color: var(--pc-green);
}

.help-faq-answer-content {
    color: var(--pc-text);
    font-size: 13px;
    line-height: 1.75;
}

.help-faq-answer-content p {
    margin: 0 0 14px;
}

.help-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.help-faq-answer-content h2,
.help-faq-answer-content h3,
.help-faq-answer-content h4 {
    margin: 22px 0 9px;
    color: var(--pc-heading);
    font-weight: 750;
    line-height: 1.35;
}

.help-faq-answer-content h2 {
    font-size: 19px;
}

.help-faq-answer-content h3 {
    font-size: 17px;
}

.help-faq-answer-content h4 {
    font-size: 15px;
}

.help-faq-answer-content ul,
.help-faq-answer-content ol {
    margin: 0 0 15px;
    padding-left: 20px;
}

.help-faq-answer-content li {
    margin-bottom: 6px;
}

.help-faq-answer-content a {
    color: var(--pc-green-dark);
    font-weight: 600;
}

.help-faq-answer-content a:hover {
    color: var(--pc-green);
    text-decoration: underline;
}

.help-faq-answer-content strong {
    color: var(--pc-heading);
    font-weight: 700;
}

.help-faq-question:focus-visible {
    outline: 3px solid rgba(10, 187, 109, 0.22);
    outline-offset: -3px;
}

/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.help-search-results {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.help-search-result-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-search-result {
    display: block;
    padding: 22px 24px;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.help-search-result:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 187, 109, 0.3);
    box-shadow: var(--pc-shadow-md);
}

.help-search-result-title {
    margin: 0;
    color: var(--pc-text);
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.help-search-result-excerpt {
    margin: 8px 0 0;
    color: var(--pc-text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.help-search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.help-search-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 6px;
    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.help-pagination {
    margin-top: 30px;
}

.help-pagination nav {
    display: flex;
    justify-content: center;
}

.help-pagination .pagination {
    gap: 5px;
}

.help-pagination .page-link {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--pc-border);
    border-radius: 8px !important;
    background: var(--pc-white);
    color: var(--pc-text-soft);
    font-size: 12px;
    font-weight: 600;
}

.help-pagination .page-link:hover {
    border-color: rgba(10, 187, 109, 0.25);
    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
}

.help-pagination .page-item.active .page-link {
    border-color: var(--pc-green);
    background: var(--pc-green);
    color: #fff;
}

.help-pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.help-empty {
    max-width: 620px;
    margin: 40px auto;
    padding: 60px 30px;
    text-align: center;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-xl);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
}

.help-empty-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 17px;
    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
    font-size: 26px;
}

.help-empty h2 {
    margin: 0;
    color: var(--pc-text);
    font-size: 21px;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.help-empty p {
    max-width: 480px;
    margin: 10px auto 0;
    color: var(--pc-text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */

.help-footer {
    margin-top: auto;
    padding: 58px 0 25px;
    background: var(--pc-dark);
    color: #fff;
}

.help-footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 45px;
}

.help-footer-brand {
    max-width: 340px;
}

.help-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.help-footer-logo:hover {
    color: #fff;
}

.help-footer-logo-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    overflow: hidden;
}

.help-footer-logo-img {
    display: block;
    width: 44px;
    height: 44px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.help-footer-brand p {
    margin: 17px 0 20px;
    color: #9ca8a4;
    font-size: 13px;
    line-height: 1.7;
}

.help-footer-help-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d8e2de;
    font-size: 12px;
    font-weight: 700;
}

.help-footer-help-link:hover {
    color: var(--pc-green);
}

.help-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 70px;
}

.help-footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.help-footer-column h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.help-footer-column a {
    color: #96a39f;
    font-size: 12px;
    line-height: 1.4;
    transition: color 0.18s ease;
}

.help-footer-column a:hover {
    color: var(--pc-green);
}

.help-footer-column a i {
    margin-left: 3px;
    font-size: 10px;
}

.help-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #74807c;
    font-size: 10px;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .help-container {
        width: min(calc(100% - 32px), var(--pc-container));
    }

    .help-header .navbar {
        min-height: 68px;
    }

    .help-header .navbar-collapse {
        margin-top: 10px;
        padding: 10px 0 16px;
        border-top: 1px solid var(--pc-border-soft);
    }

    .help-header .navbar-nav {
        align-items: stretch !important;
        gap: 3px;
    }

    .help-header .nav-link {
        width: 100%;
        padding: 11px 12px !important;
    }

    .help-nav-cta {
        margin: 8px 0 0;
    }

    .help-nav-button {
        width: 100%;
    }

    .help-hero {
        padding: 62px 0 74px;
    }

    .help-footer-main {
        gap: 45px;
    }

    .help-footer-links {
        gap: 40px;
    }
}

/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .help-container {
        width: min(calc(100% - 28px), var(--pc-container));
    }

    .help-logo {
        gap: 10px;
    }

    .help-logo-image {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .help-logo-img {
        width: 42px;
        height: 42px;
    }

    .help-logo-text {
        font-size: 16px;
    }

    .help-logo-text small {
        font-size: 8px;
    }

    .help-hero {
        padding: 52px 0 58px;
    }

    .help-hero h1 {
        font-size: 39px;
    }

    .help-hero p {
        margin-top: 14px;
        font-size: 15px;
    }

    .help-search {
        margin-top: 27px;
    }

    .help-search-field {
        min-height: 60px;
        padding: 5px;
        border-radius: 13px;
    }

    .help-search-icon {
        left: 18px;
        font-size: 16px;
    }

    .help-search-field input {
        height: 48px;
        padding-left: 44px;
        padding-right: 100px;
        font-size: 13px;
    }

    .help-search-field button {
        top: 5px;
        right: 5px;
        height: 48px;
        min-width: 82px;
        padding: 0 12px;
        font-size: 12px;
    }

    .help-search-field button .bi-arrow-right {
        display: none;
    }

    .help-main {
        padding: 52px 0 70px;
    }

    .help-section-heading {
        margin-bottom: 22px;
    }

    .help-section-heading h2 {
        font-size: 26px;
    }

    .help-section-heading p {
        font-size: 13px;
    }

    .help-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .help-category-main {
        padding: 21px;
    }

    .help-subcategory-area {
        padding: 15px 21px 19px;
    }

    .help-faq-section {
        max-width: 100%;
    }

    .help-faq-question {
        min-height: 64px;
        padding: 15px 16px;
        gap: 12px;
    }

    .help-faq-question-content {
        gap: 10px;
    }

    .help-faq-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .help-faq-question-text {
        font-size: 13px;
    }

    .help-faq-answer-inner {
        padding: 17px 16px 20px;
    }

    .help-faq-answer-content {
        font-size: 13px;
    }

    .help-footer {
        padding-top: 45px;
    }

    .help-footer-main {
        flex-direction: column;
        gap: 38px;
        padding-bottom: 35px;
    }

    .help-footer-brand {
        max-width: none;
    }

    .help-footer-links {
        width: 100%;
        gap: 35px;
    }

    .help-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
}

/* =========================================================
   RESPONSIVE SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {
    .help-header .navbar {
        min-height: 68px;
    }

    .help-container {
        width: min(calc(100% - 22px), var(--pc-container));
    }

    .help-logo {
        gap: 10px;
    }

    .help-logo-image {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .help-logo-img {
        width: 42px;
        height: 42px;
    }

    .help-logo-text {
        font-size: 16px;
    }

    .help-logo-text small {
        font-size: 8px;
    }

    .help-footer-logo-image {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .help-footer-logo-img {
        width: 38px;
        height: 38px;
    }

    .help-hero {
        padding: 45px 0 50px;
    }

    .help-eyebrow {
        margin-bottom: 15px;
        font-size: 9px;
    }

    .help-hero h1 {
        font-size: 34px;
        letter-spacing: -0.045em;
    }

    .help-hero p {
        font-size: 14px;
    }

    .help-search-field input {
        padding-right: 90px;
    }

    .help-search-field button {
        min-width: 72px;
        padding: 0 10px;
    }

    .help-category-content h2 {
        font-size: 18px;
    }

    .help-category-meta {
        gap: 6px;
    }

    .help-category-meta span {
        font-size: 10px;
    }

    .help-faq-list {
        gap: 8px;
    }

    .help-faq-question {
        min-height: 61px;
        padding: 14px;
    }

    .help-faq-question-text {
        font-size: 12px;
        line-height: 1.45;
    }

    .help-faq-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .help-faq-chevron {
        flex-basis: 27px;
        width: 27px;
        height: 27px;
        font-size: 9px;
    }

    .help-faq-answer-inner {
        padding: 15px 14px 18px;
    }

    .help-faq-category {
        font-size: 9px;
    }

    .help-faq-answer-content {
        font-size: 12px;
        line-height: 1.7;
    }

    .help-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {
    .help-container {
        width: calc(100% - 18px);
    }

    .help-logo-text {
        font-size: 14px;
    }

    .help-logo-text small {
        font-size: 7px;
    }

    .help-hero h1 {
        font-size: 31px;
    }

    .help-search-field input {
        font-size: 12px;
    }

    .help-category-main {
        padding: 18px;
    }

    .help-subcategory-area {
        padding-left: 18px;
        padding-right: 18px;
    }
}