/* --- REWORK: PREMIUM FEATURE TILES --- */
.hero-modern {
    padding: 80px 0 80px; /* Zmienione ze 120px na 60px */
    background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.12), transparent 70%);
    text-align: center;
}

.hero-header {
    max-width: 850px;
    margin: 0 auto 60px;
}

.hero-header h1 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.05;
    margin: 25px 0;
}

.hero-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- GRID DUŻYCH KAFELKÓW --- */
.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1250px;
    margin: 0 auto;
}

.f-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 45px 30px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    height: 100%;
}

.f-tile-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.f-tile h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.f-tile p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Hover Effect - To robi różnicę Premium */
.f-tile:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
    background: var(--bg-card);
}

.f-tile:hover .f-tile-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Redukcja przerwy przed sekcją "Wyróżniony Materiał" */
.hero-modern + section, 
.hero-modern + .ft-wrapper {
    margin-top: 20px !important;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1200px) {
    .hero-feature-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
    .hero-header h1 { font-size: 3.5rem; }
}

@media (max-width: 650px) {
    .hero-feature-grid { grid-template-columns: 1fr; padding: 0 25px; }
    .hero-header h1 { font-size: 2.5rem; }
    .f-tile { padding: 35px 20px; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-cta-group .btn { width: 100%; max-width: 300px; }
}