/* ============================================================
   📁 custom.css – Nowe funkcje i rozszerzenia projektu
   📅 Utworzono: 2026-07-18
   ============================================================ */

/* ───────────────────────────────────
   🚀 NOWY STYL SEKCJI "DLACZEGO WARTO"
   ─────────────────────────────────── */

.section-title h2 {
    background: linear-gradient(135deg, #ffffff 60%, #70ffcf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 24px;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 30px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.benefit-badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.25), transparent, rgba(0, 255, 170, 0.12));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-badge:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(0, 255, 170, 0.35);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(0, 255, 170, 0.07);
}

.benefit-badge:hover::before {
    opacity: 1;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ffaa;
    box-shadow: 0 0 14px rgba(0, 255, 170, 0.7);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.benefit-badge:hover .badge-dot {
    transform: scale(1.5);
    box-shadow: 0 0 24px rgba(0, 255, 170, 0.9);
}

.badge-icon {
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.benefit-badge:hover .badge-icon {
    transform: scale(1.15);
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: #f0f4ff;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* ───────────────────────────────────
   🚀 NOWY STYL SEKCJI "SKONTAKTUJ SIĘ"
   ─────────────────────────────────── */

.cta {
    min-height: 80vh;
}

/* Wzmocnienie glow */
.cta-glow--1 {
    background: rgba(0, 255, 170, 0.13) !important;
    width: 600px !important;
    height: 600px !important;
    filter: blur(100px) !important;
}

.cta-glow--2 {
    background: rgba(80, 120, 255, 0.10) !important;
    width: 500px !important;
    height: 500px !important;
    filter: blur(100px) !important;
}

.cta-glow--3 {
    background: rgba(0, 255, 170, 0.07) !important;
    filter: blur(140px) !important;
}

/* Większy pierścień */
.cta-ring {
    width: 650px !important;
    height: 650px !important;
    border-color: rgba(0, 255, 170, 0.07) !important;
    animation-duration: 35s !important;
}

.cta-ring::before {
    width: 14px !important;
    height: 14px !important;
    top: -7px !important;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.7), 0 0 60px rgba(0, 255, 170, 0.3) !important;
}

.cta-ring::after {
    width: 8px !important;
    height: 8px !important;
    bottom: -4px !important;
    box-shadow: 0 0 20px rgba(80, 120, 255, 0.5) !important;
}

/* Tag z większym glow */
.cta-tag {
    padding: 8px 22px !important;
    font-size: 14px !important;
    background: rgba(0, 255, 170, 0.10) !important;
    border-color: rgba(0, 255, 170, 0.18) !important;
}

.cta-tag::after {
    background: linear-gradient(135deg, rgba(0,255,170,0.4), transparent, rgba(0,255,170,0.15)) !important;
    animation-duration: 4s !important;
}

/* Heading z mocniejszym gradientem */
.cta-heading {
    background: linear-gradient(135deg, #ffffff 40%, #70ffcf, #00ffaa) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* Przycisk z rozszerzonym efektem hover */
.cta-action {
    padding: 20px 44px !important;
    font-size: 17px !important;
    border-radius: 16px !important;
    box-shadow: 0 0 50px rgba(0, 255, 170, 0.15), 0 8px 32px rgba(0, 0, 0, 0.25) !important;
}

.cta-action::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cta-action:hover::before {
    opacity: 1;
}

.cta-action:hover {
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow: 0 0 80px rgba(0, 255, 170, 0.35), 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

/* ───────────────────────────────────
   📱 RESPONSYWNOŚĆ
   ─────────────────────────────────── */
