/* ============================================================
   21. STRONA O FIRMIE — FILARY
   ============================================================ */
.rev-pillars-section {
    width: 100%;
    display: block;
}
.rev-pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    width: 100%;
    box-sizing: border-box;
}
.rev-pillar--light {
    background: #fff;
}
.rev-pillar--dark {
    background: #1c1c1b;
}
.rev-pillar--img-right .rev-pillar-img {
    order: 2;
}
.rev-pillar--img-right .rev-pillar-content {
    order: 1;
}
.rev-pillar-img {
    overflow: hidden;
    position: relative;
}
.rev-pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.rev-pillar:hover .rev-pillar-img img {
    transform: scale(1.03);
}
.rev-pillar-content {
    padding: 72px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.rev-pillar-num {
    font-family: "Bahnschrift", sans-serif;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #e30613;
    display: block;
    margin-bottom: 4px;
}
.rev-pillar-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: clamp(22px, 2.5vw, 34px) !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    color: #1c1c1b !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    margin-top: 8px !important;
}
.rev-pillar-title strong {
    font-weight: 900 !important;
    display: block;
}
.rev-pillar-title--light {
    color: #fff !important;
}
.rev-pillar-line {
    width: 48px;
    height: 3px;
    background: #e30613;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: width 0.3s;
}
.rev-pillar:hover .rev-pillar-line {
    width: 72px;
}
.rev-pillar-lead {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #1c1c1b !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
}
.rev-pillar-lead--light {
    color: #1c1c1b !important;
}
.rev-pillar-text {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #1c1c1b !important;
    margin-bottom: 14px !important;
}
.rev-pillar-text--light {
    color: #1c1c1b !important;
}
.rev-pillar-text strong {
    color: #1c1c1b;
}
.rev-pillar-text--light strong {
    color: #fff;
}
.rev-pillar-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid #e8e8e8;
    margin-top: 28px;
    padding-top: 24px;
}
.rev-pillar-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
    border-right: 1px solid #e8e8e8;
}
.rev-pillar-stat:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 20px;
}
.rev-pillar-stat:nth-child(2) {
    padding: 0 20px;
}
.rev-pillar-stat-val {
    font-family: "Bahnschrift", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1c1c1b;
    line-height: 1;
    display: block;
}
.rev-pillar-stat-lbl {
    font-family: "Noto Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    display: block;
}

