/* OwnHost — SSL store landing (modern) */

.oh-ssl-page {
    --oh-accent: #20bc7e;
    --oh-accent-hover: #1a9a66;
    --oh-accent-soft: rgba(32, 188, 126, 0.12);
    --oh-dark: #282B2D;
    --oh-text: #6b7280;
    --oh-border: #e5e7eb;
    --oh-radius: 14px;
    --oh-shadow: 0 1px 2px rgba(40, 43, 45, 0.05), 0 8px 24px rgba(40, 43, 45, 0.06);
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 12px 48px;
    font-family: 'Inter', 'Lato', sans-serif;
    color: var(--oh-dark);
}

/* Hero */
.oh-ssl-hero {
    margin: 0 0 28px;
    padding: 28px 26px;
    border: 1px solid rgba(32, 188, 126, 0.18);
    border-radius: 16px;
    background:
        radial-gradient(ellipse 70% 120% at 100% 0%, rgba(32, 188, 126, 0.14), transparent 55%),
        linear-gradient(135deg, #ffffff 0%, #f3faf7 100%);
    box-shadow: var(--oh-shadow);
}

.oh-ssl-hero__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--oh-accent);
}

.oh-ssl-hero__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--oh-dark);
}

.oh-ssl-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(32, 188, 126, 0.28);
    color: var(--oh-accent);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(32, 188, 126, 0.12);
    flex: 0 0 auto;
}

.oh-ssl-hero__lead {
    margin: 12px 0 0;
    max-width: 54ch;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--oh-text);
}

/* Levels */
.oh-ssl-section__head {
    text-align: center;
    margin-bottom: 22px;
}

.oh-ssl-section__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--oh-dark);
}

.oh-ssl-section__sub {
    margin: 0;
    color: var(--oh-text);
    font-size: 14.5px;
    font-weight: 500;
}

.oh-ssl-levels__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.oh-ssl-level-card {
    display: flex;
    flex-direction: column;
    padding: 22px 20px 18px;
    border: 1px solid var(--oh-border);
    border-radius: var(--oh-radius);
    background: #fff;
    box-shadow: var(--oh-shadow);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.oh-ssl-level-card:hover {
    border-color: rgba(32, 188, 126, 0.4);
    box-shadow: 0 8px 28px rgba(40, 43, 45, 0.1);
    transform: translateY(-2px);
}

.oh-ssl-level-card--featured {
    border-color: rgba(32, 188, 126, 0.45);
    background: linear-gradient(180deg, #f0fdf6 0%, #ffffff 48%);
    box-shadow: 0 0 0 2px var(--oh-accent-soft), var(--oh-shadow);
}

.oh-ssl-level-card__badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--oh-accent-soft);
    color: var(--oh-accent-hover);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.oh-ssl-level-card__title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--oh-dark);
}

.oh-ssl-level-card__tag {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--oh-accent-hover);
}

.oh-ssl-level-card__desc {
    flex: 1 1 auto;
    margin: 0 0 18px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--oh-text);
}

.oh-ssl-level-card img {
    display: none !important;
}

/* Buttons */
.oh-ssl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.oh-ssl-btn--primary,
.oh-ssl-page a.green-cart,
.oh-ssl-page .btn-success,
.oh-ssl-page .btn-primary {
    background: var(--oh-accent) !important;
    border-color: var(--oh-accent) !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(32, 188, 126, 0.22);
}

.oh-ssl-btn--primary:hover,
.oh-ssl-page a.green-cart:hover,
.oh-ssl-page .btn-success:hover,
.oh-ssl-page .btn-primary:hover {
    background: var(--oh-accent-hover) !important;
    border-color: var(--oh-accent-hover) !important;
    color: #fff !important;
}

.oh-ssl-btn--ghost,
.oh-ssl-page .btn-default {
    background: #fff !important;
    border-color: rgba(32, 188, 126, 0.35) !important;
    color: var(--oh-accent-hover) !important;
}

.oh-ssl-btn--ghost:hover,
.oh-ssl-page .btn-default:hover {
    background: #f3fbf7 !important;
    color: var(--oh-accent-hover) !important;
}

.oh-ssl-btn--block {
    width: 100%;
}

.oh-ssl-help-link {
    margin: 20px 0 0;
    text-align: center;
}

.oh-ssl-help-link__a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--oh-accent-hover) !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
}

.oh-ssl-help-link__a:hover {
    color: var(--oh-dark) !important;
}

/* Content blocks */
.oh-ssl-page .domains-head,
.oh-ssl-page .page-spase,
.oh-ssl-page .inc-ssl-box,
.oh-ssl-page .increased {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.oh-ssl-page .landing-page.ssl,
.oh-ssl-content {
    background: transparent !important;
}

.oh-ssl-page .navbar.navbar-default {
    margin: 24px 0 8px !important;
    border: 1px solid var(--oh-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: var(--oh-shadow);
    min-height: 0;
}

.oh-ssl-page .navbar-default .navbar-nav > li > a {
    color: var(--oh-dark) !important;
    font-weight: 600 !important;
    border-radius: 8px;
    margin: 6px 4px;
    padding: 8px 12px !important;
}

.oh-ssl-page .navbar-default .navbar-nav > li.active > a,
.oh-ssl-page .navbar-default .navbar-nav > li > a:hover {
    background: #f3fbf7 !important;
    color: var(--oh-accent-hover) !important;
}

.oh-ssl-block {
    margin: 20px 0 !important;
    padding: 26px 24px !important;
    border: 1px solid var(--oh-border) !important;
    border-radius: var(--oh-radius) !important;
    background: #fff !important;
    box-shadow: var(--oh-shadow) !important;
}

.oh-ssl-block .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.oh-ssl-block h2,
.oh-ssl-block h3 {
    margin-top: 0 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    color: var(--oh-dark) !important;
}

.oh-ssl-block h4 {
    font-weight: 700 !important;
    color: var(--oh-dark) !important;
}

.oh-ssl-block p,
.oh-ssl-block li {
    color: var(--oh-text) !important;
    line-height: 1.55;
}

.oh-ssl-checklist {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.oh-ssl-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
    font-weight: 500;
    color: var(--oh-dark) !important;
}

.oh-ssl-checklist .fa-check-circle {
    color: var(--oh-accent);
    margin-top: 2px;
}

.oh-ssl-visual-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 160px;
    height: 160px;
    margin-top: 12px;
    border-radius: 20px;
    border: 1px solid rgba(32, 188, 126, 0.25);
    background: linear-gradient(180deg, #f0fdf6 0%, #ffffff 100%);
    color: var(--oh-accent);
    font-size: 42px;
    box-shadow: var(--oh-shadow);
}

.oh-ssl-visual-card span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--oh-dark);
}

.oh-ssl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.oh-ssl-benefit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--oh-border);
    border-radius: 12px;
    background: #fafbfc;
    min-height: 110px;
}

.oh-ssl-benefit i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--oh-accent) !important;
    color: #fff !important;
    font-size: 16px !important;
}

.oh-ssl-benefit span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--oh-dark);
    line-height: 1.35;
}

/* Hide legacy 6-col benefit icons layout leftovers */
.oh-ssl-benefits .row > [class*="col-"] {
    display: none !important;
}

.oh-ssl-browser {
    margin: 20px 0 !important;
    padding: 24px !important;
    border: 1px solid rgba(245, 158, 11, 0.28) !important;
    border-radius: var(--oh-radius);
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%) !important;
}

.oh-ssl-browser h3 {
    margin: 0 0 14px !important;
    font-weight: 800;
    color: var(--oh-dark);
}

.oh-ssl-browser__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.oh-ssl-browser__notice i {
    color: #d97706;
    margin-top: 2px;
}

.oh-ssl-browser__notice p {
    margin: 0;
    color: var(--oh-dark);
    font-weight: 500;
    line-height: 1.5;
}

.oh-ssl-page .browser-image,
.oh-ssl-page .standout-1 .browser-image {
    display: none !important;
}

.oh-ssl-promo {
    margin: 0 0 16px !important;
    padding: 16px 18px !important;
    border: 1px solid rgba(32, 188, 126, 0.28) !important;
    border-radius: 12px !important;
    background: #f3fbf7 !important;
    color: var(--oh-dark) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.oh-ssl-promo .container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.oh-ssl-promo i {
    color: var(--oh-accent);
}

.oh-ssl-ev-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.oh-ssl-ev-type {
    padding: 18px 14px;
    text-align: center;
    border: 1px solid var(--oh-border);
    border-radius: 12px;
    background: #fafbfc;
}

.oh-ssl-ev-type--accent {
    border-color: rgba(32, 188, 126, 0.4);
    background: #f0fdf6;
}

.oh-ssl-ev-type__code {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--oh-accent-soft);
    color: var(--oh-accent-hover);
    font-size: 11px;
    font-weight: 800;
}

.oh-ssl-ev-type h4 {
    margin: 0 !important;
    font-size: 14px !important;
}

.oh-ssl-panel {
    border: 1px solid var(--oh-border) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    /* overflow:hidden breaks Bootstrap collapse height animation */
    overflow: visible;
    margin-bottom: 14px !important;
}

.oh-ssl-panel .panel-heading {
    background: #f8fafc !important;
    border-bottom: 1px solid var(--oh-border) !important;
    padding: 14px 16px !important;
    border-radius: 12px 12px 0 0 !important;
    cursor: pointer;
}

.oh-ssl-panel .panel-title {
    margin: 0 !important;
}

.oh-ssl-panel .panel-title,
.oh-ssl-panel .panel-title a {
    color: var(--oh-dark) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.oh-ssl-panel .panel-title .arrow {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    flex: 0 0 auto;
    color: var(--oh-accent);
}

.oh-ssl-panel .panel-collapse.collapse {
    display: none;
    height: auto !important;
}

.oh-ssl-panel .panel-collapse.collapse.in {
    display: block !important;
    height: auto !important;
}

.oh-ssl-panel .panel-collapse.collapsing {
    display: block !important;
    overflow: hidden;
}

.oh-ssl-panel .panel-body {
    padding: 18px 16px !important;
    background: #fff !important;
    border-radius: 0 0 12px 12px;
}

.oh-ssl-help-card {
    height: 100%;
    padding: 16px;
    border: 1px solid var(--oh-border);
    border-radius: 12px;
    background: #fafbfc;
}

.oh-ssl-help-card ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.oh-ssl-help-card .ideal {
    font-weight: 700;
    color: var(--oh-accent-hover) !important;
}

.oh-ssl-help-card img {
    display: none !important;
}

.oh-ssl-product {
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.5fr) minmax(140px, 0.45fr);
    gap: 16px;
    align-items: center;
    list-style: none;
    margin: 0 0 12px !important;
    padding: 16px !important;
    border: 1px solid var(--oh-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 1px 2px rgba(40, 43, 45, 0.04) !important;
}

.oh-ssl-product h4 {
    margin: 0 0 6px !important;
    color: var(--oh-dark) !important;
    font-weight: 800 !important;
}

.oh-ssl-product p {
    margin: 0 !important;
    color: var(--oh-text) !important;
    font-size: 13.5px !important;
    line-height: 1.45;
}

.oh-ssl-product__from {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 2px;
}

.oh-ssl-product__price strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--oh-dark);
}

.oh-ssl-product__more {
    display: inline-block;
    margin-top: 8px;
    color: var(--oh-accent-hover) !important;
    font-weight: 700;
    font-size: 13px;
}

.oh-ssl-faq h4 {
    margin: 18px 0 6px !important;
}

.oh-ssl-faq h4:first-child {
    margin-top: 0 !important;
}

.oh-ssl-page .trusted-brands,
.oh-ssl-page .btm-logos {
    filter: none;
    opacity: 0.9;
}

.oh-ssl-page .content-block.trusted-brands,
.oh-ssl-page .logos,
.oh-ssl-page .ssl-logos,
.oh-ssl-page .standout-2 {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--oh-border);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

/* ——— Type pages (EV / OV / DV / Wildcard) ——— */

.oh-ssl-type-page .domains-head,
body .oh-ssl-type-page + .domains-head {
    display: none !important;
}

.oh-ssl-type-nav {
    margin: 0 0 22px !important;
    border: 1px solid var(--oh-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
    min-height: 0 !important;
}

.oh-ssl-type-nav__inner {
    padding: 8px;
}

.oh-ssl-type-nav .navbar-collapse {
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.oh-ssl-type-nav__list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    float: none !important;
    margin: 0 !important;
    width: 100%;
}

.oh-ssl-type-nav__list > li {
    float: none !important;
}

.oh-ssl-type-nav__list > li > a {
    padding: 10px 14px !important;
    border-radius: 10px !important;
    color: var(--oh-dark) !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    background: transparent !important;
    border: 0 !important;
}

.oh-ssl-type-nav__list > li.active > a,
.oh-ssl-type-nav__list > li > a:hover {
    background: var(--oh-accent-soft) !important;
    color: var(--oh-accent-hover) !important;
}

.oh-ssl-type-intro,
.oh-ssl-org-info,
.oh-ssl-pricing,
.oh-ssl-highlights,
.oh-ssl-features {
    margin-bottom: 18px;
}

.oh-ssl-type-intro__grid,
.oh-ssl-org-info__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 28px;
    align-items: center;
}

.oh-ssl-type-intro__body {
    color: var(--oh-text);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.oh-ssl-type-intro__body p {
    margin: 0 0 14px;
}

.oh-ssl-type-intro__visual img,
.oh-ssl-org-info__visual img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.oh-ssl-usecases {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--oh-border);
}

.oh-ssl-usecases__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
    color: var(--oh-dark);
}

.oh-ssl-usecases__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.oh-ssl-usecase {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--oh-border);
    border-radius: 12px;
    background: #fafbfc;
}

.oh-ssl-usecase__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(32, 188, 126, 0.25);
    color: var(--oh-accent);
    flex: 0 0 auto;
}

.oh-ssl-usecase h4 {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--oh-dark) !important;
    line-height: 1.35;
}

.oh-ssl-pricing {
    padding: 22px 20px !important;
    border: 1px solid var(--oh-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--oh-shadow);
}

.oh-ssl-pricing__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.oh-ssl-pricing__head .oh-ssl-section__title {
    text-align: left;
    margin-bottom: 4px;
}

.oh-ssl-pricing__head .oh-ssl-section__sub {
    text-align: left;
}

.oh-ssl-currency {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.oh-ssl-currency__label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.oh-ssl-currency__select {
    height: 40px !important;
    border-radius: 10px !important;
    border-color: var(--oh-border) !important;
    box-shadow: none !important;
    font-weight: 600;
}

.oh-ssl-pricing__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oh-ssl-pricing__grid--1 {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

.oh-ssl-pricing__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oh-ssl-pricing__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oh-ssl-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px 18px;
    border: 1px solid var(--oh-border);
    border-radius: 14px;
    background: #fafbfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oh-ssl-price-card:hover {
    border-color: rgba(32, 188, 126, 0.35);
    box-shadow: 0 10px 28px rgba(40, 43, 45, 0.08);
    transform: translateY(-2px);
}

.oh-ssl-price-card--featured {
    background: linear-gradient(180deg, #f3faf7 0%, #ffffff 40%);
    border-color: rgba(32, 188, 126, 0.4);
}

.oh-ssl-price-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--oh-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.oh-ssl-price-card__head {
    margin-bottom: 16px;
    padding-right: 72px;
}

.oh-ssl-price-card__title {
    margin: 0 0 10px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--oh-dark) !important;
    line-height: 1.3;
}

.oh-ssl-price-card__price strong {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--oh-dark);
}

.oh-ssl-price-card__features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    flex: 1 1 auto;
}

.oh-ssl-price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f5;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--oh-text);
    line-height: 1.4;
}

.oh-ssl-price-card__features li:last-child {
    border-bottom: 0;
}

.oh-ssl-price-card__features i {
    margin-top: 2px;
    color: var(--oh-accent);
    width: 14px;
    text-align: center;
    flex: 0 0 auto;
}

.oh-ssl-price-card__features em {
    font-style: normal;
    font-weight: 700;
    color: var(--oh-dark);
}

.oh-ssl-price-card__cta {
    margin-top: auto;
}

.oh-ssl-pricing .oh-ssl-help-link {
    margin: 18px 0 0;
    text-align: center;
}

.oh-ssl-org-info__copy p {
    margin: 0;
    color: var(--oh-text);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.oh-ssl-highlights {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.oh-ssl-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.oh-ssl-highlight {
    padding: 18px 16px;
    border: 1px solid var(--oh-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--oh-shadow);
}

.oh-ssl-highlight h3 {
    margin: 0 0 8px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--oh-dark) !important;
}

.oh-ssl-highlight p {
    margin: 0 !important;
    font-size: 13.5px !important;
    line-height: 1.5;
    color: var(--oh-text) !important;
    font-weight: 500;
}

.oh-ssl-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.oh-ssl-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border: 1px solid var(--oh-border);
    border-radius: 12px;
    background: #fafbfc;
}

.oh-ssl-feature i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--oh-accent-soft);
    color: var(--oh-accent);
    flex: 0 0 auto;
}

.oh-ssl-feature h3 {
    margin: 0 !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--oh-dark) !important;
    line-height: 1.35;
}

/* Kill legacy store.css leftovers inside modern type pages */
.oh-ssl-type-page .content-block,
.oh-ssl-type-page .standout,
.oh-ssl-type-page .standout-features,
.oh-ssl-type-page .features,
.oh-ssl-type-page .certificate-options {
    background: transparent !important;
    box-shadow: none !important;
}

.oh-ssl-type-page .certificate-options .row-pricing-table,
.oh-ssl-type-page .ideal-for {
    display: none !important;
}

@media (max-width: 991px) {
    .oh-ssl-levels__grid,
    .oh-ssl-benefit-grid,
    .oh-ssl-ev-types,
    .oh-ssl-usecases__grid,
    .oh-ssl-highlights__grid,
    .oh-ssl-pricing__grid,
    .oh-ssl-pricing__grid--2,
    .oh-ssl-pricing__grid--3,
    .oh-ssl-pricing__grid--4 {
        grid-template-columns: 1fr;
    }

    .oh-ssl-type-intro__grid,
    .oh-ssl-org-info__grid {
        grid-template-columns: 1fr;
    }

    .oh-ssl-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oh-ssl-product {
        grid-template-columns: 1fr;
    }

    .oh-ssl-what__visual,
    .oh-ssl-type-intro__visual {
        margin-top: 8px;
        order: -1;
    }

    .oh-ssl-type-intro__grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .oh-ssl-hero {
        padding: 20px 16px;
    }

    .oh-ssl-block {
        padding: 18px 14px !important;
    }

    .oh-ssl-features__grid {
        grid-template-columns: 1fr;
    }

    .oh-ssl-price-card__head {
        padding-right: 0;
    }

    .oh-ssl-price-card__badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}
