/* Akeneo PIM service landing pages */

.akeneo-subnav {
    border-bottom: 1px solid rgba(9, 9, 11, 0.08);
    background: #fff;
    position: sticky;
    top: 72px;
    z-index: 20;
}

.akeneo-subnav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    overflow-x: auto;
}

.akeneo-subnav__list a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3f3f46;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.akeneo-subnav__list a:hover {
    background: #f4f4f5;
    color: #09090b;
}

.akeneo-subnav__list a.active {
    color: #fff;
    background: var(--accent-color, #635bff);
    border-color: transparent;
}

.akeneo-hero-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(9, 9, 11, 0.08);
    box-shadow: 0 16px 48px rgba(9, 9, 11, 0.08);
}

.akeneo-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.akeneo-outcome-list,
.akeneo-use-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.akeneo-outcome-list li,
.akeneo-use-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.55;
    color: #3f3f46;
}

.akeneo-outcome-list i,
.akeneo-use-list i {
    color: var(--accent-color, #635bff);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.akeneo-cap-card {
    height: 100%;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(9, 9, 11, 0.08);
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.akeneo-cap-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(9, 9, 11, 0.08);
}

.akeneo-cap-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 14px;
    color: var(--accent-color, #635bff);
    background: color-mix(in srgb, var(--accent-color, #635bff) 12%, #fff);
    font-size: 1.15rem;
}

.akeneo-cap-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.akeneo-cap-card p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.6;
    margin: 0;
}

.akeneo-tech-box {
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(9, 9, 11, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(9, 9, 11, 0.06);
}

.akeneo-tech-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.akeneo-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.akeneo-tech-tags span {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #3f3f46;
    background: #f4f4f5;
    border-radius: 8px;
}

.akeneo-process-card {
    height: 100%;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(9, 9, 11, 0.08);
    border-radius: 16px;
}

.akeneo-process-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-color, #635bff);
    margin-bottom: 12px;
}

.akeneo-process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.akeneo-process-card p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.6;
    margin: 0;
}

.akeneo-faq .accordion-item {
    border: 1px solid rgba(9, 9, 11, 0.08);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.akeneo-faq .accordion-button {
    font-weight: 650;
    font-size: 15px;
    box-shadow: none !important;
}

.akeneo-faq .accordion-button:not(.collapsed) {
    color: var(--accent-color, #635bff);
    background: color-mix(in srgb, var(--accent-color, #635bff) 8%, #fff);
}

.akeneo-faq .accordion-body {
    font-size: 14.5px;
    line-height: 1.65;
    color: #3f3f46;
}

.akeneo-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(9, 9, 11, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.akeneo-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(9, 9, 11, 0.1);
    color: inherit;
}

.akeneo-blog-card__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.akeneo-blog-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.akeneo-blog-card__meta {
    font-size: 12px;
    font-weight: 650;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.akeneo-blog-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.akeneo-blog-card p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.akeneo-blog-card__more {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color, #635bff);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .akeneo-subnav {
        top: 64px;
    }
}
