/* ========================================
   STRONY PRODUKTÓW - PEARL THEME
   ======================================== */

/* ===== HERO SEKCJA PRODUKTU ===== */
.product-hero-pearl {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--pearl-light) 100%);
    position: relative;
    overflow: hidden;
}

.product-hero-pearl::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 184, 124, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -30px);
    }
}

.product-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
}

.product-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-hero-lead {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.product-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-hero-stat {
    text-align: center;
}

.stat-number-green {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green);
}

.stat-number-blue {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.stat-label-tertiary {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ===== SIATKA MODUŁÓW ===== */
.modules-grid-pearl {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.modules-grid-core {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.modules-grid-additional {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ===== KAFELEK MODUŁU ===== */
.module-tile-pearl {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    position: relative;
}

.module-tile-pearl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-brand-soft);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.module-tile-pearl:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-green);
}

.module-tile-pearl:hover::before {
    opacity: 1;
}

.module-tile-core {
    border-color: rgba(0, 184, 124, 0.2);
}

.module-tile-core:hover {
    border-color: var(--brand-green);
}

.module-tile-additional {
    border-color: rgba(0, 153, 204, 0.2);
}

.module-tile-additional:hover {
    border-color: var(--brand-blue);
}

.module-tile-coming-soon {
    border-color: var(--gray-300);
    border-style: dashed;
}

.module-tile-coming-soon:hover {
    transform: none;
    border-color: var(--gray-400);
}

.module-tile-disabled {
    pointer-events: none !important;
    opacity: 0.7 !important;
}

/* ===== ODZNAKI MODUŁÓW ===== */
.module-badge-core,
.module-badge-additional,
.module-badge-coming-soon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.module-badge-core {
    background: linear-gradient(135deg, #00B87C, #00D68F);
    color: white;
}

.module-badge-additional {
    background: linear-gradient(135deg, #0099CC, #00B8E6);
    color: white;
}

.module-badge-coming-soon {
    background: var(--gray-400);
    color: white;
}

.module-tile-inner {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.module-icon-pearl {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 184, 124, 0.25);
    transition: all var(--transition-base);
}

.module-tile-pearl:hover .module-icon-pearl {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 184, 124, 0.35);
}

.module-title-pearl {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.module-tile-pearl:hover .module-title-pearl {
    color: var(--brand-green);
}

.module-description-pearl {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.module-features-pearl {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag-pearl {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gray-100);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.module-tile-pearl:hover .feature-tag-pearl {
    background: rgba(0, 184, 124, 0.15);
    color: var(--brand-green);
}

.module-arrow-pearl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--text-tertiary);
    transition: all var(--transition-base);
}

.module-tile-pearl:hover .module-arrow-pearl {
    color: var(--brand-green);
    transform: translateX(4px);
}

/* ===== MODAL MODUŁU ===== */
.module-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.module-modal-pearl {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.module-modal-pearl.modal-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

body:has(.module-modal-pearl.modal-visible) {
    overflow: hidden;
}

.modal-header-pearl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 184, 124, 0.03), rgba(0, 153, 204, 0.03));
    border-bottom: 2px solid var(--gray-100);
    flex-shrink: 0;
}

.modal-title-pearl {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.modal-title-text {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-subtitle-text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.modal-icon-pearl {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 184, 124, 0.25);
    flex-shrink: 0;
}

.modal-close-btn {
    background: white;
    border: 2px solid var(--gray-200);
    color: var(--text-secondary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.modal-close-btn:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
    transform: rotate(90deg);
}

.modal-content-pearl {
    padding: 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-intro-pearl {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.modal-intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.modal-section-pearl {
    margin-bottom: 2.5rem;
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-section-pearl h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

.icon-brand-green {
    color: var(--brand-green);
}

.modal-features-list-pearl {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-features-list-pearl li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1rem 1rem 1.5rem;
    background: var(--pearl-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-green);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    position: relative;
}

.modal-features-list-pearl li::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 1.375rem;
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-features-list-pearl li:hover {
    background: var(--gradient-brand-soft);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 184, 124, 0.15);
}

.modal-features-list-pearl li .k-svg-icon {
    display: none;
}

.modal-features-list-pearl li span {
    flex: 1;
    padding-left: 0.5rem;
}

.modal-benefits-grid-pearl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.benefit-card-pearl {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
    position: relative;
}

.benefit-card-pearl::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-card-pearl:hover {
    background: var(--gradient-brand-soft);
    border-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 184, 124, 0.2);
}

.benefit-card-pearl .k-svg-icon {
    display: none;
}

.benefit-card-pearl span {
    padding-left: 0.5rem;
}

.modal-cta-pearl {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
}

.modal-cta-inner {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-lg);
}

.modal-cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-cta-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-cta-pearl > div {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 184, 124, 0.08), rgba(0, 153, 204, 0.08));
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
}

.modal-cta-pearl h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-cta-pearl p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.modal-cta-pearl .k-button {
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-base) !important;
}

.modal-cta-pearl .k-button-primary {
    background: var(--gradient-brand) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 184, 124, 0.3) !important;
}

.modal-cta-pearl .k-button-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 184, 124, 0.4) !important;
}

.modal-cta-pearl .k-button-outline {
    background: white !important;
    border: 2px solid var(--brand-green) !important;
    color: var(--brand-green) !important;
}

.modal-cta-pearl .k-button-outline:hover {
    background: var(--gradient-brand-soft) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 184, 124, 0.2) !important;
}

/* ===== CTA SECTION ===== */
.product-cta-section {
    padding: 4rem 0;
    background: var(--pearl-white);
}

.product-cta-box {
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.product-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.product-cta-box h2,
.product-cta-box .cta-title-white,
.product-cta-content h2,
.product-cta-content .cta-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white !important;
}

.product-cta-box p,
.product-cta-box .cta-description-white,
.product-cta-content p,
.product-cta-content .cta-p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: white !important;
}

.product-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-cta-buttons .k-button {
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-base) !important;
}

.product-cta-buttons .btn-cta-primary {
    background: white !important;
    color: var(--brand-green) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.product-cta-buttons .btn-cta-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.product-cta-buttons .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white !important;
    backdrop-filter: blur(10px) !important;
}

.product-cta-buttons .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* ===== STRONA SZCZEGÓŁOWA PRODUKTU ===== */
.product-detail-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--pearl-white) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.product-detail-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 124, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite;
}

.product-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
}

.product-detail-hero-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-detail-hero-icon .icon-container-white {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.product-detail-hero-icon .icon-container-white .k-svg-icon,
.product-detail-hero-icon .icon-container-white svg {
    width: 80px !important;
    height: 80px !important;
    filter: drop-shadow(0 8px 32px rgba(0, 184, 124, 0.4));
}

.product-detail-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-detail-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SEKCJE FUNKCJI ===== */
.feature-section {
    padding: 4rem 0;
}

.feature-section:nth-child(even) {
    background: var(--pearl-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-grid-reverse {
    direction: rtl;
}

.feature-grid-reverse > * {
    direction: ltr;
}

.feature-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 4 / 3;
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-content h3 .icon-container-white {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
}

.feature-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    margin-top: 0.625rem;
}

/* ===== BANNER STATYSTYK ===== */
.stats-banner {
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-2xl);
}

    .stats-banner .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

.stats-row-numbers {
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-row-numbers .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 0;
}

.stats-row-numbers .stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    line-height: 1.2;
}

.stats-row-labels .stat-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ===== PREZENTACJA KORZYŚCI ===== */
.benefits-showcase {
    padding: 5rem 0;
    background: var(--pearl-light);
}

.benefits-showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefits-showcase-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefits-showcase-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-cards {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.benefits-cards {
    grid-template-columns: repeat(2, 1fr);
}

.benefits-cards.benefits-cards-six {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-showcase-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.benefit-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.benefit-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-green);
}

.benefit-showcase-card:hover::before {
    transform: scaleX(1);
}

.benefit-showcase-card .icon-container-white {
    margin-bottom: 1.5rem;
}

.benefit-showcase-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

.benefit-showcase-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== SEKCJA CTA ===== */
.product-cta-section {
    padding: 4rem 0;
    background: var(--pearl-white);
}

.product-cta-box {
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.product-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.product-cta-box h2,
.product-cta-box .cta-title-white,
.product-cta-content h2,
.product-cta-content .cta-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white !important;
}

.cta-title-white {
    color: white !important;
}

.product-cta-box p,
.product-cta-box .cta-description-white,
.product-cta-content p,
.product-cta-content .cta-p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: white !important;
}

.cta-description-white {
    color: white !important;
}

.product-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-cta-buttons .k-button {
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-base) !important;
}

.product-cta-buttons .btn-cta-primary {
    background: white !important;
    color: var(--brand-green) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.product-cta-buttons .btn-cta-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.product-cta-buttons .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white !important;
    backdrop-filter: blur(10px) !important;
}

.product-cta-buttons .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* ===== NAWIGACJA BREADCRUMBS ===== */
.breadcrumbs-section {
    padding: 1.5rem 0 0.5rem;
    background: white;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 500;
}

.breadcrumb-item:hover {
    color: var(--brand-green);
}

.breadcrumb-item .k-svg-icon,
.breadcrumb-item svg {
    width: 14px;
    height: 14px;
    color: var(--text-tertiary);
}

.breadcrumb-separator {
    color: var(--gray-400);
    width: 12px;
    height: 12px;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
    cursor: default;
}

/* ===== PŁYWAJĄCY PRZYCISK POWROTU ===== */
.floating-back-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-brand);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 8px 24px rgba(0, 184, 124, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.4s ease-out 0.5s both;
}

.floating-back-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 184, 124, 0.4);
}

.floating-back-btn .k-svg-icon,
.floating-back-btn svg {
    width: 20px;
    height: 20px;
    color: white !important;
    fill: white !important;
}

.floating-back-btn-text {
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NAGŁÓWKI SEKCJI ===== */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-badge-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 184, 124, 0.15), rgba(0, 153, 204, 0.15));
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.section-badge-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.15), rgba(0, 184, 124, 0.15));
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #0099CC, #007FA8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 1199px) {
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-cards.benefits-cards-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-row-numbers {
        margin-bottom: 2rem;
    }

    .feature-grid,
    .feature-grid-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .product-hero-pearl {
        padding: 5rem 0 3rem;
    }

    .modules-grid-core,
    .modules-grid-additional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .module-modal-pearl {
        width: 95vw;
        max-height: 95vh;
    }

    .modal-header-pearl {
        padding: 1.5rem;
    }

    .modal-content-pearl {
        padding: 1.5rem;
    }

    .modal-title-pearl {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .modal-benefits-grid-pearl {
        grid-template-columns: 1fr;
    }

    .modal-features-list-pearl li {
        padding: 0.75rem 0.75rem 0.75rem 1.25rem;
    }

    .modal-features-list-pearl li::before {
        left: 0.5rem;
        top: 1.125rem;
    }

    .benefit-card-pearl {
        padding: 1rem 1rem 1rem 1.25rem;
    }

    .benefit-card-pearl::before {
        left: 0.5rem;
    }

    .product-detail-hero {
        padding: 5rem 0 3rem;
    }

    .product-detail-hero-icon .icon-container-white {
        width: 100px !important;
        height: 100px !important;
    }

    .product-detail-hero-icon .icon-container-white .k-svg-icon,
    .product-detail-hero-icon .icon-container-white svg {
        width: 65px !important;
        height: 65px !important;
    }

    .stats-banner {
        padding: 2rem 1.5rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-row-numbers {
        margin-bottom: 1.5rem;
    }

    .stats-row-numbers .stat-number {
        font-size: 2.5rem;
    }

    .benefits-showcase {
        padding: 3rem 0;
    }

    .benefits-cards,
    .benefits-cards.benefits-cards-six {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-showcase-card {
        padding: 2rem;
    }

    .product-cta-buttons {
        flex-direction: column;
    }

    .product-cta-buttons .k-button {
        width: 100%;
    }

    .floating-back-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .floating-back-btn-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .module-tile-inner {
        padding: 1.5rem;
    }

    .module-icon-pearl {
        width: 60px;
        height: 60px;
    }

    .modal-header-pearl {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .modal-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .modal-intro-pearl p {
        font-size: 1rem;
    }

    .modal-section-pearl h4 {
        font-size: 1.125rem;
    }

    .modal-cta-pearl .k-button {
        width: 100%;
        justify-content: center;
    }
}