/* ============================================================
   14. SEKCJA KALKULATORY
   ============================================================ */

.rev-calc-left {
    background-size: cover !important;
    background-position: 110% 60% !important;
    padding: 60px 60px 60px 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 !important;
    max-height: none !important;
}



.rev-calc-section {
    padding: 0;
    overflow: hidden;
}

.rev-calc-header {
    max-width: 1500px;
    margin: 0 auto 48px;
}
.rev-calc-badge {
    display: inline-block;
    background: #e30613;
    color: #fff;
    font-family: "Bahnschrift", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.rev-calc-title {
    font-family: "Bahnschrift", sans-serif;
    font-size: 36px !important;
    font-weight: 300;
    text-transform: uppercase;
    color: #1c1c1b;
    line-height: 1.1;
    margin-bottom: 16px !important;
    letter-spacing: 0.02em;
}
.rev-calc-title strong {
    font-weight: 900;
}
.rev-calc-title-line {
    width: 48px;
    height: 3px;
    background: #e30613;
    margin-bottom: 24px;
}
.rev-calc-lead {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px !important;
    color: #555 !important;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 0 !important;
}
.rev-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto;
}
.rev-calc-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    transition: box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.rev-calc-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.rev-calc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #e30613;
    transition: width 0.4s ease;
}
.rev-calc-card:hover::after {
    width: 100%;
}
.rev-calc-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.rev-calc-card-title {
    font-family: "Bahnschrift", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #1c1c1b;
    line-height: 1.2;
    margin-bottom: 28px !important;
    letter-spacing: 0.02em;
}
.rev-calc-card-title strong {
    font-weight: 900 !important;
    display: inline;
}
.rev-calc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 32px !important;
    flex: 1;
}
.rev-calc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    margin-bottom: 10px !important;
}
.rev-calc-list li:last-child {
    margin-bottom: 0 !important;
}
.rev-calc-check-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #e30613;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.rev-calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: transparent;
    color: #1c1c1b !important;
    border: 2px solid #1c1c1b;
    font-family: "Bahnschrift", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s;
    align-self: flex-start;
    border-radius: 0;
}
.rev-calc-btn:hover {
    background: #1c1c1b;
    color: #fff !important;
}
.rev-calc-card--dark {
    background: #ebebeb;
}
.rev-calc-card--dark .rev-calc-card-title {
    color: #1c1c1b;
}
.rev-calc-card--dark .rev-calc-list li {
    color: #666 !important;
    border-bottom-color: #d8d8d8;
}

.rev-calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    min-height: 500px;
}

