.pricing-section {
    background-color: #f4f8fb;
    padding: 80px 0 100px;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pricing-intro h1 {
    font-size: 2.5rem;
    color: #0a2540;
    font-weight: 800;
}

.disclaimer {
    font-style: italic;
    color: #64748b;
    margin-top: 15px;
}

.intro-line {
    width: 50px;
    height: 4px;
    background: #00aeef;
    margin: 20px auto 0;
}

/* HLAVNÍ KARTY */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ef;
}

.card-header-dark {
    background: #0a2540;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.card-header-dark h2 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #fff;
}

.card-header-dark span {
    color: #00aeef;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 30px;
}

.price-row {
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-row:last-child { border-bottom: none; }

.p-label {
    font-weight: 700;
    color: #0a2540;
    font-size: 16px;
}

.p-value {
    font-size: 24px;
    color: #00aeef;
    font-weight: 800;
    margin: 5px 0;
}

.p-value span {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.price-row small {
    display: block;
    color: #94a3b8;
    font-size: 13px;
}

.pricing-notes {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid #00aeef;
    margin-bottom: 60px;
}

.pricing-notes p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
}

/* DOPLŇKOVÉ SLUŽBY */
.extra-services {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ef;
}

.table-header {
    background: #0a2540;
    padding: 20px 30px;
}

.table-header h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
}

.services-list {
    padding: 10px 30px;
}

.s-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.s-list-item:last-child { border-bottom: none; }

.s-list-item span {
    color: #0a2540;
    font-weight: 500;
}

.s-list-item strong {
    color: #00aeef;
    white-space: nowrap;
    margin-left: 20px;
}

@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .s-list-item { flex-direction: column; align-items: flex-start; }
    .s-list-item strong { margin-left: 0; margin-top: 5px; }
}