/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #002c3d;
    --mist: #f7f8f6;
    --harbor: #03506f;
    --seafoam: #7abdc4;
    --glacier: #bad8dc;
    --honey: #faaf43;
    --check-color: var(--harbor);
}

body {
    font-family: "open-sans", sans-serif;
    color: var(--midnight);
    background: #ffffff;
    line-height: 1.4;
}

/* === Hero Banner === */
.pricing-hero {
    background: rgba(185, 215, 219, 0.3);
    text-align: center;
    padding: 140px 20px 180px;
}

.pricing-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--midnight);
    letter-spacing: -1px;
}

.pricing-hero-sub {
    margin-top: 18px;
    font-size: 1.05rem;
    color: var(--midnight);
    opacity: 0.85;
    line-height: 1.5;
}

/* === Pricing Table Section === */
.pricing-section {
    padding: 0 20px 80px;
    background: transparent;
}

.pricing-table {
    max-width: 880px;
    margin: -140px auto 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 10px rgba(154, 160, 185, .4);
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 0px 20px;
}

/* === Plan Headers === */
.plan-headers {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    align-items: end;
    margin-bottom: 20px;
}

.plan-col {
    text-align: center;
    min-width: 0;
}

.plan-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--midnight);
    margin-bottom: 6px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--midnight);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-period {
    font-size: 0.8rem;
    font-weight: 500;
    color: #b0b0b0;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.plan-btn {
    display: inline-block;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--midnight);
    text-decoration: none;
    padding: 14px 28px;
    border: 1.75px solid var(--midnight);
    border-radius: 999px;
    transition: all 0.2s ease;
}

.plan-btn:hover {
    background: var(--midnight);
    color: #ffffff;
}

/* === Feature Rows === */
.feature-rows {
    list-style: none;
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
}

.feature-row {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    align-items: center;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #000000;
}

.feature-row:nth-child(odd) {
    background: #f6f6f6;
}

.feature-name {
    padding-left: 18px;
    color: var(--midnight);
}

.feature-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 24px;
}

.check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--check-color);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

/* === Footnote === */
.pricing-footnote {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 8px 0 14px 18px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--midnight);
}

/* === Responsive === */
@media (max-width: 1000px) {
    .pricing-hero-title {
        font-size: 3.4rem;
    }
}

@media (max-width: 720px) {
    .pricing-hero-title {
        font-size: 2.5rem;
    }

    .pricing-table {
        grid-template-columns: 1fr 110px 110px;
        gap: 0px 10px;
    }

    .plan-price {
        font-size: 2rem;
    }

    .plan-btn {
        font-size: 0.6rem;
        padding: 10px 12px;
        letter-spacing: 0.6px;
        line-height: 1.3;
    }

    .feature-row {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        grid-template-columns: 1fr 80px 80px;
        gap: 0px 6px;
    }

    .plan-btn {
        padding: 8px 8px;
        font-size: 0.55rem;
        letter-spacing: 0.4px;
    }

    .plan-label {
        font-size: 0.85rem;
    }
}