/* ==========================================================================
   HealthClinicMD — Vitamins & Supplements (Coming Soon)
   Same design system as about-page.css / employee-benefits.css.
   ========================================================================== */

.hcmd-soon {
    --hcmd-navy: #292f73;
    --hcmd-cyan: #3fa7c2;
    --hcmd-cyan-dark: #248ca9;
    --hcmd-gold: #f5ae18;
    --hcmd-copy: #767676;

    color: var(--hcmd-copy);
    background: #fff;
    overflow-x: hidden;
}

.hcmd-soon,
.hcmd-soon * {
    box-sizing: border-box;
}

.hcmd-soon h1,
.hcmd-soon span,
.hcmd-soon a {
    font-family: "Panton", Arial, sans-serif !important;
}

.hcmd-soon p {
    font-family: Arial, Helvetica, sans-serif !important;
}

.hcmd-soon-container {
    width: min(720px, 100% - clamp(32px, 8vw, 60px));
    margin-inline: auto;
}

.hcmd-soon-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 0;
    background: radial-gradient(circle at 50% 0%, #f3f7f8 0%, #fff 60%);
}

.hcmd-soon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(63, 167, 194, 0.12);
    color: var(--hcmd-cyan-dark);
    font-size: 28px;
}

.hcmd-soon-eyebrow {
    display: block;
    color: var(--hcmd-cyan-dark);
    font-weight: 700 !important;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hcmd-soon-hero h1 {
    color: var(--hcmd-navy);
    font-weight: 700 !important;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin: 0 0 20px;
}

.hcmd-soon-gold {
    color: var(--hcmd-gold) !important;
}

.hcmd-soon-hero p {
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.6;
}

.hcmd-soon-btn {
    display: inline-block;
    background: var(--hcmd-cyan);
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px;
    padding: 14px 34px;
    border-radius: 5px;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.hcmd-soon-btn:hover {
    background: var(--hcmd-cyan-dark);
}

/* ==========================================================================
   Responsive — tablet and phone
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .hcmd-soon-hero {
        min-height: 50vh;
        padding: 64px 0;
    }
}

/* Phone */
@media (max-width: 599px) {
    .hcmd-soon-hero {
        min-height: unset;
        padding: 48px 0;
    }

    .hcmd-soon-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .hcmd-soon-eyebrow {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .hcmd-soon-hero h1 {
        font-size: 28px;
        margin: 0 0 14px;
    }

    .hcmd-soon-hero p {
        font-size: 15px;
        margin: 0 auto 24px;
    }

    .hcmd-soon-btn {
        width: 100%;
        font-size: 15px;
        padding: 13px 28px;
    }
}

/* Small phone */
@media (max-width: 380px) {
    .hcmd-soon-hero h1 {
        font-size: 24px;
    }

    .hcmd-soon-hero p {
        font-size: 14px;
    }
}
