/* ============================================================
   25. SEKCJA WSPARCIE (4 karty)
   ============================================================ */
.rev-support-section {
    padding: 0px 60px 60px 60px;
    width: 100%;
    box-sizing: border-box;
}
.rev-support-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
}
.rev-support-card {
    background: #fff;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid #e0e0e0;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}
.rev-support-card:last-child {
    border-right: none;
}
.rev-support-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #e30613;
    transition: width 0.4s ease;
}
.rev-support-card:hover::after {
    width: 100%;
}
.rev-support-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    text-decoration: none !important;
}
.rev-support-card--accent {
    background: #f8f8f8;
}
.rev-support-card--accent:hover {
    background: #f0f0f0;
}
.rev-support-card-icon {
    width: 56px;
    height: 56px;
    background: #e30613;
    border: 1px solid #e30613;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.rev-support-card--accent .rev-support-card-icon {
    background: #e30613;
    border-color: #e30613;
}
.rev-support-card-icon svg path,
.rev-support-card-icon svg rect,
.rev-support-card-icon svg line {
    stroke: #fff;
}
.rev-support-card-icon svg rect[fill="#1c1c1b"] {
    fill: rgba(255, 255, 255, 1);
}
.rev-support-card:hover .rev-support-card-icon {
    background: #c00510;
    border-color: #c00510;
}
.rev-support-card-tag {
    font-family: "Bahnschrift", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 12px;
    display: block;
}
.rev-support-card-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: clamp(20px, 2vw, 28px) !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    color: #1c1c1b !important;
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.rev-support-card-title strong {
    font-weight: 900 !important;
    display: block;
}
.rev-support-card-line {
    width: 32px;
    height: 2px;
    background: #e30613;
    margin: 16px 0 20px;
    flex-shrink: 0;
    transition: width 0.3s;
}
.rev-support-card:hover .rev-support-card-line {
    width: 56px;
}
.rev-support-card-desc {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #666 !important;
    margin-bottom: 32px !important;
    flex: 1;
}
.rev-support-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Bahnschrift", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1c1c1b;
    margin-top: auto;
    transition: color 0.3s;
}
.rev-support-card:hover .rev-support-card-btn {
    color: #e30613;
}
.rev-support-card-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}
.rev-support-card:hover .rev-support-card-btn svg {
    transform: translate(2px, -2px);
}

