* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "M PLUS Rounded 1c", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: linear-gradient(180deg, #0e1014 0%, #0f1115 100%);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.pricing-section,
.compare-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 20px;
}

.pricing-section { margin-top: 110px; }

/* Headings */
.section-title {
    text-align: center;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
}

/* Standard pricing grid (3-column responsive pattern) */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

@media (min-width: 960px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.pricing-card {
    background: var(--overlay-color);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

/* Header area inside a card */
.plan-title {
    font-size: 18px;
    font-weight: 800;
}

.plan-price {
    margin-top: 10px;
    font-size: 42px;
    font-weight: 900;
    color: var(--text-color);
}

.plan-price::after {
    content: '/ season';
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--light-text);
}

/* Feature list */
.plan-features {
    list-style: none;
    margin-top: 18px;
    margin-bottom: 22px;
    display: grid;
    gap: 10px;
}

.plan-features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    column-gap: 10px;
    color: var(--text-color);
    font-size: 15px;
}

.plan-features li::before {
    content: '•';
    color: var(--accent-color-text-color);
    font-weight: 900;
    line-height: 1;
    transform: translateY(2px);
}

/* Call-to-action button (standard primary button) */
.cta-button {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-color-text-color);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-button:hover { background: var(--accent-color-items); }
.cta-button:active { transform: translateY(1px); }

/* Comparison table (clean, standard look) */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--overlay-color);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 18px;
}

.compare-table thead th {
    background: #121622;
    color: var(--text-color);
    font-weight: 800;
    text-align: left;
    padding: 16px 18px;
    font-size: 14px;
}

.compare-table th + th,
.compare-table td + td {
    text-align: center;
}

.compare-table tbody td {
    padding: 14px 18px;
    border-top: 1px solid var(--stroke);
    font-size: 15px;
}

.compare-table tbody tr:hover td {
    background: #171b26;
}

.compare-table td:first-child {
    text-align: left;
    color: var(--text-color);
    font-weight: 600;
}

/* Standard check/cross marks */
.feature-check { color: var(--success-color); font-weight: 900; }
.feature-cross { color: var(--error-color); font-weight: 900; }

/* Utilities and small-screen tweaks */
@media (max-width: 720px) {
    .section-title { font-size: 32px; }
    .pricing-cards { grid-template-columns: 1fr; }
    .plan-price { font-size: 36px; }
    .compare-table { font-size: 14px; }
}
