.platform-services-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 72px 0 80px;
    background: #fcf8f9;
    color: #1c1b1c;
}

.platform-services-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    scroll-margin-top: 120px;
}


.platform-services-title {
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #000;
    margin-bottom: 16px;
}

.platform-services-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #68687a;
    margin: 0;
}

.platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.platform-card-watermark {
    position: absolute;
    top: -16px;
    right: -16px;
    opacity: 0.12;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.platform-card:hover .platform-card-watermark {
    opacity: 0.18;
}

.platform-card-watermark img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.platform-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.platform-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid var(--platform-color, #252533);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.platform-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.platform-card-popular {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: 999px;
}

.platform-card-title {
    font-size: 24px;
    font-weight: 750;
    line-height: 1.25;
    color: #000;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.platform-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #68687a;
    margin-bottom: 16px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.platform-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.platform-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #47464b;
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 6px;
    padding: 6px 12px;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    max-width: 100%;
}

.platform-card-tag:hover {
    color: var(--platform-color, #252533);
    border-color: var(--platform-color, #252533);
    background: color-mix(in srgb, var(--platform-color, #252533) 8%, #fff);
    transform: translateY(-1px);
}

.platform-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
    position: relative;
    z-index: 1;
}

.platform-card-btn:hover {
    opacity: 0.92;
    color: #fff !important;
}

.platform-card-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.platform-services-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid #e8e8ef;
}

.platform-services-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #68687a;
}

.platform-services-trust-item img {
    width: 20px;
    height: 20px;
}

@media (prefers-reduced-motion: reduce) {
    .platform-card,
    .platform-card-watermark {
        transition: none;
    }

    .platform-card:hover {
        transform: none;
    }
}

@media (max-width: 767px) {
    .platform-services-section {
        padding: 48px 0 56px;
    }

    .platform-card-title {
        font-size: 20px;
    }

    .platform-card-text {
        font-size: 15px;
    }
}
