/* PRICING PAGE BASE */
body {
    margin: 0;
    background: #0b3b75;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #f9fafb;
}

/* PAGE WRAPPER */
.page-wrap {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 24px;
}

/* PRICING CARDS */
.pricing-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1 1 280px;
    max-width: 340px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    position: relative;
	overflow: visible;
}

.pricing-card.popular {
    border-color: #fbbf24;
    box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}
.pricing-btn-wrap {
    margin-top: 16px;
    display: flex;
}

.popular-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    background: #fbbf24;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.plan-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    font-size: 0.9rem;
}

.plan-list li {
    margin-bottom: 6px;
}

.plan-list li span {
    font-weight: 600;
}


/* FEATURE COMPARISON TABLE */
.features-table-wrap {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.features-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

table.features {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table.features th,
table.features td {
    padding: 8px 6px;
    text-align: left;
}

table.features th {
    border-bottom: 1px solid rgba(255,255,255,0.25);
    font-weight: 700;
}

table.features td {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

table.features th:nth-child(2),
table.features th:nth-child(3),
table.features th:nth-child(4),
table.features td:nth-child(2),
table.features td:nth-child(3),
table.features td:nth-child(4) {
    text-align: center;
}

.footer-note {
    margin-top: 14px;
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: center;
}
/* Restore homepage outer copper frame */
.vf-btn-frutiger-red {
    padding: 2px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}
.pricing-card .vf-btn-frutiger-red {
    display: block;
    width: auto;
    padding: 2px;
    box-sizing: border-box;
    margin: 0 auto; /* centers the button */
}
.vf-btn-frutiger-red .inner {
    display: inline-block;
}
.vf-btn-free-download {
    /* inherit all frutiger-red styles */
}
