/* SYSTEMY Page Specific Styles */
.systemy-hero {
    background: url('/img/systemy/tlo systemow.jpg') center / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.systemy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.systemy-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.systemy-hero__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.systemy-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.systemy-hero__description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.systemy-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.systemy-hero__feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.systemy-hero__feature-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Platform Feature Item Styles */
.platform-feature-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: none;
}

.platform-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.platform-feature-item__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.platform-feature-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-feature-item__content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.platform-feature-item__content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* LMS Feature Styles */
.lms-feature,
.lms-feature.animate {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered animation delays */
.lms-feature:nth-child(1) {
    transition-delay: 0.1s;
}

.lms-feature:nth-child(2) {
    transition-delay: 0.2s;
}

.lms-feature:nth-child(3) {
    transition-delay: 0.3s;
}

.lms-feature:nth-child(4) {
    transition-delay: 0.4s;
}

/* Section Overlays and Layout Fixes */
.service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card__image {
    height: 200px !important;
    overflow: hidden !important;
    position: relative !important;
}

.service-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.service-card__content {
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #303a4d;
}

.service-card__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-card__features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

.service-card__button {
    margin-top: auto !important;
    padding: 0.8rem 2rem !important;
    background-color: #00b1cf !important;
    color: #fff !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    border: none !important;
    cursor: pointer !important;
}

.service-card__button:hover {
    background-color: #0097ad !important;
    transform: translateY(-2px);
}

/* Everon and LMS Specifics */
.services-overview {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.platform-features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.platform-features__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #303a4d;
}

.platform-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.platform-feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.platform-feature-item__icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-feature-item__content {
    flex: 1;
}

.page__everon {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page__everon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page__everon .services-page__container {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
    position: relative;
    z-index: 1;
}

.page__everon-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page__everon-title {
    color: #fff !important;
}

.page__everon-text {
    max-width: 100%;
    text-align: center;
    color: #fff;
}

.lms-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.lms-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lms-section__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #303a4d;
}

.lms-section__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #00b1cf;
}

.lms-section__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.lms-section__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lms-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lms-feature__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b1cf, #0099b8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lms-feature span {
    font-weight: 600;
    color: #303a4d;
}

.lms-section__button {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.lms-section__image {
    text-align: center;
}

.lms-section__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page__lms-details {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.page__lms-details .offer__content {
    text-align: center;
    margin-bottom: 4rem;
}

.page__lms-details .offer__services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.page__lms-details .service-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    flex: 0 1 calc(50% - 0.75rem);
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page__lms-details .service-item__icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page__lms-details .service-item__text {
    font-size: 1rem;
    font-weight: 600;
    color: #303a4d;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .lms-section__container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .systemy-hero {
        padding: 140px 0 80px;
    }

    .systemy-hero__title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .lms-section__container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }

    .lms-section__image {
        order: 2;
    }

    .lms-section__content {
        order: 1;
    }

    .lms-feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .systemy-hero {
        background-attachment: scroll;
        padding: 120px 0 60px;
    }

    .systemy-hero__title {
        font-size: 2.2rem;
    }

    .outro__title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .systemy-hero__title {
        font-size: 1.8rem;
    }

    .platform-feature-item {
        flex-direction: column !important;
        text-align: center;
    }

    .platform-feature-item__icon {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}