/* =========================================================
   PASSCASH HELP CENTER
   PREMIUM RESPONSIVE UI
   ========================================================= */

:root {
    --pc-green: #0abb6d;
    --pc-green-dark: #078b52;
    --pc-green-deep: #056c40;
    --pc-green-light: #eafaf2;
    --pc-green-soft: #f5fcf8;

    --pc-black: #111827;
    --pc-heading: #17212b;
    --pc-text: #475467;
    --pc-muted: #667085;
    --pc-subtle: #98a2b3;

    --pc-white: #ffffff;
    --pc-bg: #f8fafb;
    --pc-surface: #ffffff;

    --pc-border: #e4e7ec;
    --pc-border-soft: #eef0f3;

    --pc-shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
    --pc-shadow-sm: 0 4px 14px rgba(16, 24, 40, 0.05);
    --pc-shadow: 0 10px 30px rgba(16, 24, 40, 0.07);
    --pc-shadow-lg: 0 20px 45px rgba(16, 24, 40, 0.10);

    --pc-radius-xs: 7px;
    --pc-radius-sm: 10px;
    --pc-radius: 14px;
    --pc-radius-lg: 20px;
    --pc-radius-xl: 26px;

    --pc-container: 1180px;

    --pc-transition:
        180ms cubic-bezier(0.2, 0.7, 0.2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--pc-text);
    background: var(--pc-bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    max-width: 100%;
    overflow-wrap: break-word;
}

::selection {
    background: rgba(10, 187, 109, 0.18);
    color: var(--pc-heading);
}

.help-site {
    min-height: 100vh;
    background: var(--pc-bg);
}

.help-content {
    min-width: 0;
}

.help-container {
    width: min(calc(100% - 48px), 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 rgba(228, 231, 236, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.help-header .navbar {
    min-height: 72px;
    padding: 0;
}

.help-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    min-width: 0;

    color: var(--pc-heading);
    font-weight: 800;
}

.help-logo:hover {
    color: var(--pc-heading);
}

.help-logo-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    overflow: hidden;
}

.help-logo-img {
    display: block;

    width: 42px;
    height: 42px;

    object-fit: contain;
}

.help-logo-text {
    display: flex;
    flex-direction: column;

    min-width: 0;

    color: var(--pc-heading);

    font-size: 16px;
    font-weight: 800;

    letter-spacing: -0.025em;
    line-height: 1.05;
}

.help-logo-text small {
    display: block;

    margin-top: 5px;

    color: var(--pc-subtle);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.09em;
    line-height: 1;

    text-transform: uppercase;
}

.help-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 1px solid var(--pc-border);
    border-radius: 10px;

    background: var(--pc-white);
    color: var(--pc-heading);

    box-shadow: var(--pc-shadow-xs);

    transition:
        border-color var(--pc-transition),
        background var(--pc-transition),
        transform var(--pc-transition);
}

.help-mobile-toggle:hover {
    border-color: rgba(10, 187, 109, 0.35);
    background: var(--pc-green-soft);
}

.help-mobile-toggle:focus,
.help-mobile-toggle:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(10, 187, 109, 0.12),
        var(--pc-shadow-xs);
}

.help-mobile-toggle i {
    font-size: 19px;
}

.help-header .navbar-nav {
    gap: 4px;
}

.help-header .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    min-height: 40px;
    padding: 8px 12px !important;

    border-radius: 9px;

    color: var(--pc-text);

    font-size: 13px;
    font-weight: 600;

    transition:
        color var(--pc-transition),
        background var(--pc-transition);
}

.help-header .nav-link:hover {
    color: var(--pc-green-dark);
    background: var(--pc-green-soft);
}

.help-header .nav-link.active {
    color: var(--pc-green-dark);
    background: var(--pc-green-light);
}

.help-header .nav-link i {
    font-size: 13px;
}

.help-nav-cta {
    margin-left: 8px;
}

.help-nav-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 8px 16px !important;

    border: 1px solid var(--pc-green) !important;
    border-radius: 9px !important;

    background: var(--pc-green) !important;
    color: var(--pc-white) !important;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(10, 187, 109, 0.14);

    transition:
        background var(--pc-transition),
        border-color var(--pc-transition),
        transform var(--pc-transition),
        box-shadow var(--pc-transition);
}

.help-nav-button:hover {
    background: var(--pc-green-dark) !important;
    border-color: var(--pc-green-dark) !important;
    color: var(--pc-white) !important;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(10, 187, 109, 0.20);
}


/* =========================================================
   HERO
   ========================================================= */

.help-hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(10, 187, 109, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(10, 187, 109, 0.06),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fcf9 100%
        );

    border-bottom: 1px solid var(--pc-border-soft);
}

.help-hero::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    top: -390px;
    right: -190px;

    border: 1px solid rgba(10, 187, 109, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.help-hero::after {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    left: -245px;
    bottom: -290px;

    border: 1px solid rgba(10, 187, 109, 0.07);
    border-radius: 50%;

    pointer-events: none;
}

.help-hero-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 850px;

    margin-inline: auto;

    padding: 78px 20px 86px;

    text-align: center;
}

.help-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 19px;
    padding: 8px 13px;

    border: 1px solid rgba(10, 187, 109, 0.18);
    border-radius: 999px;

    background: rgba(234, 250, 242, 0.9);
    color: var(--pc-green-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.085em;
    line-height: 1;

    text-transform: uppercase;
}

.help-eyebrow i {
    margin-right: 7px;

    color: var(--pc-green);

    font-size: 13px;
}

.help-hero h1 {
    margin: 0;

    color: var(--pc-heading);

    font-size: clamp(42px, 5.5vw, 64px);
    font-weight: 800;

    letter-spacing: -0.055em;
    line-height: 1.02;
}

.help-hero p {
    max-width: 650px;

    margin: 19px auto 0;

    color: var(--pc-muted);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   SEARCH COMPONENT
   Works with x-help.search
   ========================================================= */

.help-hero .help-search,
.help-search {
    position: relative;

    width: 100%;
    max-width: 700px;

    margin: 32px auto 0;
}

.help-search form {
    position: relative;
}

.help-search input,
.help-search-input,
.help-search form input[type="search"],
.help-search form input[type="text"] {
    width: 100%;
    min-height: 58px;

    padding: 0 60px 0 20px;

    border: 1px solid #d9dee5;
    border-radius: 13px;

    outline: none;

    background: var(--pc-white);
    color: var(--pc-heading);

    font-size: 14px;
    font-weight: 500;

    box-shadow:
        0 8px 25px rgba(16, 24, 40, 0.07),
        0 1px 2px rgba(16, 24, 40, 0.03);

    transition:
        border-color var(--pc-transition),
        box-shadow var(--pc-transition),
        transform var(--pc-transition);
}

.help-search input::placeholder,
.help-search-input::placeholder {
    color: #98a2b3;
}

.help-search input:hover {
    border-color: #c9d0d9;
}

.help-search input:focus,
.help-search-input:focus {
    border-color: rgba(10, 187, 109, 0.65);

    box-shadow:
        0 0 0 4px rgba(10, 187, 109, 0.10),
        0 12px 30px rgba(16, 24, 40, 0.08);
}

.help-search button,
.help-search-submit {
    position: absolute;

    top: 7px;
    right: 7px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    border-radius: 10px;

    background: var(--pc-green);
    color: var(--pc-white);

    cursor: pointer;

    box-shadow:
        0 4px 10px rgba(10, 187, 109, 0.18);

    transition:
        background var(--pc-transition),
        transform var(--pc-transition),
        box-shadow var(--pc-transition);
}

.help-search button:hover,
.help-search-submit:hover {
    background: var(--pc-green-dark);

    transform: translateY(-1px);

    box-shadow:
        0 7px 16px rgba(10, 187, 109, 0.23);
}

.help-search button i,
.help-search-submit i {
    font-size: 16px;
}


/* =========================================================
   MAIN
   ========================================================= */

.help-main {
    padding: 70px 0 100px;
}

.help-main > .help-container {
    min-width: 0;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.help-section-heading {
    margin-bottom: 27px;
}

.help-section-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--pc-green-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.10em;
    line-height: 1.2;

    text-transform: uppercase;
}

.help-section-heading h2 {
    margin: 0;

    color: var(--pc-heading);

    font-size: 29px;
    font-weight: 800;

    letter-spacing: -0.035em;
    line-height: 1.2;
}

.help-section-heading p {
    max-width: 650px;

    margin: 8px 0 0;

    color: var(--pc-muted);

    font-size: 14px;
    line-height: 1.65;
}

.help-section-count {
    display: inline-flex;
    align-items: center;

    padding: 7px 10px;

    border-radius: 8px;

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   CATEGORY LIST
   Matches the supplied Blade:
   .help-category-list
   .help-category-item
   .help-category-link
   ========================================================= */

.help-category-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.help-category-item {
    min-width: 0;

    overflow: hidden;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);

    box-shadow: var(--pc-shadow-xs);

    transition:
        transform var(--pc-transition),
        border-color var(--pc-transition),
        box-shadow var(--pc-transition);
}

.help-category-item:hover {
    transform: translateY(-3px);

    border-color: rgba(10, 187, 109, 0.28);

    box-shadow: var(--pc-shadow);
}

.help-category-link {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;

    padding: 21px;
}

.help-category-link:hover {
    color: inherit;
}

.help-category-link:focus-visible {
    outline: 3px solid rgba(10, 187, 109, 0.22);
    outline-offset: -3px;
}

.help-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    border-radius: 12px;

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    font-size: 19px;

    transition:
        background var(--pc-transition),
        color var(--pc-transition),
        transform var(--pc-transition);
}

.help-category-item:hover .help-category-icon {
    background: var(--pc-green);
    color: var(--pc-white);

    transform: scale(1.03);
}

.help-category-info {
    display: flex;
    flex-direction: column;

    min-width: 0;
    flex: 1;
}

.help-category-title {
    color: var(--pc-heading);

    font-size: 15px;
    font-weight: 750;

    letter-spacing: -0.015em;
    line-height: 1.35;

    overflow-wrap: anywhere;
}

.help-category-description {
    display: -webkit-box;

    margin-top: 5px;

    overflow: hidden;

    color: var(--pc-muted);

    font-size: 12px;
    line-height: 1.55;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.help-category-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 11px;
}

.help-category-stats span {
    display: inline-flex;
    align-items: center;

    padding: 4px 7px;

    border-radius: 6px;

    background: #f6f7f9;

    color: var(--pc-muted);

    font-size: 9px;
    font-weight: 650;
}

.help-category-arrow {
    display: inline-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: #98a2b3;

    font-size: 10px;

    transition:
        background var(--pc-transition),
        color var(--pc-transition),
        border-color var(--pc-transition),
        transform var(--pc-transition);
}

.help-category-item:hover .help-category-arrow {
    border-color: rgba(10, 187, 109, 0.25);

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    transform: translateX(3px);
}


/* =========================================================
   SUBCATEGORY LIST
   Matches supplied Blade
   ========================================================= */

.help-subcategory-list {
    padding: 0 14px 14px;
}

.help-subcategory-link {
    display: flex;
    align-items: center;

    min-width: 0;

    min-height: 38px;

    padding: 6px 9px;

    border-radius: 8px;

    color: var(--pc-text);

    transition:
        background var(--pc-transition),
        color var(--pc-transition),
        padding var(--pc-transition);
}

.help-subcategory-link:hover {
    padding-left: 12px;
    padding-right: 6px;

    background: var(--pc-green-soft);
    color: var(--pc-green-dark);
}

.help-subcategory-link:focus-visible {
    outline: 3px solid rgba(10, 187, 109, 0.20);
    outline-offset: 2px;
}

.help-subcategory-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 26px;

    width: 26px;
    height: 26px;

    margin-right: 8px;

    border-radius: 7px;

    background: #f3f4f6;
    color: #7b8491;

    font-size: 10px;

    transition:
        background var(--pc-transition),
        color var(--pc-transition);
}

.help-subcategory-link:hover .help-subcategory-marker {
    background: rgba(10, 187, 109, 0.12);
    color: var(--pc-green-dark);
}

.help-subcategory-name {
    min-width: 0;
    flex: 1;

    overflow: hidden;

    color: inherit;

    font-size: 11px;
    font-weight: 650;

    line-height: 1.4;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-subcategory-arrow {
    flex: 0 0 auto;

    margin-left: 8px;

    color: #a1a8b0;

    font-size: 9px;

    transition:
        color var(--pc-transition),
        transform var(--pc-transition);
}

.help-subcategory-link:hover .help-subcategory-arrow {
    color: var(--pc-green);
    transform: translateX(3px);
}


/* =========================================================
   ARTICLES
   ========================================================= */

.help-articles {
    display: grid;
    grid-template-columns: minmax(0, 1fr);

    gap: 10px;
}

.help-article-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-width: 0;

    padding: 18px 20px;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-sm);

    box-shadow: var(--pc-shadow-xs);

    transition:
        transform var(--pc-transition),
        border-color var(--pc-transition),
        box-shadow var(--pc-transition);
}

.help-article-card:hover {
    transform: translateY(-2px);

    border-color: rgba(10, 187, 109, 0.28);

    box-shadow: var(--pc-shadow);
}

.help-article-card:focus-visible {
    outline: 3px solid rgba(10, 187, 109, 0.20);
    outline-offset: 3px;
}

.help-article-card-content {
    min-width: 0;
    flex: 1;
}

.help-article-card-title {
    margin: 0 0 5px;

    color: var(--pc-heading);

    font-size: 14px;
    font-weight: 750;

    letter-spacing: -0.01em;
    line-height: 1.4;
}

.help-article-card-excerpt {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color: var(--pc-muted);

    font-size: 12px;
    line-height: 1.55;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.help-article-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 9px;

    color: var(--pc-muted);

    font-size: 10px;
    font-weight: 600;
}

.help-article-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.help-article-card-meta i {
    color: var(--pc-green);
    font-size: 10px;
}

.help-article-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    border: 1px solid var(--pc-border);
    border-radius: 50%;

    color: #98a2b3;

    font-size: 10px;

    transition:
        background var(--pc-transition),
        color var(--pc-transition),
        border-color var(--pc-transition),
        transform var(--pc-transition);
}

.help-article-card:hover .help-article-arrow {
    border-color: rgba(10, 187, 109, 0.25);

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    transform: translateX(3px);
}


/* =========================================================
   ARTICLES SECTION
   ========================================================= */

.help-articles-section {
    margin-top: 76px;
}


/* =========================================================
   CATEGORY / OTHER PAGE HEADERS
   ========================================================= */

.help-page-header {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(10, 187, 109, 0.11),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fcf9 100%
        );

    border-bottom: 1px solid var(--pc-border-soft);
}

.help-page-header .help-container {
    position: relative;
    z-index: 1;

    padding-top: 26px;
    padding-bottom: 48px;
}

.help-breadcrumb,
.help-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 32px;

    color: var(--pc-muted);

    font-size: 11px;
    font-weight: 600;
}

.help-breadcrumb a,
.help-breadcrumbs a {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--pc-green-dark);
}

.help-breadcrumb a:hover,
.help-breadcrumbs a:hover {
    color: var(--pc-green);
}

.help-breadcrumb > i,
.help-breadcrumbs > i {
    color: #a1a8b0;
    font-size: 9px;
}

.help-page-header-content {
    width: 100%;
    max-width: 820px;

    margin-inline: auto;

    text-align: center;
}

.help-page-header-content h1 {
    margin: 0;

    color: var(--pc-heading);

    font-size: clamp(35px, 5vw, 54px);
    font-weight: 800;

    letter-spacing: -0.05em;
    line-height: 1.05;
}

.help-page-header-content p {
    max-width: 650px;

    margin: 14px auto 0;

    color: var(--pc-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   ARTICLE PAGE
   ========================================================= */

.help-article-page {
    padding: 55px 0 90px;
}

.help-article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 760px)
        minmax(210px, 250px);

    justify-content: center;

    gap: 38px;

    align-items: start;
}

.help-article {
    min-width: 0;

    padding: 36px;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);

    box-shadow: var(--pc-shadow-sm);
}

.help-article-header {
    margin-bottom: 30px;
    padding-bottom: 23px;

    border-bottom: 1px solid var(--pc-border-soft);
}

.help-article-featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 13px;
    padding: 7px 10px;

    border-radius: 7px;

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    font-size: 10px;
    font-weight: 750;
}

.help-article-header h1 {
    margin: 0 0 13px;

    color: var(--pc-heading);

    font-size: clamp(31px, 4vw, 46px);
    font-weight: 800;

    letter-spacing: -0.045em;
    line-height: 1.08;
}

.help-article-excerpt {
    margin: 0 0 16px;

    color: var(--pc-text);

    font-size: 14px;
    line-height: 1.7;
}

.help-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    color: var(--pc-muted);

    font-size: 10px;
    font-weight: 600;
}

.help-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.help-article-meta i {
    color: var(--pc-green);
}

.help-article-image {
    overflow: hidden;

    margin-bottom: 28px;

    border-radius: 13px;
}

.help-article-image img {
    width: 100%;
    height: auto;
}

.help-article-video {
    margin-bottom: 28px;
}

.help-article-video a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;

    border: 1px solid rgba(10, 187, 109, 0.20);
    border-radius: 9px;

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    font-size: 11px;
    font-weight: 700;

    transition:
        background var(--pc-transition),
        border-color var(--pc-transition),
        transform var(--pc-transition);
}

.help-article-video a:hover {
    background: #def8eb;

    border-color: rgba(10, 187, 109, 0.35);

    transform: translateY(-1px);
}

.help-article-content {
    color: #344054;

    font-size: 14px;
    line-height: 1.85;
}

.help-article-content h2 {
    margin: 34px 0 13px;

    color: var(--pc-heading);

    font-size: 23px;
    font-weight: 800;

    letter-spacing: -0.025em;
    line-height: 1.3;
}

.help-article-content h3 {
    margin: 26px 0 10px;

    color: var(--pc-heading);

    font-size: 18px;
    font-weight: 750;

    line-height: 1.35;
}

.help-article-content p {
    margin: 0 0 18px;

    color: #344054;

    font-size: 14px;
    line-height: 1.85;
}

.help-article-content ul,
.help-article-content ol {
    margin: 0 0 20px;
    padding-left: 23px;
}

.help-article-content li {
    margin-bottom: 7px;
}

.help-article-content a {
    color: var(--pc-green-dark);
    font-weight: 650;
}

.help-article-content a:hover {
    color: var(--pc-green);
    text-decoration: underline;
}

.help-article-content blockquote {
    margin: 24px 0;

    padding: 17px 19px;

    border-left: 4px solid var(--pc-green);
    border-radius: 0 10px 10px 0;

    background: var(--pc-green-soft);
    color: #344054;
}

.help-article-content img {
    width: auto;
    max-width: 100%;
    height: auto;

    margin: 24px auto;

    border-radius: 11px;
}

.help-article-content pre {
    overflow-x: auto;

    margin: 24px 0;
    padding: 18px;

    border-radius: 11px;

    background: #101828;
    color: #f9fafb;

    font-size: 12px;
    line-height: 1.7;
}

.help-article-content code {
    padding: 2px 5px;

    border-radius: 5px;

    background: #f2f4f7;
    color: var(--pc-green-dark);

    font-size: 0.9em;
}

.help-article-content pre code {
    padding: 0;

    background: transparent;
    color: inherit;
}


/* =========================================================
   ARTICLE FOOTER
   ========================================================= */

.help-article-footer {
    margin-top: 38px;
    padding-top: 25px;

    border-top: 1px solid var(--pc-border-soft);
}

.help-article-feedback {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 19px;

    border: 1px solid rgba(10, 187, 109, 0.12);
    border-radius: var(--pc-radius);

    background:
        linear-gradient(
            135deg,
            #f6fdf9,
            #ffffff
        );
}

.help-article-feedback strong {
    display: block;

    margin-bottom: 4px;

    color: var(--pc-heading);

    font-size: 13px;
    font-weight: 800;
}

.help-article-feedback span {
    color: var(--pc-muted);
    font-size: 11px;
}

.help-article-feedback-buttons {
    display: flex;
    gap: 7px;

    flex: 0 0 auto;
}

.help-feedback-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    min-height: 35px;

    padding: 7px 12px;

    border: 1px solid var(--pc-border);
    border-radius: 8px;

    background: var(--pc-white);
    color: var(--pc-text);

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background var(--pc-transition),
        color var(--pc-transition),
        border-color var(--pc-transition),
        transform var(--pc-transition);
}

.help-feedback-button:hover {
    border-color: rgba(10, 187, 109, 0.3);

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    transform: translateY(-1px);
}


/* =========================================================
   ARTICLE SIDEBAR
   ========================================================= */

.help-article-sidebar {
    position: sticky;
    top: 25px;
}

.help-sidebar-card {
    padding: 21px;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);

    box-shadow: var(--pc-shadow-xs);
}

.help-sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    margin-bottom: 14px;

    border-radius: 11px;

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    font-size: 18px;
}

.help-sidebar-card h2 {
    margin: 0 0 8px;

    color: var(--pc-heading);

    font-size: 16px;
    font-weight: 800;

    line-height: 1.3;
}

.help-sidebar-card p {
    margin: 0 0 16px;

    color: var(--pc-muted);

    font-size: 12px;
    line-height: 1.65;
}

.help-sidebar-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    width: 100%;
    min-height: 39px;

    padding: 8px 12px;

    border-radius: 9px;

    background: var(--pc-green);
    color: var(--pc-white);

    font-size: 11px;
    font-weight: 700;

    transition:
        background var(--pc-transition),
        transform var(--pc-transition),
        box-shadow var(--pc-transition);
}

.help-sidebar-button:hover {
    background: var(--pc-green-dark);
    color: var(--pc-white);

    transform: translateY(-1px);

    box-shadow:
        0 7px 16px rgba(10, 187, 109, 0.17);
}

.help-sidebar-navigation {
    margin-top: 12px;
    padding: 16px;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);

    box-shadow: var(--pc-shadow-xs);
}

.help-sidebar-label {
    display: block;

    margin-bottom: 9px;

    color: var(--pc-green-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.help-sidebar-category {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    color: var(--pc-text);

    font-size: 11px;
    font-weight: 700;
}

.help-sidebar-category span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-width: 0;
}

.help-sidebar-category i {
    color: var(--pc-green);
}

.help-sidebar-category:hover {
    color: var(--pc-green-dark);
}


/* =========================================================
   FAQ
   ========================================================= */

.help-faq-list {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.help-faq-item {
    overflow: hidden;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-sm);

    box-shadow: var(--pc-shadow-xs);

    transition:
        border-color var(--pc-transition),
        box-shadow var(--pc-transition);
}

.help-faq-item[open] {
    border-color: rgba(10, 187, 109, 0.22);

    box-shadow: var(--pc-shadow-sm);
}

.help-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 17px 18px;

    cursor: pointer;

    list-style: none;

    color: var(--pc-heading);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.45;
}

.help-faq-item summary::-webkit-details-marker {
    display: none;
}

.help-faq-item summary::marker {
    display: none;
}

.help-faq-item summary i {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    border: 1px solid var(--pc-border);
    border-radius: 50%;

    color: var(--pc-green-dark);

    font-size: 11px;

    transition:
        transform var(--pc-transition),
        background var(--pc-transition),
        border-color var(--pc-transition);
}

.help-faq-item[open] summary i {
    transform: rotate(45deg);

    background: var(--pc-green-light);
    border-color: rgba(10, 187, 109, 0.2);
}

.help-faq-item summary:hover {
    color: var(--pc-green-dark);
}

.help-faq-answer {
    padding: 0 18px 18px;

    color: var(--pc-text);

    font-size: 13px;
    line-height: 1.75;
}

.help-faq-answer p:last-child {
    margin-bottom: 0;
}

.help-faq-answer a {
    color: var(--pc-green-dark);
    font-weight: 650;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.help-pagination {
    display: flex;
    justify-content: center;

    margin-top: 30px;
}

.help-pagination nav {
    display: flex;
    justify-content: center;
}

.help-pagination nav > div {
    display: flex;
    align-items: center;

    gap: 5px;
}

.help-pagination a,
.help-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 35px;
    height: 35px;

    padding: 0 9px;

    border: 1px solid var(--pc-border);
    border-radius: 8px;

    background: var(--pc-white);
    color: var(--pc-text);

    font-size: 11px;
    font-weight: 600;

    transition:
        background var(--pc-transition),
        border-color var(--pc-transition),
        color var(--pc-transition);
}

.help-pagination a:hover {
    border-color: rgba(10, 187, 109, 0.3);

    background: var(--pc-green-light);
    color: var(--pc-green-dark);
}

.help-pagination span[aria-current="page"] {
    border-color: var(--pc-green);

    background: var(--pc-green);
    color: var(--pc-white);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.help-empty {
    width: 100%;
    max-width: 600px;

    margin: 20px auto 0;
    padding: 56px 30px;

    text-align: center;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);

    box-shadow: var(--pc-shadow-sm);
}

.help-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    border-radius: 16px;

    background: var(--pc-green-light);
    color: var(--pc-green-dark);

    font-size: 24px;
}

.help-empty-label {
    display: block;

    margin-bottom: 7px;

    color: var(--pc-green-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.help-empty h2 {
    margin: 0 0 10px;

    color: var(--pc-heading);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.025em;
    line-height: 1.25;
}

.help-empty p {
    max-width: 480px;

    margin: 0 auto;

    color: var(--pc-muted);

    font-size: 13px;
    line-height: 1.65;
}

.help-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 40px;

    margin-top: 20px;
    padding: 8px 15px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 700;
}

.help-button-primary {
    background: var(--pc-green);
    color: var(--pc-white);
}

.help-button-primary:hover {
    background: var(--pc-green-dark);
    color: var(--pc-white);
}


/* =========================================================
   FOCUS STATES
   ========================================================= */

.help-category-link:focus-visible,
.help-subcategory-link:focus-visible,
.help-article-card:focus-visible,
.help-sidebar-button:focus-visible,
.help-sidebar-category:focus-visible,
.help-button:focus-visible,
.help-feedback-button:focus-visible,
.help-faq-item summary:focus-visible {
    outline: 3px solid rgba(10, 187, 109, 0.22);
    outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .help-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-article-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }

    .help-article-sidebar {
        position: static;
        order: -1;
    }

    .help-sidebar-card {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        gap: 5px 13px;
    }

    .help-sidebar-icon {
        margin-bottom: 0;
    }

    .help-sidebar-card h2 {
        margin-bottom: 0;
    }

    .help-sidebar-card p {
        width: 100%;
        margin-top: 8px;
    }

    .help-sidebar-button {
        width: auto;
        min-width: 190px;
        margin-left: auto;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .help-container {
        width: min(calc(100% - 32px), var(--pc-container));
    }

    .help-hero-content {
        padding: 60px 16px 66px;
    }

    .help-hero h1 {
        font-size: clamp(38px, 8vw, 50px);
    }

    .help-hero p {
        margin-top: 16px;
        font-size: 14px;
    }

    .help-search {
        margin-top: 28px;
    }

    .help-search input,
    .help-search-input,
    .help-search form input[type="search"],
    .help-search form input[type="text"] {
        min-height: 55px;
    }

    .help-page-header .help-container {
        padding-top: 21px;
        padding-bottom: 42px;
    }

    .help-breadcrumb,
    .help-breadcrumbs {
        margin-bottom: 25px;
    }

    .help-page-header-content h1 {
        font-size: clamp(32px, 7vw, 46px);
    }

    .help-main {
        padding: 55px 0 70px;
    }

    .help-section-heading h2 {
        font-size: 26px;
    }

    .help-category-list {
        gap: 13px;
    }

    .help-articles-section {
        margin-top: 60px;
    }

    .help-article {
        padding: 27px 22px;
    }

    .help-article-header h1 {
        font-size: 33px;
    }

    .help-article-feedback {
        align-items: flex-start;
        flex-direction: column;
    }

    .help-article-feedback-buttons {
        width: 100%;
    }

    .help-feedback-button {
        flex: 1;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .help-container {
        width: calc(100% - 24px);
    }

    .help-header .navbar {
        min-height: 64px;
    }

    .help-logo {
        gap: 8px;
    }

    .help-logo-image {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
    }

    .help-logo-img {
        width: 39px;
        height: 39px;
    }

    .help-logo-text {
        font-size: 15px;
    }

    .help-logo-text small {
        font-size: 7px;
    }

    .help-mobile-toggle {
        width: 38px;
        height: 38px;
    }

    .help-header .navbar-collapse {
        margin-top: 7px;
        padding: 8px 0 13px;

        border-top: 1px solid var(--pc-border-soft);
    }

    .help-header .navbar-nav {
        align-items: stretch !important;
        gap: 2px;
    }

    .help-header .nav-link {
        width: 100%;
        min-height: 43px;
        padding: 10px 11px !important;
    }

    .help-nav-cta {
        margin: 7px 0 0;
    }

    .help-nav-button {
        width: 100%;
        min-height: 43px;
    }

    .help-hero-content {
        padding: 48px 10px 54px;
    }

    .help-eyebrow {
        margin-bottom: 15px;
        padding: 7px 10px;

        font-size: 9px;
    }

    .help-hero h1 {
        font-size: 35px;

        letter-spacing: -0.045em;
        line-height: 1.07;
    }

    .help-hero p {
        margin-top: 14px;

        font-size: 13px;
        line-height: 1.6;
    }

    .help-search {
        margin-top: 24px;
    }

    .help-search input,
    .help-search-input,
    .help-search form input[type="search"],
    .help-search form input[type="text"] {
        min-height: 52px;

        padding-left: 16px;
        padding-right: 55px;

        border-radius: 11px;

        font-size: 13px;
    }

    .help-search button,
    .help-search-submit {
        top: 6px;
        right: 6px;

        width: 40px;
        height: 40px;

        border-radius: 9px;
    }

    .help-page-header .help-container {
        width: calc(100% - 24px);

        padding-top: 18px;
        padding-bottom: 35px;
    }

    .help-breadcrumb,
    .help-breadcrumbs {
        gap: 5px;

        margin-bottom: 22px;

        font-size: 10px;
    }

    .help-page-header-content h1 {
        font-size: 30px;

        letter-spacing: -0.04em;
        line-height: 1.1;
    }

    .help-page-header-content p {
        margin-top: 12px;

        font-size: 13px;
        line-height: 1.55;
    }

    .help-main {
        padding: 42px 0 58px;
    }

    .help-section-heading {
        margin-bottom: 20px;
    }

    .help-section-eyebrow {
        font-size: 9px;
    }

    .help-section-heading h2 {
        font-size: 23px;
    }

    .help-section-heading p {
        font-size: 13px;
    }

    .help-category-list {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .help-category-link {
        gap: 13px;
        padding: 17px;
    }

    .help-category-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        border-radius: 11px;

        font-size: 18px;
    }

    .help-category-title {
        font-size: 15px;
    }

    .help-category-description {
        font-size: 11px;
    }

    .help-category-stats {
        margin-top: 9px;
    }

    .help-category-arrow {
        flex-basis: 29px;

        width: 29px;
        height: 29px;
    }

    .help-subcategory-list {
        padding: 0 11px 12px;
    }

    .help-subcategory-link {
        min-height: 37px;
    }

    .help-subcategory-name {
        font-size: 11px;
    }

    .help-articles-section {
        margin-top: 52px;
    }

    .help-articles {
        gap: 8px;
    }

    .help-article-card {
        padding: 15px;

        gap: 10px;

        border-radius: 10px;
    }

    .help-article-card-title {
        font-size: 13px;
    }

    .help-article-card-excerpt {
        font-size: 11px;
    }

    .help-article-card-meta {
        gap: 7px;

        font-size: 9px;
    }

    .help-article-arrow {
        flex-basis: 28px;

        width: 28px;
        height: 28px;
    }

    .help-article-page {
        padding: 34px 0 55px;
    }

    .help-article {
        padding: 22px 17px;

        border-radius: 14px;
    }

    .help-article-header {
        margin-bottom: 23px;
        padding-bottom: 19px;
    }

    .help-article-header h1 {
        font-size: 28px;
        letter-spacing: -0.04em;
    }

    .help-article-excerpt {
        font-size: 13px;
    }

    .help-article-content {
        font-size: 13px;
        line-height: 1.75;
    }

    .help-article-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .help-article-content h2 {
        margin-top: 28px;
        font-size: 20px;
    }

    .help-article-content h3 {
        font-size: 17px;
    }

    .help-article-feedback {
        padding: 15px;
    }

    .help-sidebar-card {
        padding: 16px;
    }

    .help-sidebar-button {
        width: 100%;
        margin-left: 0;
    }

    .help-faq-item summary {
        padding: 15px;

        font-size: 12px;
    }

    .help-faq-answer {
        padding: 0 15px 15px;

        font-size: 12px;
    }

    .help-empty {
        padding: 43px 20px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .help-container {
        width: calc(100% - 20px);
    }

    .help-logo-image {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
    }

    .help-logo-img {
        width: 37px;
        height: 37px;
    }

    .help-logo-text {
        font-size: 14px;
    }

    .help-logo-text small {
        font-size: 7px;
    }

    .help-mobile-toggle {
        width: 36px;
        height: 36px;
    }

    .help-hero-content {
        padding-right: 7px;
        padding-left: 7px;
    }

    .help-hero h1 {
        font-size: 31px;
    }

    .help-hero p {
        font-size: 12px;
    }

    .help-page-header .help-container {
        width: calc(100% - 20px);
    }

    .help-page-header-content h1 {
        font-size: 28px;
    }

    .help-page-header-content p {
        font-size: 12px;
    }

    .help-category-link {
        padding: 15px;
    }

    .help-category-title {
        font-size: 14px;
    }

    .help-category-description {
        font-size: 10px;
    }

    .help-subcategory-list {
        padding-right: 9px;
        padding-left: 9px;
    }

    .help-subcategory-name {
        font-size: 10px;
    }

    .help-empty {
        padding: 40px 16px;
    }

    .help-article {
        padding: 19px 15px;
    }

    .help-article-header h1 {
        font-size: 25px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 340px) {

    .help-container {
        width: calc(100% - 16px);
    }

    .help-logo {
        gap: 6px;
    }

    .help-logo-image {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .help-logo-img {
        width: 34px;
        height: 34px;
    }

    .help-logo-text {
        font-size: 13px;
    }

    .help-logo-text small {
        font-size: 6px;
    }

    .help-mobile-toggle {
        width: 34px;
        height: 34px;
    }

    .help-hero h1 {
        font-size: 28px;
    }

    .help-page-header-content h1 {
        font-size: 26px;
    }

    .help-page-header-content p {
        font-size: 11px;
    }

    .help-category-link {
        padding: 14px;
    }

    .help-category-icon {
        flex-basis: 39px;

        width: 39px;
        height: 39px;

        font-size: 16px;
    }

    .help-category-arrow {
        flex-basis: 27px;

        width: 27px;
        height: 27px;
    }

    .help-subcategory-list {
        padding-right: 8px;
        padding-left: 8px;
    }

    .help-article-header h1 {
        font-size: 23px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

