/* ============================================================
   41. SEKCJA CTA — GOTOWY DO ZAMÓWIENIA
   ============================================================ */
.rev-cta-section {
    padding: 0px 60px 60px 40px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.rev-cta-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.04) 0px,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 60px
    );
    pointer-events: none;
    z-index: 0;
}
.rev-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.rev-cta-content {
    flex: 1;
}
.rev-cta-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: clamp(28px, 3.5vw, 48px) !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    letter-spacing: 0.02em;
}
.rev-cta-title strong {
    font-weight: 900 !important;
}
.rev-cta-desc {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #aaa !important;
    margin: 0 !important;
    max-width: 800px;
}
.rev-cta-desc strong {
    color: #fff !important;
}
.rev-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.rev-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-family: "Bahnschrift", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
.rev-cta-btn--red {
    background: #e30613;
    color: #fff !important;
    border: 1px solid #e30613;
}
.rev-cta-btn--red:hover {
    background: #c00510;
    border-color: #c00510;
}
.rev-cta-btn--outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid #fff;
}
.rev-cta-btn--outline:hover {
    background: #fff;
    color: #1c1c1b !important;
}

