:root {
    --price-font-serif: "Playfair Display", Georgia, serif;
    --price-brand-dark: #5D4037;
    --price-brand-light: #8D6E63;
    --price-bg-card: #FFFFFF;
    --price-border: #D7CCC8;
}


.price-card {
    background: var(--price-bg-card);
    color: var(--price-brand-dark);
    border: 1px solid var(--price-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    max-width: 380px;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.08);
    border-color: var(--price-brand-light);
}

.price-card.highlight {
    border: 2px solid var(--price-brand-dark);
    background-color: #fffcfa;
}

.plan-name {
    font-family: var(--price-font-serif);
    font-size: 1.5rem;
    color: var(--price-brand-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--price-brand-dark);
    font-family: var(--price-font-serif);
}

.cycle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-card.main-card {
    min-height: 400px;
    justify-content: space-between;
}

.card-header-group {
    text-align: center;
    margin-bottom: 20px;
}

.compare-note {
    font-size: 0.8rem;
    color: var(--success);
    margin-top: 4px;
    font-weight: 600;
}

.features-disclosure {
    margin-top: 15px;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--price-brand-light);
    font-weight: bold;
}


.price-card.skill-card {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border: 1px dashed var(--price-border);
}

.skill-card .skill-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.skill-card .plan-name {
    font-size: 1.2rem;
    margin: 0;
}

.skill-card .price-simple .amount {
    font-size: 1.2rem;
}

.buy-btn {
    background-color: var(--price-brand-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.skill-card .buy-btn {
    width: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.buy-btn:hover {
    background-color: var(--price-brand-light);
}

.buy-btn.is-current {
    background-color: #EFEBE9;
    color: var(--text-secondary);
    cursor: default;
}

.billing-toggle {
    display: flex;
    background: #EFEBE9;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: none;
}

.billing-toggle__btn {
    padding: 8px 24px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.billing-toggle__btn.is-active {
    background: #fff;
    color: var(--price-brand-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.pricing-grid {
    display: flex !important;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;
}

.plans-row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    width: 100%;
}

.plan-section-title {
    font-family: var(--price-font-serif);
    font-size: 1.8rem;
    color: var(--price-brand-dark);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid var(--price-border);
    padding-bottom: 10px;
}

.price-card.skill-card {
    min-height: 120px;
    height: auto;
}