/*
 * Grabby Modern — SSL Certificates store
 * Scope prefix: .ghssl-
 * Pages: store/ssl/index.tpl, dv.tpl, ov.tpl, ev.tpl, wildcard.tpl, competitive-upgrade.tpl
 */

.ghssl-page {
    background: var(--gh-page-bg);
    padding-bottom: 64px;
}

.ghssl-page .container {
    max-width: var(--gh-content);
}

/* ---------- Hero ---------- */
.ghssl-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gh-navy-950), var(--gh-navy-800));
    padding: 64px 24px 56px;
    color: #fff;
    text-align: center;
}

.ghssl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 15% -10%, rgba(37, 99, 235, .35), transparent),
                radial-gradient(500px 260px at 90% 110%, rgba(255, 153, 0, .18), transparent);
    pointer-events: none;
}

.ghssl-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.ghssl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--gh-radius-pill);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 18px;
}

.ghssl-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 14px;
}

.ghssl-hero p.ghssl-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .82);
    margin: 0 auto 22px;
    max-width: 640px;
}

.ghssl-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

.ghssl-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ghssl-trust-points i {
    color: var(--gh-orange-400);
}

/* ---------- Quick level picker (index hero) ---------- */
.ghssl-quick-levels {
    position: relative;
    z-index: 1;
    max-width: var(--gh-content);
    margin: 34px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ghssl-quick-card {
    background: var(--gh-surface);
    border-radius: var(--gh-radius-lg);
    box-shadow: var(--gh-shadow-md);
    padding: 26px 22px;
    text-align: center;
    color: var(--gh-text);
}

.ghssl-quick-card img {
    height: 46px;
    margin-bottom: 12px;
}

.ghssl-quick-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.ghssl-quick-card span.ghssl-quick-sub {
    display: block;
    font-size: 12.5px;
    color: var(--gh-text-muted);
    margin-bottom: 10px;
}

.ghssl-quick-card p {
    font-size: 13.5px;
    color: var(--gh-text-soft);
    margin: 0 0 16px;
}

.ghssl-quick-card .ghssl-btn {
    width: 100%;
}

.ghssl-help-link {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 20px 0 0;
}

.ghssl-help-link a {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ghssl-help-link a:hover {
    color: #fff;
}

/* ---------- Buttons ---------- */
.ghssl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--gh-radius-sm);
    font-weight: 600;
    font-size: 14.5px;
    border: none;
    cursor: pointer;
    transition: var(--gh-transition);
    text-decoration: none;
}

.ghssl-btn-primary {
    background: var(--gh-blue-600);
    color: #fff;
}

.ghssl-btn-primary:hover {
    background: var(--gh-blue-700);
    color: #fff;
}

.ghssl-btn-outline {
    background: transparent;
    border: 1.5px solid var(--gh-border-strong);
    color: var(--gh-text);
}

.ghssl-btn-outline:hover {
    border-color: var(--gh-blue-600);
    color: var(--gh-blue-600);
}

.ghssl-btn-block {
    width: 100%;
}

/* ---------- Sticky nav tabs ---------- */
.ghssl-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--gh-surface);
    border-bottom: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow-xs);
}

.ghssl-nav {
    max-width: var(--gh-content);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ghssl-nav a {
    display: inline-flex;
    align-items: center;
    padding: 16px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gh-text-soft);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: var(--gh-transition);
    white-space: nowrap;
}

.ghssl-nav a:hover {
    color: var(--gh-blue-600);
}

.ghssl-nav a.is-active {
    color: var(--gh-blue-600);
    border-bottom-color: var(--gh-blue-600);
}

/* ---------- Competitive upgrade banner ---------- */
.ghssl-cu-banner {
    background: var(--gh-warning-bg);
    border-bottom: 1px solid var(--gh-border);
}

.ghssl-cu-banner-inner {
    max-width: var(--gh-content);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ghssl-cu-banner-inner h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-warning);
    margin: 0 0 2px;
}

.ghssl-cu-banner-inner p {
    font-size: 13.5px;
    color: var(--gh-text-soft);
    margin: 0;
}

.ghssl-cu-banner-inner button {
    background: transparent;
    border: 1px solid var(--gh-border-strong);
    border-radius: var(--gh-radius-sm);
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-text-soft);
    flex-shrink: 0;
}

/* ---------- Generic section shell ---------- */
.ghssl-section {
    max-width: var(--gh-content);
    margin: 40px auto 0;
    padding: 0 24px;
}

.ghssl-card {
    background: var(--gh-surface);
    border-radius: var(--gh-radius-lg);
    box-shadow: var(--gh-shadow-sm);
    padding: 40px;
}

.ghssl-section-heading {
    max-width: 720px;
    margin: 0 0 28px;
}

.ghssl-section-heading.is-center {
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
}

.ghssl-section-heading span.ghssl-eyebrow {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gh-blue-600);
    margin-bottom: 8px;
}

.ghssl-section-heading h2, .ghssl-section-heading h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--gh-text);
    margin: 0 0 10px;
}

.ghssl-section-heading p {
    color: var(--gh-text-soft);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* ---------- Media row (image + copy) ---------- */
.ghssl-media-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ghssl-media-row.is-reverse {
    flex-direction: row-reverse;
}

.ghssl-media-row .ghssl-media-figure {
    flex: 0 0 280px;
    text-align: center;
}

.ghssl-media-row .ghssl-media-figure img {
    max-width: 100%;
    border-radius: var(--gh-radius-md);
}

.ghssl-media-row .ghssl-media-copy {
    flex: 1;
}

.ghssl-media-copy h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gh-text);
    margin: 0 0 14px;
}

.ghssl-media-copy p {
    color: var(--gh-text-soft);
    line-height: 1.7;
    margin: 0 0 14px;
}

.ghssl-checklist {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
}

.ghssl-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--gh-text-soft);
    padding: 6px 0;
}

.ghssl-checklist i {
    color: var(--gh-success);
    margin-top: 3px;
}

/* Ideal-for use-case row */
.ghssl-usecases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.ghssl-usecases > div {
    text-align: center;
    padding: 20px 14px;
    background: var(--gh-surface-soft);
    border-radius: var(--gh-radius-md);
    border: 1px solid var(--gh-border);
}

.ghssl-usecases i {
    font-size: 26px;
    color: var(--gh-blue-600);
    margin-bottom: 10px;
    display: block;
}

.ghssl-usecases h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0;
}

/* ---------- Certificate cards (index featured picks) ---------- */
.ghssl-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.ghssl-cert-card {
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-lg);
    padding: 28px 24px;
    background: var(--gh-surface);
    display: flex;
    flex-direction: column;
    transition: var(--gh-transition);
}

.ghssl-cert-card:hover {
    box-shadow: var(--gh-shadow-md);
    transform: translateY(-2px);
}

.ghssl-cert-card h4.ghssl-cert-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0 0 16px;
}

.ghssl-cert-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--gh-surface-soft);
    border-radius: var(--gh-radius-sm);
    margin-bottom: 16px;
}

.ghssl-cert-logo img {
    max-height: 30px;
}

.ghssl-cert-logo span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gh-text-soft);
}

.ghssl-cert-card p.ghssl-cert-desc {
    font-size: 14px;
    color: var(--gh-text-soft);
    line-height: 1.6;
    margin: 0 0 10px;
}

.ghssl-cert-card p.ghssl-cert-recommended {
    font-size: 13px;
    color: var(--gh-text-muted);
    margin: 0 0 16px;
}

.ghssl-cert-card p.ghssl-cert-recommended span {
    font-weight: 700;
    color: var(--gh-text);
}

.ghssl-cert-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex: 1;
}

.ghssl-cert-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--gh-text-soft);
    padding: 5px 0;
}

.ghssl-cert-features img {
    width: 15px;
    height: 15px;
    margin-top: 3px;
}

/* ---------- Benefits grid ---------- */
.ghssl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ghssl-benefit {
    text-align: center;
    padding: 22px 12px;
    border-radius: var(--gh-radius-md);
    background: var(--gh-surface-soft);
    border: 1px solid var(--gh-border);
}

.ghssl-benefit i {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

.ghssl-benefit span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-text);
    line-height: 1.4;
}

.ghssl-benefit.is-blue i { color: var(--gh-blue-600); }
.ghssl-benefit.is-green i { color: var(--gh-green-600); }
.ghssl-benefit.is-purple i { color: var(--gh-purple-600); }
.ghssl-benefit.is-orange i { color: var(--gh-orange-500); }
.ghssl-benefit.is-red i { color: var(--gh-red-600); }
.ghssl-benefit.is-yellow i { color: var(--gh-yellow-500); }

/* ---------- Trust / browser-warning comparison ---------- */
.ghssl-trust-compare {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ghssl-trust-compare .ghssl-media-figure {
    flex: 0 0 340px;
}

.ghssl-trust-compare img {
    max-width: 100%;
    border-radius: var(--gh-radius-md);
    box-shadow: var(--gh-shadow-sm);
}

.ghssl-trust-banner {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--gh-danger-bg);
    border: 1px solid rgba(220, 38, 38, .2);
    border-radius: var(--gh-radius-md);
}

.ghssl-trust-banner img {
    height: 34px;
    flex-shrink: 0;
}

.ghssl-trust-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--gh-danger);
    font-weight: 600;
}

/* ---------- Upgrade / cross-promo panel ---------- */
.ghssl-upgrade-promo {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--gh-navy-900), var(--gh-navy-800));
    border-radius: var(--gh-radius-lg);
    padding: 40px;
    color: #fff;
}

.ghssl-upgrade-copy {
    flex: 1.1;
}

.ghssl-upgrade-copy span.ghssl-eyebrow {
    color: var(--gh-orange-400);
}

.ghssl-upgrade-copy h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.ghssl-upgrade-copy p {
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin: 0 0 10px;
}

.ghssl-upgrade-copy ul {
    list-style: none;
    margin: 12px 0 20px;
    padding: 0;
}

.ghssl-upgrade-copy ul li {
    padding: 5px 0 5px 24px;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

.ghssl-upgrade-copy ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gh-orange-400);
    font-size: 12px;
    top: 8px;
}

.ghssl-upgrade-visual {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: center;
}

.ghssl-upgrade-visual div {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--gh-radius-md);
    padding: 16px 10px;
}

.ghssl-upgrade-visual img {
    max-width: 100%;
    margin-bottom: 8px;
}

.ghssl-upgrade-visual h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.ghssl-upgrade-quote {
    flex: .8;
    border-left: 1px solid rgba(255, 255, 255, .18);
    padding-left: 28px;
}

.ghssl-upgrade-quote q {
    display: block;
    font-size: 15px;
    font-style: italic;
    color: #fff;
    margin-bottom: 12px;
}

.ghssl-upgrade-quote p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 14px;
}

.ghssl-upgrade-quote img {
    height: 22px;
}

/* ---------- Accordion (help me choose / view all / multi-year / faq) ---------- */
.ghssl-accordion .card {
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.ghssl-accordion .card:last-child {
    margin-bottom: 0;
}

.ghssl-accordion .card-header {
    background: var(--gh-surface-soft);
    padding: 18px 22px;
    cursor: pointer;
}

.ghssl-accordion .card-header h4 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--gh-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ghssl-accordion .card-header .arrow {
    color: var(--gh-blue-600);
    font-size: 13px;
}

.ghssl-accordion .card-body {
    padding: 26px 22px;
}

.ghssl-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ghssl-choose-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0 0 10px;
}

.ghssl-choose-card ul {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.ghssl-choose-card ul li {
    font-size: 13.5px;
    color: var(--gh-text-soft);
    padding: 4px 0 4px 18px;
    position: relative;
}

.ghssl-choose-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 10px;
    color: var(--gh-success);
}

.ghssl-choose-card p.ghssl-ideal {
    font-size: 13px;
    font-weight: 700;
    color: var(--gh-blue-600);
    margin: 0 0 12px;
}

.ghssl-choose-card img {
    width: 100%;
    border-radius: var(--gh-radius-sm);
    margin-bottom: 12px;
}

.ghssl-choose-card p.ghssl-type-expl {
    font-size: 12.5px;
    color: var(--gh-text-muted);
    margin: 0 0 14px;
}

/* All certificates list */
.ghssl-currency-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.ghssl-currency-select {
    position: relative;
}

.ghssl-currency-select select {
    appearance: none;
    padding: 9px 34px 9px 14px;
    border-radius: var(--gh-radius-sm);
    border: 1px solid var(--gh-border-strong);
    background: var(--gh-surface);
    color: var(--gh-text);
    font-size: 13.5px;
    font-weight: 600;
}

.ghssl-currency-select i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--gh-text-muted);
    pointer-events: none;
}

.ghssl-all-certs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ghssl-all-cert-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gh-border);
}

.ghssl-all-certs li:last-child .ghssl-all-cert-row {
    border-bottom: none;
}

.ghssl-all-cert-row.is-featured {
    background: var(--gh-blue-50);
    margin: 0 -20px;
    padding: 18px 20px;
    border-radius: var(--gh-radius-md);
    border-bottom-color: transparent;
}

.ghssl-all-cert-info {
    flex: 1;
}

.ghssl-all-cert-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0 0 4px;
}

.ghssl-all-cert-info p {
    font-size: 13px;
    color: var(--gh-text-soft);
    margin: 0;
}

.ghssl-all-cert-price {
    text-align: center;
    min-width: 110px;
}

.ghssl-all-cert-price small {
    display: block;
    font-size: 11.5px;
    color: var(--gh-text-muted);
    text-transform: uppercase;
}

.ghssl-all-cert-price strong {
    display: block;
    font-size: 17px;
    color: var(--gh-text);
}

.ghssl-all-cert-price span.ghssl-badge-reco {
    display: inline-block;
    margin-top: 4px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gh-blue-600);
}

.ghssl-all-cert-actions {
    text-align: center;
    min-width: 150px;
}

.ghssl-all-cert-actions form {
    margin-bottom: 6px;
}

.ghssl-all-cert-actions a {
    font-size: 12.5px;
    color: var(--gh-blue-600);
    font-weight: 600;
}

.ghssl-content-prose h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gh-text);
}

.ghssl-content-prose p {
    color: var(--gh-text-soft);
    line-height: 1.7;
}

.ghssl-content-prose img {
    max-width: 100%;
    border-radius: var(--gh-radius-md);
}

.ghssl-content-prose ul {
    color: var(--gh-text-soft);
}

.ghssl-faq h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--gh-text);
    margin: 18px 0 6px;
}

.ghssl-faq h4:first-child {
    margin-top: 0;
}

.ghssl-faq p {
    font-size: 13.5px;
    color: var(--gh-text-soft);
    line-height: 1.6;
    margin: 0;
}

.ghssl-faq a {
    color: var(--gh-blue-600);
    font-weight: 600;
}

/* ---------- Pricing cards ---------- */
.ghssl-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ghssl-price-grid.ghssl-price-cols-1 { grid-template-columns: minmax(0, 340px); justify-content: center; }
.ghssl-price-grid.ghssl-price-cols-2 { grid-template-columns: repeat(2, minmax(0, 300px)); justify-content: center; }

.ghssl-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gh-surface);
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-lg);
    padding: 30px 26px;
    transition: var(--gh-transition);
}

.ghssl-price-card.is-featured {
    border-color: var(--gh-blue-600);
    box-shadow: var(--gh-shadow-md);
}

.ghssl-price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gh-shadow-md);
}

.ghssl-price-badge {
    position: absolute;
    top: -12px;
    left: 26px;
    background: var(--gh-blue-600);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 5px 14px;
    border-radius: var(--gh-radius-pill);
}

.ghssl-price-card h4.ghssl-price-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gh-text);
    margin: 6px 0 18px;
}

.ghssl-price-tiers {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-sm);
    overflow: hidden;
}

.ghssl-price-tiers li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--gh-text-soft);
    border-bottom: 1px solid var(--gh-border);
}

.ghssl-price-tiers li:last-child {
    border-bottom: none;
}

.ghssl-price-tiers li strong {
    font-size: 16px;
    color: var(--gh-text);
}

.ghssl-price-tiers li span.ghssl-na {
    color: var(--gh-text-muted);
}

.ghssl-price-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex: 1;
}

.ghssl-price-features li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: var(--gh-text-soft);
    padding: 6px 0;
    border-bottom: 1px dashed var(--gh-border);
}

.ghssl-price-features li:last-child {
    border-bottom: none;
}

.ghssl-price-features li span.ghssl-feature-label {
    color: var(--gh-text-muted);
}

.ghssl-price-features li span.ghssl-feature-value {
    font-weight: 600;
    color: var(--gh-text);
    text-align: right;
}

.ghssl-price-features li i.fa-check {
    color: var(--gh-success);
}

.ghssl-price-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gh-text-muted);
    grid-column: 1 / -1;
}

.ghssl-price-foot {
    text-align: center;
    margin-top: 24px;
}

.ghssl-price-foot a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gh-blue-600);
    font-weight: 600;
    font-size: 14px;
}

/* ---------- Feature chips (shared/features.tpl) ---------- */
.ghssl-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.ghssl-highlight-row > div {
    text-align: center;
    padding: 22px 16px;
    background: var(--gh-blue-50);
    border-radius: var(--gh-radius-md);
}

.ghssl-highlight-row h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0 0 8px;
}

.ghssl-highlight-row p {
    font-size: 13px;
    color: var(--gh-text-soft);
    margin: 0;
}

.ghssl-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ghssl-feature-chip {
    text-align: center;
    padding: 20px 10px;
}

.ghssl-feature-chip i {
    font-size: 22px;
    color: var(--gh-blue-600);
    display: block;
    margin-bottom: 10px;
}

.ghssl-feature-chip h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-text);
    margin: 0;
}

/* ---------- Trust logos band ---------- */
.ghssl-logo-band {
    background: var(--gh-navy-900);
    border-radius: var(--gh-radius-lg);
    padding: 36px 40px;
    text-align: center;
}

.ghssl-logo-band p {
    color: rgba(255, 255, 255, .7);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.ghssl-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ghssl-logo-chip {
    background: #fff;
    border-radius: var(--gh-radius-md);
    padding: 14px 26px;
    display: flex;
    align-items: center;
}

.ghssl-logo-chip img {
    height: 26px;
}

/* ---------- Final CTA ---------- */
.ghssl-final-cta {
    max-width: var(--gh-content);
    margin: 40px auto 0;
    padding: 0 24px;
}

.ghssl-final-cta-inner {
    background: linear-gradient(135deg, var(--gh-blue-700), var(--gh-blue-600));
    border-radius: var(--gh-radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}

.ghssl-final-cta-inner h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.ghssl-final-cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
}

.ghssl-final-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ghssl-btn-white {
    background: #fff;
    color: var(--gh-blue-700);
}

.ghssl-btn-white:hover {
    background: rgba(255, 255, 255, .9);
    color: var(--gh-blue-700);
}

.ghssl-btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
}

.ghssl-btn-outline-white:hover {
    border-color: #fff;
    color: #fff;
}

/* ---------- Competitive upgrade page ---------- */
.ghssl-cu-page-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--gh-surface);
    border-radius: var(--gh-radius-lg);
    box-shadow: var(--gh-shadow-sm);
    padding: 40px;
    text-align: center;
}

.ghssl-cu-page-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0 0 20px;
}

.ghssl-cu-scenario {
    text-align: left;
    display: flex;
    gap: 16px;
    background: var(--gh-warning-bg);
    border: 1px solid rgba(180, 83, 9, .18);
    border-radius: var(--gh-radius-md);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.ghssl-cu-scenario i {
    color: var(--gh-warning);
    font-size: 26px;
    flex-shrink: 0;
}

.ghssl-cu-scenario strong {
    display: block;
    color: var(--gh-warning);
    margin-bottom: 4px;
}

.ghssl-cu-scenario p {
    margin: 0;
    font-size: 13.5px;
    color: var(--gh-text-soft);
}

.ghssl-cu-page-card > p {
    font-size: 14px;
    color: var(--gh-text-soft);
    margin: 0 0 18px;
}

.ghssl-cu-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.ghssl-cu-form .ghssl-cu-input {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gh-border-strong);
    border-radius: var(--gh-radius-sm);
    overflow: hidden;
}

.ghssl-cu-form .ghssl-cu-input span {
    padding: 0 14px;
    background: var(--gh-surface-soft);
    color: var(--gh-text-muted);
    font-size: 14px;
    align-self: stretch;
    display: flex;
    align-items: center;
    border-right: 1.5px solid var(--gh-border-strong);
}

.ghssl-cu-form .ghssl-cu-input input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--gh-text);
    background: transparent;
}

.ghssl-cu-form .ghssl-cu-input input:focus {
    outline: none;
}

.ghssl-cu-footnote {
    font-size: 12px;
    color: var(--gh-text-muted);
    margin: 0;
}

.ghssl-cu-results {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    text-align: left;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-md);
    overflow: hidden;
}

.ghssl-cu-results li {
    display: flex;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--gh-border);
    color: var(--gh-text-soft);
}

.ghssl-cu-results li:last-child {
    border-bottom: none;
}

.ghssl-cu-results li strong {
    color: var(--gh-text);
    font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .ghssl-benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .ghssl-feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .ghssl-quick-levels { grid-template-columns: 1fr; }
    .ghssl-media-row, .ghssl-trust-compare, .ghssl-upgrade-promo { flex-direction: column; }
    .ghssl-media-row.is-reverse { flex-direction: column; }
    .ghssl-media-row .ghssl-media-figure, .ghssl-trust-compare .ghssl-media-figure { flex: 0 0 auto; max-width: 320px; }
    .ghssl-usecases { grid-template-columns: 1fr; }
    .ghssl-choose-grid { grid-template-columns: 1fr; }
    .ghssl-upgrade-visual { grid-template-columns: repeat(3, 1fr); }
    .ghssl-upgrade-quote { border-left: none; border-top: 1px solid rgba(255,255,255,.18); padding-left: 0; padding-top: 20px; margin-top: 20px; }
    .ghssl-final-cta-inner { flex-direction: column; text-align: center; }
    .ghssl-nav a { padding: 14px 12px; font-size: 13.5px; }
}

@media (max-width: 767.98px) {
    .ghssl-hero { padding: 48px 20px 42px; }
    .ghssl-hero h1 { font-size: 1.9rem; }
    .ghssl-card { padding: 26px 20px; }
    .ghssl-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .ghssl-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ghssl-highlight-row { grid-template-columns: 1fr; }
    .ghssl-all-cert-row { flex-wrap: wrap; }
    .ghssl-all-cert-price, .ghssl-all-cert-actions { min-width: 0; flex: 1 1 45%; text-align: left; }
    .ghssl-cu-form { flex-direction: column; }
    .ghssl-logo-row { gap: 14px; }
}

@media (max-width: 575.98px) {
    .ghssl-benefits-grid, .ghssl-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ghssl-cert-grid, .ghssl-price-grid { grid-template-columns: 1fr; }
}

/* ---------- Dark mode ---------- */
body.gh-dark-mode .ghssl-quick-card,
body.gh-dark-mode .ghssl-cert-card,
body.gh-dark-mode .ghssl-price-card,
body.gh-dark-mode .ghssl-cu-page-card,
body.gh-dark-mode .ghssl-card {
    box-shadow: none;
}

body.gh-dark-mode .ghssl-highlight-row > div {
    background: rgba(37, 99, 235, .12);
}

body.gh-dark-mode .ghssl-all-cert-row.is-featured {
    background: rgba(37, 99, 235, .12);
}

body.gh-dark-mode .ghssl-trust-banner {
    background: rgba(220, 38, 38, .12);
}

body.gh-dark-mode .ghssl-cu-scenario {
    background: rgba(180, 83, 9, .14);
}
