/* Hinnakiri page */
.pricing-page {
    padding: 48px 0 100px;
}

.pricing-intro {
    max-width: 680px;
    margin-bottom: 44px;
}

.pricing-intro h1 {
    font-size: 40px;
    color: var(--ink);
    margin: 12px 0 16px;
}

.pricing-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 36px 32px;
    border: 2px solid transparent;
    position: relative;
}

.price-card.is-featured {
    border-color: var(--green);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}

.price-card h2 {
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 8px;
}

.price-card .price-sub {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 22px;
    min-height: 44px;
}

.price-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(46, 42, 35, 0.08);
}

.price-amount .pa-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.price-amount .pa-label {
    font-size: 14.5px;
    color: var(--ink-soft);
}

.price-amount .pa-value {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--ink);
    font-weight: 500;
    white-space: nowrap;
}

.price-amount .pa-value small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
}

.price-amount .pa-single {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    color: var(--ink);
    font-weight: 500;
}

.price-amount .pa-single small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.45;
}

.price-features li svg {
    width: 19px;
    height: 19px;
    stroke: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
}

.price-card .btn {
    width: 100%;
}

.price-card .btn-ghost {
    background: var(--cream);
    color: var(--ink);
}

.price-card .btn-ghost:hover {
    background: var(--cream-deep);
}

/* Note band */
.pricing-note {
    margin-top: 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.pricing-note .pn-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-note .pn-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); }

.pricing-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.pricing-note a { color: var(--green-dark); font-weight: 600; }

/* ---- Sektsioonid ---- */
.price-section {
    margin-top: 56px;
}

/* Ankruga (#vaba-mang) hüpates jäta kleepuva päise jaoks ruumi */
.price-section[id] {
    scroll-margin-top: 150px;
}

.price-section-head {
    max-width: 680px;
    margin-bottom: 28px;
}

.price-section-head h2 {
    font-size: 30px;
    color: var(--ink);
    margin: 10px 0 12px;
}

.price-section-head p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* ---- Vaba mäng kaardid ---- */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
}

.vp-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 34px 32px;
    border: 2px solid transparent;
}

.vp-card.is-highlight {
    border-color: var(--green);
}

.vp-tag {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}

.vp-card h3 {
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 6px;
}

.vp-sub {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 18px;
}

.vp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 18px;
}

.vp-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 13px 0;
    border-top: 1px solid rgba(46, 42, 35, 0.08);
    font-size: 16px;
    color: var(--ink);
}

.vp-list li:first-child { border-top: none; }

.vp-price {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--green-dark);
    white-space: nowrap;
}

/* ---- Vaba mängu praktiline info ---- */
.vp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.vp-info {
    display: flex;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 24px 22px;
}

.vp-info.is-highlight {
    background: #FDF6E6;
    box-shadow: none;
    border: 1.5px solid #EBD9A9;
}

.vp-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-info-icon svg { width: 20px; height: 20px; stroke: var(--green-dark); }

.vp-info.is-highlight .vp-info-icon { background: #F6E6BE; }
.vp-info.is-highlight .vp-info-icon svg { stroke: #9A6B18; }

.vp-info h3 {
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 6px;
}

.vp-info p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* ---- Ruumi rent tabel ---- */
.rent-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 12px 32px 34px;
    border: 2px solid var(--green);
}

.rent-table {
    margin-bottom: 22px;
}

.rent-row {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.8fr;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(46, 42, 35, 0.08);
}

.rent-row.rent-head {
    border-top: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    font-weight: 700;
    padding: 18px 0 8px;
}

.rent-day {
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
}

.rent-row > span:nth-child(2) {
    color: var(--ink-soft);
    font-size: 15px;
}

.rent-price {
    text-align: right;
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--green-dark);
    white-space: nowrap;
}

.rent-head .rent-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--ink-soft);
}

.rent-note {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.rent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rent-actions .btn-ghost {
    background: var(--cream);
    color: var(--ink);
}

.rent-actions .btn-ghost:hover {
    background: var(--cream-deep);
}

/* ---- Maksmine ---- */
.pay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.pay-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px;
}

.pay-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pay-icon svg { width: 26px; height: 26px; stroke: var(--green-dark); }

.pay-card h3 {
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 8px;
}

.pay-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-intro h1 { font-size: 32px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
    .price-card .price-sub { min-height: 0; }
    .vp-grid,
    .pay-grid { grid-template-columns: 1fr; gap: 24px; }
    .vp-info-grid { grid-template-columns: 1fr; gap: 16px; }
    .price-section-head h2 { font-size: 25px; }
}

@media (max-width: 560px) {
    .pricing-note { flex-direction: column; align-items: flex-start; text-align: left; }
    .rent-card { padding: 12px 20px 28px; }
    .rent-row { grid-template-columns: 1.4fr 0.7fr 0.9fr; gap: 8px; }
    .rent-price { font-size: 22px; }
    .rent-actions .btn { width: 100%; }
}
