/* OneBestHost homepage redesign. Scoped to .obh-home where possible. */

:root {
    --obh-navy: #062a43;
    --obh-navy-2: #0a3b59;
    --obh-blue: #087ca7;
    --obh-cyan: #00a8c6;
    --obh-teal: #12b886;
    --obh-ink: #102a3a;
    --obh-muted: #5d7180;
    --obh-line: #dce7ec;
    --obh-soft: #f3f8fa;
    --obh-white: #ffffff;
    --obh-shadow: 0 22px 60px rgba(6, 42, 67, .12);
}

#home-banner,
.home-shortcuts {
    display: none;
}

#main-body {
    padding: 0 0 48px;
}

#main-body > .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

#main-body > .container > .row {
    margin: 0;
}

#main-body .main-content {
    float: none;
    width: 100%;
    padding: 0;
}

.obh-home {
    color: var(--obh-ink);
    font-family: "Open Sans", Arial, sans-serif;
    overflow: hidden;
}

.obh-product-nav {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--obh-line);
    border-radius: 12px;
    display: flex;
    gap: 6px;
    margin: 18px auto;
    max-width: 1180px;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
    width: calc(100% - 48px);
}

.obh-product-nav::-webkit-scrollbar {
    display: none;
}

.obh-product-nav a {
    border-radius: 8px;
    color: #365565;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 13px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.obh-product-nav a:hover,
.obh-product-nav a:focus {
    background: var(--obh-soft);
    color: var(--obh-blue);
}

.obh-home h1,
.obh-home h2,
.obh-home h3,
.obh-home p {
    margin-top: 0;
}

.obh-home h1,
.obh-home h2,
.obh-home h3 {
    color: var(--obh-ink);
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

.obh-home h1 {
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: 1.02;
    margin-bottom: 24px;
    max-width: 780px;
}

.obh-home h2 {
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.12;
    margin-bottom: 18px;
}

.obh-home h3 {
    font-size: 21px;
    line-height: 1.3;
}

.obh-home p {
    color: var(--obh-muted);
    font-size: 16px;
    line-height: 1.75;
}

.obh-hero,
.obh-section,
.obh-final-cta {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

.obh-hero {
    align-items: center;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 168, 198, .14), transparent 34%),
        linear-gradient(135deg, #f7fcfd 0%, #eef8fb 100%);
    border: 1px solid #d8eaf0;
    border-radius: 0 0 34px 34px;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
    min-height: 620px;
    padding: 80px 64px;
    position: relative;
}

.obh-hero::after {
    background-image: radial-gradient(rgba(8, 124, 167, .22) 1px, transparent 1px);
    background-size: 18px 18px;
    content: "";
    height: 180px;
    opacity: .45;
    position: absolute;
    right: 28px;
    top: 24px;
    width: 180px;
}

.obh-hero__content,
.obh-plan-card {
    position: relative;
    z-index: 1;
}

.obh-eyebrow {
    color: var(--obh-blue) !important;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.obh-hero__lead {
    font-size: 19px !important;
    max-width: 700px;
}

.obh-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.obh-btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.obh-btn:hover,
.obh-btn:focus {
    transform: translateY(-2px);
}

.obh-btn--primary {
    background: linear-gradient(135deg, var(--obh-blue), var(--obh-cyan));
    box-shadow: 0 10px 24px rgba(8, 124, 167, .22);
    color: var(--obh-white) !important;
}

.obh-btn--secondary {
    background: rgba(255, 255, 255, .78);
    border-color: #b8d3dd;
    color: var(--obh-navy) !important;
}

.obh-btn--dark {
    background: var(--obh-navy);
    color: var(--obh-white) !important;
}

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

.obh-btn--light {
    background: var(--obh-white);
    color: var(--obh-navy) !important;
}

.obh-btn--outline-light {
    border-color: rgba(255, 255, 255, .45);
    color: var(--obh-white) !important;
}

.obh-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.obh-feature-pills li {
    align-items: center;
    background: rgba(255, 255, 255, .76);
    border: 1px solid #d5e6ec;
    border-radius: 999px;
    color: #385565;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    padding: 9px 13px;
}

.obh-feature-pills i {
    color: var(--obh-teal);
}

.obh-plan-card {
    background: var(--obh-white);
    border: 1px solid #d4e4e9;
    border-radius: 18px;
    box-shadow: var(--obh-shadow);
    padding: 30px;
}

.obh-plan-card__topline {
    align-items: center;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: space-between;
}

.obh-badge {
    background: #e5faf3;
    border-radius: 999px;
    color: #087353;
    font-size: 10px;
    letter-spacing: .06em;
    padding: 7px 9px;
    text-transform: uppercase;
}

.obh-price {
    align-items: baseline;
    border-bottom: 1px solid var(--obh-line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    padding-bottom: 24px;
}

.obh-price__from {
    color: var(--obh-muted);
    flex-basis: 100%;
    font-size: 12px;
    text-transform: uppercase;
}

.obh-price__amount {
    color: var(--obh-navy);
    font-size: 42px;
    font-weight: 800;
}

.obh-price__cycle {
    color: var(--obh-muted);
    font-size: 13px;
}

.obh-check-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

.obh-check-list li {
    color: #3c5665;
    font-size: 14px;
    padding: 9px 0 9px 28px;
    position: relative;
}

.obh-check-list li::before {
    color: var(--obh-teal);
    content: "\2713";
    font-weight: 800;
    left: 0;
    position: absolute;
}

.obh-plan-card__note {
    font-size: 11px !important;
    margin: 14px 0 0;
    text-align: center;
}

.obh-section {
    padding: 96px 32px;
}

.obh-section--compact {
    padding-bottom: 74px;
}

.obh-section-heading {
    max-width: 730px;
}

.obh-section-heading--center {
    margin: 0 auto 46px;
    text-align: center;
}

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

.obh-service-card {
    background: var(--obh-white);
    border: 1px solid var(--obh-line);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 30px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.obh-service-card:hover {
    border-color: #a7ccd9;
    box-shadow: 0 18px 45px rgba(6, 42, 67, .09);
    transform: translateY(-4px);
}

.obh-service-card--featured {
    background: linear-gradient(155deg, #f7fcfd, #edf9f6);
    border-color: #b9dfe2;
}

.obh-icon {
    align-items: center;
    background: #e7f6f9;
    border-radius: 12px;
    color: var(--obh-blue);
    display: inline-flex;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    margin-bottom: 28px;
    width: 48px;
}

.obh-card-kicker {
    color: var(--obh-blue) !important;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.obh-service-card p:not(.obh-card-kicker) {
    font-size: 14px;
}

.obh-service-card a {
    color: var(--obh-blue);
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    text-decoration: none;
}

.obh-split {
    align-items: center;
    background: var(--obh-soft);
    border-radius: 26px;
    display: grid;
    gap: 70px;
    grid-template-columns: .9fr 1.1fr;
    padding-left: 64px;
    padding-right: 64px;
}

.obh-text-link {
    color: var(--obh-blue);
    font-size: 14px;
    font-weight: 700;
}

.obh-benefit-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.obh-benefit {
    background: var(--obh-white);
    border: 1px solid #deebef;
    border-radius: 14px;
    display: flex;
    gap: 15px;
    min-height: 155px;
    padding: 22px;
}

.obh-benefit > i {
    color: var(--obh-teal);
    font-size: 19px;
    margin-top: 3px;
}

.obh-benefit h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.obh-benefit p {
    font-size: 13px;
    line-height: 1.6;
}

.obh-process-grid {
    counter-reset: step;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.obh-process-grid li {
    border-top: 2px solid var(--obh-line);
    padding: 28px 26px 0 0;
}

.obh-process-grid span {
    color: var(--obh-cyan);
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 18px;
}

.obh-process-grid p {
    font-size: 14px;
}

.obh-vpn {
    align-items: center;
    background: linear-gradient(135deg, var(--obh-navy), #09567a);
    border-radius: 26px;
    display: grid;
    gap: 50px;
    grid-template-columns: 1.2fr .8fr;
    padding-left: 64px;
    padding-right: 64px;
}

.obh-vpn h2,
.obh-vpn p,
.obh-vpn a {
    color: var(--obh-white);
}

.obh-vpn p {
    color: #c6dbe4;
}

.obh-vpn .obh-eyebrow {
    color: #52d5e7 !important;
}

.obh-vpn-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.obh-vpn-links a {
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 14px;
    text-decoration: none;
}

.obh-vpn__visual {
    align-items: center;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 168, 198, .3), rgba(0, 168, 198, 0) 65%);
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 320px;
    position: relative;
    width: 100%;
}

.obh-vpn__visual > i {
    color: #74e0ec;
    font-size: 58px;
}

.obh-node {
    background: #72e4cf;
    border: 5px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    height: 20px;
    position: absolute;
    width: 20px;
}

.obh-node--one { left: 15%; top: 22%; }
.obh-node--two { right: 10%; top: 32%; }
.obh-node--three { bottom: 17%; left: 25%; }
.obh-node--four { bottom: 9%; right: 24%; }

.obh-faq {
    display: grid;
    gap: 64px;
    grid-template-columns: .75fr 1.25fr;
}

.obh-faq-list {
    border-top: 1px solid var(--obh-line);
}

.obh-faq details {
    border-bottom: 1px solid var(--obh-line);
    padding: 20px 0;
}

.obh-faq summary {
    color: var(--obh-ink);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
    padding-right: 34px;
    position: relative;
}

.obh-faq summary::-webkit-details-marker {
    display: none;
}

.obh-faq summary::after {
    color: var(--obh-blue);
    content: "+";
    font-size: 24px;
    position: absolute;
    right: 4px;
    top: -4px;
}

.obh-faq details[open] summary::after {
    content: "\2212";
}

.obh-faq details p {
    font-size: 14px;
    margin: 16px 40px 0 0;
}

.obh-final-cta {
    align-items: center;
    background: linear-gradient(120deg, var(--obh-blue), var(--obh-cyan));
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 54px 60px;
}

.obh-final-cta h2 {
    color: var(--obh-white);
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 0;
    max-width: 650px;
}

.obh-final-cta .obh-eyebrow {
    color: #d5f8ff !important;
}

.obh-final-cta .obh-actions {
    flex-shrink: 0;
    margin: 0 0 0 40px;
}

@media (max-width: 1199px) {
    .obh-hero,
    .obh-section,
    .obh-final-cta {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 991px) {
    .obh-hero {
        grid-template-columns: 1fr;
        padding: 68px 46px;
    }

    .obh-plan-card {
        max-width: 560px;
    }

    .obh-service-grid,
    .obh-process-grid {
        grid-template-columns: 1fr;
    }

    .obh-service-card {
        min-height: 0;
    }

    .obh-split,
    .obh-vpn,
    .obh-faq {
        grid-template-columns: 1fr;
    }

    .obh-vpn__visual {
        display: none;
    }

    .obh-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .obh-final-cta .obh-actions {
        margin: 28px 0 0;
    }
}

@media (max-width: 767px) {
    .obh-product-nav {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
        margin: 0 auto 14px;
        padding-left: 18px;
        padding-right: 18px;
        width: 100%;
    }

    .obh-home h1 {
        font-size: 40px;
    }

    .obh-home h2 {
        font-size: 31px;
    }

    .obh-hero,
    .obh-section,
    .obh-final-cta {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .obh-hero {
        padding: 56px 22px;
    }

    .obh-hero__lead {
        font-size: 17px !important;
    }

    .obh-actions,
    .obh-actions .obh-btn {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .obh-section {
        padding: 72px 22px;
    }

    .obh-split,
    .obh-vpn {
        padding-left: 22px;
        padding-right: 22px;
    }

    .obh-benefit-grid {
        grid-template-columns: 1fr;
    }

    .obh-final-cta {
        padding: 48px 22px;
    }

    .obh-final-cta .obh-actions {
        margin-left: 0;
        width: 100%;
    }
}
