/* ============================================================
   32. SEKCJA DLACZEGO WARTO
   ============================================================ */
.rev-why-section {
    background: none;
    padding: 0px 80px 80px 80px;
    width: 100%;
    box-sizing: border-box;
}
.rev-why-header {
    max-width: 1500px;
    margin: 0 auto 56px;
}
.rev-why-row {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 64px;
    margin-bottom: 64px;
}
.rev-why-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rev-why-row .rev-why-content {
    text-align: left;
}
.rev-why-row--reverse .rev-why-content {
    text-align: right;
}
.rev-why-row--reverse .rev-why-image {
    order: 0 !important;
}
.rev-why-image {
    overflow: hidden;
}
.rev-why-image img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.rev-why-row:hover .rev-why-image img {
    transform: scale(1.03);
}
.rev-why-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: clamp(18px, 2vw, 26px) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #1c1c1b !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}
.rev-why-image--offset {
    position: relative;
    overflow: visible;
}
.rev-why-image--offset::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -40px;
    width: 105%;
    height: 110%;
    background: #e8e8e8;
    z-index: 0;
}
.rev-why-row--reverse .rev-why-image--offset::before {
    left: 10px;
    top: -40px;
    right: auto;
}
.rev-why-image--offset img {
    position: relative;
    z-index: 1;
}
.rev-why-content--center {
    text-align: center;
}
.rev-why-cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}
.rev-why-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 64px;
    background: #e30613;
    color: #fff !important;
    border: 1px solid #e30613;
    font-family: "Bahnschrift", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.3s;
}
.rev-why-btn:hover {
    background: #c00510;
    border-color: #c00510;
}

