/* National SEO pages — trust badges, stats, FAQ, city grid, ads */

.hp-trust-strip {
    background: linear-gradient(90deg, #001a33 0%, #002443 50%, #001a33 100%);
    color: #fff;
    padding: 1.25rem 0;
    border-bottom: 3px solid #f59e0b;
}

.hp-trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.hp-trust-strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.95;
}

.hp-trust-strip-inner i {
    color: #fde68a;
}

.hp-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hp-stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 36, 67, 0.08);
    border: 1px solid rgba(0, 36, 67, 0.06);
}

.hp-stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #002443;
    line-height: 1.1;
}

.hp-stat-card span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
}

.hp-national-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #002443;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    border-radius: 999px;
}

.hp-module-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.hp-module-card {
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 36, 67, 0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}

.hp-module-card:hover {
    box-shadow: 0 8px 28px rgba(0, 36, 67, 0.12);
    transform: translateY(-2px);
}

.hp-module-card h3 {
    margin: 0.75rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #002443;
}

.hp-module-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.68);
}

.hp-module-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002443, #0f4c81);
    color: #fde68a;
    border-radius: 10px;
    font-size: 1.125rem;
}

.hp-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.hp-city-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 36, 67, 0.1);
    border-radius: 10px;
    color: #002443;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.hp-city-link:hover {
    background: #f0f7ff;
    border-color: #0f4c81;
    color: #002443;
}

.hp-city-link i {
    color: #f59e0b;
}

.hp-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hp-faq-section--premium {
    position: relative;
    padding: clamp(3.25rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 45%, #f8fafc 100%);
}

.hp-faq-section--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 680px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(49, 112, 222, 0.28), transparent);
}

.hp-faq-section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.hp-faq-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #de3163;
}

.hp-faq-section-head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #002443;
}

.hp-faq-section-head p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(0, 36, 67, 0.68);
}

.hp-faq-item {
    background: #fff;
    border: 1px solid rgba(0, 36, 67, 0.08);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 36, 67, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-faq-item:hover {
    border-color: rgba(49, 112, 222, 0.2);
    box-shadow: 0 6px 22px rgba(0, 36, 67, 0.07);
}

.hp-faq-item[open] {
    border-color: rgba(222, 49, 99, 0.25);
    box-shadow: 0 10px 32px rgba(0, 36, 67, 0.09);
}

.hp-faq-item summary {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.05rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: #002443;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.hp-faq-item summary::-webkit-details-marker {
    display: none;
}

.hp-faq-item summary::after {
    display: none;
}

.hp-faq-q-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #e8f0fd 100%);
    color: #3170de;
    font-size: 0.875rem;
}

.hp-faq-item[open] .hp-faq-q-icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
    color: #de3163;
}

.hp-faq-q-text {
    flex: 1;
    line-height: 1.45;
    text-align: left;
}

.hp-faq-chevron {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.625rem;
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.hp-faq-item[open] .hp-faq-chevron {
    transform: rotate(180deg);
    background: #de3163;
    color: #fff;
}

.hp-faq-answer {
    padding: 0 1.25rem 1.15rem 4.15rem;
    border-top: 1px solid rgba(0, 36, 67, 0.06);
}

.hp-faq-answer p {
    margin: 0.85rem 0 0;
    line-height: 1.7;
    color: rgba(0, 36, 67, 0.72);
}

@media (max-width: 540px) {
    .hp-faq-item summary {
        padding: 0.95rem 1rem;
        gap: 0.65rem;
        font-size: 0.9375rem;
    }

    .hp-faq-q-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .hp-faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Homepage — compact chip FAQ (short height) */
.hp-faq-section--compact {
    padding: clamp(2.25rem, 4vw, 3.25rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.hp-faq-compact-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.hp-faq-compact-side .hp-faq-section-kicker {
    margin-bottom: 0.5rem;
}

.hp-faq-compact-side h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #002443;
}

.hp-faq-compact-side > p {
    margin: 0 0 1.25rem;
    font-size: 0.9875rem;
    line-height: 1.6;
    color: rgba(0, 36, 67, 0.68);
}

.hp-faq-compact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hp-faq-chip-panel {
    background: #fff;
    border: 1px solid rgba(0, 36, 67, 0.08);
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 6px 28px rgba(0, 36, 67, 0.06);
}

.hp-faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.hp-faq-chip {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #002443;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.hp-faq-chip:hover {
    border-color: rgba(49, 112, 222, 0.35);
    background: #eff6ff;
}

.hp-faq-chip.is-active {
    background: #002443;
    color: #fff;
    border-color: #002443;
}

.hp-faq-chip-answers {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    min-height: 5.5rem;
}

.hp-faq-chip-answer {
    display: none;
    animation: hpFaqChipIn 0.22s ease;
}

.hp-faq-chip-answer.is-active {
    display: block;
}

.hp-faq-chip-q {
    margin: 0 0 0.45rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #002443;
}

.hp-faq-chip-answer p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(0, 36, 67, 0.72);
}

@keyframes hpFaqChipIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hp-faq-compact-grid {
        grid-template-columns: 1fr;
    }

    .hp-faq-compact-side {
        text-align: center;
    }

    .hp-faq-compact-actions {
        justify-content: center;
    }
}

.hp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 36, 67, 0.06);
}

.hp-compare-table th,
.hp-compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 36, 67, 0.08);
}

.hp-compare-table th {
    background: #002443;
    color: #fff;
    font-weight: 700;
}

.hp-compare-table tr:last-child td {
    border-bottom: none;
}

.hp-compare-table .hp-yes {
    color: #059669;
    font-weight: 700;
}

.hp-ads-wrap {
    margin: 2rem auto;
    max-width: 728px;
    min-height: 90px;
    padding: 0.5rem;
    text-align: center;
}

.hp-ads-wrap--hero {
    margin: 1.5rem auto;
}

.hp-page-hero--national {
    padding: 4rem 0 3.5rem;
    background: linear-gradient(135deg, #001529 0%, #002443 40%, #0a3d6e 100%);
}

.hp-page-hero--national h1 {
    font-size: clamp(2.1rem, 5vw, 3rem);
}

.hp-cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hp-cert-pill {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .hp-trust-strip-inner {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.hp-feature-ul {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    max-width: 52rem;
}

.hp-feature-ul li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 36, 67, 0.08);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.75);
}

.hp-feature-ul li i {
    color: #059669;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hp-breadcrumbs {
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 36, 67, 0.08);
    padding: 0.65rem 0;
}

.hp-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.8125rem;
}

.hp-breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.55);
}

.hp-breadcrumbs-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.35rem;
    color: rgba(0, 0, 0, 0.35);
}

.hp-breadcrumbs-item a {
    color: #0f4c81;
    font-weight: 600;
    text-decoration: none;
}

.hp-breadcrumbs-item a:hover {
    text-decoration: underline;
}

.hp-breadcrumbs-item span {
    color: #002443;
    font-weight: 700;
}

.hp-national-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hp-national-links a {
    display: block;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #002443, #0a3d6e);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.hp-national-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 36, 67, 0.25);
    color: #fde68a;
}

.hp-national-links a i {
    margin-right: 0.4rem;
    color: #fde68a;
}

.hp-pillar-trust-rail {
    background: linear-gradient(90deg, #002443, #0a3d6e);
    color: #fff;
    padding: 0.65rem 0;
    font-size: 0.8125rem;
}

.hp-pillar-trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.hp-pillar-trust-badge {
    font-weight: 800;
    color: #fde68a;
}

.hp-pillar-trust-rail a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hp-pillar-trust-rail a:hover {
    color: #fde68a;
}

.hp-glossary-list {
    display: grid;
    gap: 1.25rem;
}

.hp-glossary-item dt {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.hp-glossary-item dt a {
    color: #002443;
    text-decoration: none;
}

.hp-glossary-item dt a:hover {
    text-decoration: underline;
}

.hp-glossary-item dd {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

.hp-topics-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.hp-dual-erp-bar {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.35rem;
    background: rgba(0, 36, 67, 0.06);
    border-radius: 999px;
    border: 1px solid rgba(0, 36, 67, 0.1);
}

.hp-dual-erp-bar__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #334155;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hp-dual-erp-bar__pill i {
    opacity: 0.85;
}

.hp-dual-erp-bar__pill:hover {
    color: #002443;
    background: rgba(255, 255, 255, 0.85);
}

.hp-dual-erp-bar__pill.is-active {
    color: #002443;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.home-page .hp-dual-erp-bar {
    margin: 0 auto 1rem;
    justify-content: center;
}

.hp-dual-erp-bar-wrap {
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 36, 67, 0.08);
    padding: 0.65rem 0;
}

.hp-compare-crosslink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: rgba(0, 36, 67, 0.72);
}

.hp-compare-crosslink a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: #0f4c81;
    text-decoration: none;
}

.hp-compare-crosslink a:hover {
    text-decoration: underline;
}

.hp-home-college-band {
    background: linear-gradient(135deg, #002443 0%, #0f4c81 55%, #1e5a96 100%);
    color: #fff;
    padding: 2.75rem 0;
}

.hp-home-college-band-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hp-home-college-band-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
}

.hp-home-college-band h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1.25;
}

.hp-home-college-band-copy p:last-child {
    margin: 0;
    opacity: 0.92;
    line-height: 1.6;
}

.hp-home-college-band-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.hp-home-college-band .hp-dual-erp-bar {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hp-home-college-band .hp-dual-erp-bar__pill {
    color: #e2e8f0;
}

.hp-home-college-band .hp-dual-erp-bar__pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hp-home-college-band .hp-dual-erp-bar__pill.is-active {
    color: #002443;
}

@media (max-width: 768px) {
    .hp-home-college-band-inner {
        grid-template-columns: 1fr;
    }

    .hp-home-college-band-actions {
        align-items: stretch;
    }
}
