/* =========================================================
   OHAL HEALTH
   PLANS PAGE
========================================================= */

:root {
    --charcoal: #111312;
    --off-white: #F5F5EF;
    --white: #FFFFFF;
    --lime: #B7D66A;
    --dark-green: #24301D;
    --gray: #686B66;
    --light-gray: #E2E3DD;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==================== NAVBAR ==================== */

.plans-navbar {
    background: var(--charcoal);
    color: var(--white);
    padding: 22px 30px;
}

.plans-nav-container {
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plans-logo {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .08em;
}

.back-home {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
}

.back-home:hover {
    color: var(--lime);
}


/* ==================== HERO ==================== */

.plans-hero {
    padding: 100px 30px 90px;

    background: var(--charcoal);
    color: var(--white);
}

.plans-hero > * {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 18px;
}

.plans-hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: .9;
    letter-spacing: -.055em;
}

.plans-hero p:last-child {
    max-width: 600px;

    margin-top: 28px;

    color: #A9ADA6;

    font-size: 17px;
    line-height: 1.6;
}


/* ==================== PLANS ==================== */

.plans-section {
    max-width: 1250px;
    margin: 0 auto;

    padding: 100px 30px;
}

.duration-group {
    margin-bottom: 100px;
}

.duration-heading {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 25px;
}

.duration-heading span {
    color: var(--gray);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
}

.duration-heading h2 {
    font-size: 38px;
    letter-spacing: -.04em;
}


.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


.plan-card {
    padding: 35px;

    background: var(--white);
    border: 1px solid var(--light-gray);

    transition: .2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
}

.plan-card.featured {
    background: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
}

.plan-label {
    color: var(--gray);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.featured .plan-label {
    color: var(--lime);
}

.plan-card h3 {
    margin-top: 15px;

    font-size: 32px;
    letter-spacing: -.04em;
}

.price {
    margin-top: 35px;

    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.055em;
}

.period {
    margin-top: 7px;

    color: var(--gray);
    font-size: 13px;
}

.featured .period {
    color: #AAB1A4;
}

.plan-card ul {
    list-style: none;

    margin: 35px 0;
}

.plan-card li {
    padding: 13px 0;

    border-top: 1px solid var(--light-gray);

    font-size: 14px;
}

.featured li {
    border-color: #3B4734;
}

.plan-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--dark-green);
    font-weight: 900;
}

.featured li::before {
    color: var(--lime);
}

.choose-button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    background: var(--charcoal);
    color: var(--white);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;

    transition: .2s ease;
}

.choose-button:hover {
    background: var(--lime);
    color: var(--charcoal);
}

.featured .choose-button {
    background: var(--lime);
    color: var(--charcoal);
}

.featured .choose-button:hover {
    background: var(--white);
}


/* ==================== BOTTOM CTA ==================== */

.plans-bottom {
    padding: 110px 30px;

    background: var(--lime);
    color: var(--charcoal);

    text-align: center;
}

.plans-bottom h2 {
    font-size: clamp(50px, 7vw, 85px);
    line-height: .9;
    letter-spacing: -.055em;
}

.plans-bottom > p:not(.eyebrow) {
    max-width: 500px;

    margin: 25px auto 30px;

    color: #46503C;

    font-size: 17px;
    line-height: 1.6;
}

.assessment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 60px;
    padding: 0 28px;

    background: var(--charcoal);
    color: var(--white);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;

    transition: .2s ease;
}

.assessment-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}


/* ==================== FOOTER ==================== */

.plans-footer {
    padding: 45px 30px;

    background: var(--charcoal);
    color: var(--white);

    text-align: center;
}

.plans-footer strong {
    font-size: 15px;
    letter-spacing: .08em;
}

.plans-footer p {
    margin-top: 12px;

    color: #7F857E;

    font-size: 11px;
}


/* ==================== MOBILE ==================== */

@media (max-width: 700px) {

    .plans-navbar {
        padding: 20px 18px;
    }

    .plans-hero {
        padding: 75px 18px;
    }

    .plans-section {
        padding: 75px 18px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .duration-group {
        margin-bottom: 70px;
    }

    .duration-heading h2 {
        font-size: 30px;
    }

    .plan-card {
        padding: 28px;
    }

    .price {
        font-size: 55px;
    }

    .plans-bottom {
        padding: 80px 18px;
    }

    .plans-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
}