/* Webmaster Plus — Service Landing (unified SEO + cohesive UI) */
.wm-sl-page {
    --wm-sl-primary: var(--wm-module-primary);
    --wm-sl-primary-deep: var(--wm-module-primary-dark);
    --wm-sl-primary-soft: var(--wm-module-soft);
    --wm-sl-primary-bg: var(--wm-brand-pill);
    --wm-sl-primary-bg-soft: var(--wm-module-bg);
    --wm-sl-accent: var(--wm-module-accent);
    --wm-sl-ink: var(--wm-module-ink);
    --wm-sl-muted: var(--wm-module-muted);
    --wm-sl-line: var(--wm-module-line);
    --wm-sl-surface: var(--wm-module-surface);
    --wm-sl-bg: var(--wm-module-bg);
    --wm-sl-glow: var(--wm-brand-glow-soft);
    --wm-sl-glow-strong: var(--wm-brand-glow-strong);
    --wm-sl-media-dark: var(--wm-brand-media-dark);
    --wm-sl-radius: 14px;
    --wm-sl-radius-lg: 20px;
    --wm-sl-pill: 999px;
    --wm-sl-wrap: var(--wm-container, 1360px);
    --wm-sl-section: clamp(56px, 7vw, 88px);
    --wm-sl-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    --wm-sl-shadow-sm: 0 4px 18px rgba(15, 23, 42, 0.05);
    direction: rtl;
    font-family: inherit;
    color: var(--wm-sl-ink);
    background: var(--wm-sl-surface);
    width: 100%;
    max-width: none;
    margin-inline: 0;
    -webkit-font-smoothing: antialiased;
}

.wm-sl-page--section.wm-sl-page {
    background: transparent;
    padding: 0;
    overflow: visible;
}

.wm-sl-page *,
.wm-sl-page *::before,
.wm-sl-page *::after {
    box-sizing: border-box;
}

.wm-sl-wrap {
    width: 100%;
    max-width: var(--wm-sl-wrap);
    margin: 0 auto;
    padding-inline: var(--wm-gutter, clamp(16px, 2.8vw, 36px));
}

.wm-sl-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: var(--wm-sl-pill);
    background: var(--wm-sl-primary-bg);
    color: var(--wm-sl-primary);
    font-size: 0.78rem;
    font-weight: 700;
}

.wm-sl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--wm-sl-pill);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wm-sl-btn--primary {
    background: var(--wm-sl-primary);
    color: #fff;
}

.wm-sl-btn--primary:hover {
    background: var(--wm-sl-primary-deep);
    color: #fff;
    transform: translateY(-1px);
}

.wm-sl-btn--text {
    background: none;
    color: var(--wm-sl-primary);
    padding: 14px 8px;
}

.wm-sl-btn--outline {
    background: var(--wm-sl-surface);
    color: var(--wm-sl-primary);
    border: 1.5px solid var(--wm-sl-primary);
    padding: 12px 22px;
}

.wm-sl-btn--outline:hover {
    background: var(--wm-sl-primary-bg);
    color: var(--wm-sl-primary);
    transform: translateY(-1px);
}

.wm-sl-btn--text:hover {
    color: var(--wm-sl-accent);
}

.wm-sl-btn__icon {
    width: 14px;
    height: 14px;
    transform: scaleX(-1);
}

.wm-sl-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.wm-sl-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--wm-sl-ink);
}

.wm-sl-section-head p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--wm-sl-muted);
}

/* hero */
.wm-sl-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
    background: linear-gradient(180deg, var(--wm-sl-bg) 0%, var(--wm-brand-bg-soft) 42%, var(--wm-sl-surface) 100%);
    border-bottom: 1px solid var(--wm-sl-line);
}

.wm-sl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 52% 42% at 88% 12%, color-mix(in srgb, var(--wm-sl-primary) 24%, transparent), transparent),
        radial-gradient(ellipse 38% 32% at 8% 88%, color-mix(in srgb, var(--wm-sl-accent) 20%, transparent), transparent);
}

.wm-sl-hero > .wm-sl-wrap {
    position: relative;
    z-index: 1;
}

.wm-sl-hero__grid {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.wm-sl-hero__inner {
    max-width: none;
}

.wm-sl-hero__label {
    margin: 0 0 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wm-sl-muted);
}

.wm-sl-hero__title {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--wm-sl-ink);
    letter-spacing: -0.02em;
}

.wm-sl-hero__subtitle {
    margin: 0 0 24px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    line-height: 1.6;
    color: var(--wm-sl-primary);
}

.wm-sl-hero__prose p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--wm-sl-muted);
}

.wm-sl-hero__prose p:last-child {
    margin-bottom: 0;
}

.wm-sl-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 5vw, 48px);
    margin: 32px 0 0;
    padding: 28px 0 0;
    list-style: none;
    border-top: 1px solid var(--wm-sl-line);
}

.wm-sl-hero__stats li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wm-sl-hero__stats strong {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--wm-sl-primary);
    line-height: 1;
}

.wm-sl-hero__stats span {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--wm-sl-muted);
    max-width: 220px;
}

.wm-sl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    margin-top: 32px;
}

.wm-sl-hero__media {
    margin: 0;
    border-radius: var(--wm-sl-radius);
    overflow: hidden;
    border: 1px solid var(--wm-sl-line);
    background: var(--wm-sl-bg);
    box-shadow: 0 16px 40px var(--wm-sl-glow);
}

.wm-sl-hero__img,
.wm-sl-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.wm-sl-hero__embed {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--wm-sl-media-dark);
}

.wm-sl-hero__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.wm-sl-hero__embed-fallback {
    position: relative;
    display: block;
}

.wm-sl-hero__video-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--wm-sl-media-dark);
}

.wm-sl-hero__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wm-sl-hero__video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(15, 23, 42, 0.28);
    cursor: pointer;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.wm-sl-hero__video-play-icon {
    width: 64px;
    height: 64px;
    padding: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--wm-sl-primary-deep);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
}

.wm-sl-hero__embed-fallback .wm-sl-hero__video-play {
    pointer-events: none;
}

.wm-sl-hero__video-wrap.is-playing .wm-sl-hero__video-play {
    opacity: 0;
    pointer-events: none;
}

.wm-sl-hero__video-wrap.is-playing:hover .wm-sl-hero__video-play {
    opacity: 1;
    pointer-events: auto;
}

.wm-sl-figure__caption,
.wm-plus-figure__caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* portfolio strip */
.wm-sl-strip {
    padding: clamp(40px, 5vw, 56px) 0;
    background: linear-gradient(135deg, var(--wm-sl-primary-deep) 0%, var(--wm-sl-primary) 100%);
    overflow: hidden;
}

.wm-sl-strip__head {
    text-align: center;
    margin-bottom: 28px;
}

.wm-sl-strip__title {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #fff;
}

.wm-sl-strip__lead {
    margin: 0 auto;
    max-width: 640px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.wm-sl-strip__viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wm-sl-strip__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: wm-sl-strip-scroll 45s linear infinite;
    padding: 0 20px;
}

.wm-sl-strip__track:hover {
    animation-play-state: paused;
}

@keyframes wm-sl-strip-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(33.333%); }
}

.wm-sl-strip__card {
    position: relative;
    flex: 0 0 280px;
    border-radius: var(--wm-sl-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-sl-strip__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: var(--wm-sl-pill);
    background: var(--wm-sl-card-accent, var(--wm-sl-accent));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.wm-sl-strip__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.wm-sl-strip__thumb .wm-fake-visual,
.wm-sl-strip__thumb img,
.wm-sl-strip__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.wm-sl-strip__thumb figure {
    margin: 0;
    height: 100%;
}

.wm-sl-strip__meta {
    padding: 14px 16px 18px;
}

.wm-sl-strip__meta h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.wm-sl-strip__meta p {
    margin: 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
}

/* values */
.wm-sl-values {
    padding: var(--wm-sl-section) 0;
    background: var(--wm-sl-surface);
}

.wm-sl-values__split {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.wm-sl-values__aside {
    position: sticky;
    top: 90px;
}

.wm-sl-values__aside h2 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--wm-sl-ink);
}

.wm-sl-values__aside p {
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--wm-sl-muted);
}

.wm-sl-values__media {
    margin: 0;
    border-radius: var(--wm-sl-radius);
    overflow: hidden;
    border: 1px solid var(--wm-sl-line);
}

.wm-sl-values__img,
.wm-sl-values__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* values — open cards (SEO) */
.wm-sl-values__list {
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    overflow: hidden;
    background: var(--wm-sl-surface);
}

.wm-sl-val-row {
    border-bottom: 1px solid var(--wm-sl-line);
}

.wm-sl-val-row:last-child {
    border-bottom: none;
}

.wm-sl-val-row__head {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 22px;
    border: none;
    background: none;
    text-align: right;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.wm-sl-val-row__head:hover {
    background: var(--wm-sl-bg);
}

.wm-sl-val-row.is-open .wm-sl-val-row__head {
    background: var(--wm-sl-primary-bg);
}

.wm-sl-val-row__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--wm-sl-bg);
    color: var(--wm-sl-primary);
}

.wm-sl-val-row.is-open .wm-sl-val-row__icon {
    background: var(--wm-sl-primary);
    color: #fff;
}

.wm-sl-val-row__icon-svg {
    width: 18px;
    height: 18px;
}

.wm-sl-val-row__title {
    flex: 1;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--wm-sl-ink);
    line-height: 1.5;
}

.wm-sl-val-row__chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--wm-sl-muted);
    transition: transform 0.25s ease;
}

.wm-sl-val-row.is-open .wm-sl-val-row__chevron {
    transform: rotate(180deg);
    color: var(--wm-sl-primary);
}

.wm-sl-val-row__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.wm-sl-val-row.is-open .wm-sl-val-row__body {
    grid-template-rows: 1fr;
}

.wm-sl-val-row__body > * {
    overflow: hidden;
}

.wm-sl-val-row__excerpt {
    margin: 0;
    padding: 0 22px 16px;
    padding-right: 76px;
    font-size: 0.94rem;
    line-height: 1.9;
    color: var(--wm-sl-muted);
}

.wm-sl-val-row.is-open .wm-sl-val-row__excerpt {
    padding-top: 4px;
}

.wm-sl-val-row__media {
    margin: 0 22px 16px;
    margin-right: 76px;
    padding: 0;
    max-height: 0;
    opacity: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.wm-sl-val-row.is-open .wm-sl-val-row__media {
    max-height: 280px;
    opacity: 1;
}

.wm-sl-val-row__img,
.wm-sl-val-row__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.wm-sl-val-row__more {
    padding: 0 22px 20px;
    padding-right: 76px;
}

.wm-sl-val-row__more p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.9;
    color: var(--wm-sl-ink);
}

/* solutions — stacked cards */
.wm-sl-solutions {
    padding: var(--wm-sl-section) 0;
    background: var(--wm-sl-bg);
}

.wm-sl-solutions__stack {
    display: grid;
    gap: 16px;
}

.wm-sl-sol-block {
    padding: 24px 26px;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-surface);
    box-shadow: var(--wm-sl-shadow-sm);
}

.wm-sl-sol-block__tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: var(--wm-sl-pill);
    background: var(--wm-sl-primary-bg);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--wm-sl-primary);
    letter-spacing: 0.04em;
}

.wm-sl-sol-block h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.5;
}

.wm-sl-sol-block p {
    margin: 0;
    line-height: 1.9;
    color: var(--wm-sl-muted);
    font-size: 0.95rem;
}

.wm-sl-sol-block__media {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
}

/* legacy tab UI (unused) */
.wm-sl-solutions__hub {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 20px;
    align-items: start;
}

.wm-sl-solutions__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wm-sl-sol-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--wm-sl-line);
    border-radius: 12px;
    background: var(--wm-sl-surface);
    text-align: right;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wm-sl-sol-tab:hover {
    border-color: rgba(85, 70, 201, 0.35);
}

.wm-sl-sol-tab.is-active {
    border-color: var(--wm-sl-primary);
    background: var(--wm-sl-primary-bg);
    box-shadow: 0 4px 16px rgba(85, 70, 201, 0.1);
}

.wm-sl-sol-tab__en {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wm-sl-muted);
}

.wm-sl-sol-tab.is-active .wm-sl-sol-tab__en {
    color: var(--wm-sl-primary);
}

.wm-sl-sol-tab strong {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--wm-sl-ink);
}

.wm-sl-solutions__stage {
    position: relative;
    min-height: 220px;
    padding: 0;
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-surface);
    border: 1px solid var(--wm-sl-line);
    overflow: hidden;
}

.wm-sl-sol-panel__media {
    margin: 0;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: var(--wm-sl-bg);
    border-bottom: 1px solid var(--wm-sl-line);
}

.wm-sl-sol-panel__img,
.wm-sl-sol-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wm-sl-sol-panel__tag,
.wm-sl-sol-panel h3,
.wm-sl-sol-panel p {
    padding-right: 32px;
    padding-left: 32px;
}

.wm-sl-sol-panel__tag {
    display: inline-block;
    margin: 20px 32px 12px;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wm-sl-primary);
}

.wm-sl-sol-panel {
    display: none;
}

.wm-sl-sol-panel.is-active {
    display: block;
    animation: wm-sl-fade 0.3s ease;
}

@keyframes wm-sl-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.wm-sl-sol-panel h3 {
    margin: 0 0 14px;
    padding-top: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.45;
    color: var(--wm-sl-ink);
}

.wm-sl-sol-panel p {
    margin: 0;
    padding-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--wm-sl-muted);
}

/* pricing table */
.wm-sl-pricing {
    padding: var(--wm-sl-section) 0;
    background: var(--wm-sl-surface);
}

.wm-sl-pricing__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-surface);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.wm-sl-pricing__table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: center;
}

.wm-sl-pricing__table th,
.wm-sl-pricing__table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--wm-sl-line);
    vertical-align: middle;
}

.wm-sl-pricing__table thead th {
    border-bottom-width: 2px;
    background: var(--wm-sl-bg);
}

.wm-sl-pricing__corner {
    text-align: right;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--wm-sl-muted);
    min-width: 160px;
    background: var(--wm-sl-bg);
}

.wm-sl-pricing__plan-head {
    position: relative;
    min-width: 170px;
    padding-top: 22px;
    background: var(--wm-sl-bg);
}

.wm-sl-pricing__plan-head.is-featured {
    background: var(--wm-sl-primary-bg);
    border-inline: 1px solid rgba(85, 70, 201, 0.2);
}

.wm-sl-pricing__ribbon {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 12px;
    border-radius: var(--wm-sl-pill);
    background: var(--wm-sl-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.wm-sl-pricing__plan-name {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--wm-sl-ink);
}

.wm-sl-pricing__plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.3;
}

.wm-sl-pricing__plan-price small {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wm-sl-muted);
}

.wm-sl-pricing__plan-price strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--wm-sl-primary);
    letter-spacing: -0.02em;
}

.wm-sl-pricing__plan-price em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--wm-sl-muted);
}

.wm-sl-pricing__row-label {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--wm-sl-ink);
    background: var(--wm-sl-surface);
}

.wm-sl-pricing__cell {
    font-size: 0.9rem;
    color: var(--wm-sl-ink);
    background: var(--wm-sl-surface);
}

.wm-sl-pricing__cell.is-featured {
    background: rgba(236, 253, 245, 0.55);
}

.wm-sl-pricing__table tbody tr:nth-child(even) .wm-sl-pricing__row-label,
.wm-sl-pricing__table tbody tr:nth-child(even) .wm-sl-pricing__cell:not(.is-featured) {
    background: var(--wm-sl-bg);
}

.wm-sl-pricing__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wm-sl-primary-bg);
    color: var(--wm-sl-primary);
}

.wm-sl-pricing__dash {
    color: var(--wm-sl-muted);
    font-weight: 700;
}

.wm-sl-pricing__text {
    font-weight: 600;
    line-height: 1.5;
}

.wm-sl-pricing__foot {
    padding: 20px 18px 24px;
    border-bottom: none;
    background: var(--wm-sl-bg);
}

.wm-sl-pricing__foot.is-featured {
    background: var(--wm-sl-primary-bg);
    border-inline: 1px solid rgba(85, 70, 201, 0.2);
}

.wm-sl-pricing__foot .wm-sl-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 12px 16px;
}

.wm-sl-pricing__note {
    margin: 18px 0 0;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--wm-sl-bg);
    border: 1px solid var(--wm-sl-line);
    font-size: 0.86rem;
    line-height: 1.85;
    color: var(--wm-sl-muted);
    text-align: right;
}

/* cta */
.wm-sl-cta {
    padding: var(--wm-sl-section) 0;
    background: linear-gradient(135deg, var(--wm-sl-primary-deep) 0%, var(--wm-sl-primary) 100%);
}

.wm-sl-cta__box {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 360px);
    gap: 32px;
    align-items: center;
    padding: clamp(36px, 5vw, 52px);
    border-radius: var(--wm-sl-radius-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    text-align: right;
    box-shadow: var(--wm-sl-shadow);
}

.wm-sl-cta__content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    line-height: 1.45;
    color: #fff;
}

.wm-sl-cta__content p {
    margin: 0 0 24px;
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.wm-sl-cta__content .wm-sl-btn--primary {
    background: #fff;
    color: var(--wm-sl-primary-deep);
}

.wm-sl-cta__content .wm-sl-btn--primary:hover {
    background: var(--wm-sl-primary-bg);
    color: var(--wm-sl-primary-deep);
}

.wm-sl-cta__media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--wm-sl-line);
}

.wm-sl-cta__img,
.wm-sl-cta__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* faq */
.wm-sl-faq {
    padding: var(--wm-sl-section) 0;
    background: var(--wm-sl-surface);
}

.wm-sl-faq__list,
.wm-sl-faq__list--open {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.wm-sl-faq-item {
    padding: 20px 22px;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-surface);
    box-shadow: var(--wm-sl-shadow-sm);
}

.wm-sl-faq-item__q {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.55;
    color: var(--wm-sl-ink);
}

.wm-sl-faq-item__a {
    margin: 0;
    line-height: 1.9;
    color: var(--wm-sl-muted);
    font-size: 0.94rem;
}

/* legacy accordion (unused) */
.wm-sl-acc {
    border-bottom: 1px solid var(--wm-sl-line);
}

.wm-sl-acc:last-child {
    border-bottom: none;
}

.wm-sl-acc__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    border: none;
    background: none;
    text-align: right;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--wm-sl-ink);
    cursor: pointer;
    font-family: inherit;
}

.wm-sl-acc__trigger:hover {
    color: var(--wm-sl-primary);
}

.wm-sl-acc__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--wm-sl-muted);
    transition: transform 0.25s ease;
}

.wm-sl-acc.is-open .wm-sl-acc__icon {
    transform: rotate(180deg);
    color: var(--wm-sl-primary);
}

.wm-sl-acc__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.wm-sl-acc.is-open .wm-sl-acc__panel {
    grid-template-rows: 1fr;
}

.wm-sl-acc__panel > p {
    margin: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--wm-sl-muted);
}

.wm-sl-acc.is-open .wm-sl-acc__panel > p {
    padding-bottom: 20px;
}

/* responsive */
@media (max-width: 900px) {
    .wm-sl-hero__grid,
    .wm-sl-values__split,
    .wm-sl-solutions__hub,
    .wm-sl-cta__box {
        grid-template-columns: 1fr;
    }

    .wm-sl-hero__media {
        order: -1;
    }

    .wm-sl-values__aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .wm-sl-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .wm-sl-pricing__plan-price strong {
        font-size: 1rem;
    }

    .wm-sl-pricing__table th,
    .wm-sl-pricing__table td {
        padding: 12px 14px;
    }

    .wm-sl-val-row__body {
        padding-right: 22px;
    }

    .wm-sl-strip__card {
        flex: 0 0 240px;
    }

    .wm-sl-case {
        grid-template-columns: 1fr;
    }

    .wm-sl-related__list {
        grid-template-columns: 1fr;
    }
}

/* ── Editorial & supporting sections ── */
.wm-sl-hero__related {
    margin-top: 1rem;
    padding-top: 14px;
    border-top: 1px dashed var(--wm-sl-line);
    font-size: 0.92rem;
    color: var(--wm-sl-muted);
}

.wm-sl-hero__related a {
    color: var(--wm-sl-primary);
    font-weight: 700;
    text-decoration: none;
}

.wm-sl-hero__related a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wm-sl-prose {
    padding-block: var(--wm-sl-section);
    background: var(--wm-sl-bg);
}

.wm-sl-prose__inner {
    display: grid;
    gap: 18px;
}

.wm-sl-prose__block {
    padding: clamp(24px, 4vw, 32px);
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius-lg);
    background: var(--wm-sl-surface);
    box-shadow: var(--wm-sl-shadow-sm);
}

.wm-sl-prose__block h2 {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.45;
}

.wm-sl-prose__block p,
.wm-sl-prose__list {
    margin: 0 0 14px;
    line-height: 1.9;
    color: var(--wm-sl-muted);
    font-size: 0.95rem;
}

.wm-sl-prose__list {
    padding-right: 1.25rem;
}

.wm-sl-prose__list li + li {
    margin-top: 6px;
}

.wm-sl-prose__link a,
.wm-sl-case__link a {
    color: var(--wm-sl-primary);
    font-weight: 700;
    text-decoration: none;
}

.wm-sl-prose__link a:hover,
.wm-sl-case__link a:hover {
    text-decoration: underline;
}

.wm-sl-cases {
    padding-block: var(--wm-sl-section);
    background: var(--wm-sl-surface);
}

.wm-sl-case {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    margin-top: 28px;
    padding: clamp(22px, 4vw, 30px);
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius-lg);
    background: var(--wm-sl-bg);
    box-shadow: var(--wm-sl-shadow-sm);
}

.wm-sl-case__brand {
    margin: 0 0 6px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wm-sl-primary);
}

.wm-sl-case h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.5;
}

.wm-sl-case p {
    margin: 0 0 12px;
    line-height: 1.9;
    color: var(--wm-sl-muted);
    font-size: 0.94rem;
}

.wm-sl-case__services-title {
    margin: 16px 0 8px;
    font-size: 0.9rem;
    font-weight: 800;
}

.wm-sl-case__services {
    margin: 0;
    padding-right: 1.2rem;
    line-height: 1.85;
    color: var(--wm-sl-ink);
    font-size: 0.92rem;
}

.wm-sl-case__media {
    margin: 0;
    border-radius: var(--wm-sl-radius);
    overflow: hidden;
    border: 1px solid var(--wm-sl-line);
}

.wm-sl-process {
    padding-block: var(--wm-sl-section);
    background: var(--wm-sl-surface);
}

.wm-sl-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.wm-sl-process__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-bg);
}

.wm-sl-process__num {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--wm-sl-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}

.wm-sl-process__body h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 800;
}

.wm-sl-process__body p {
    margin: 0;
    line-height: 1.85;
    color: var(--wm-sl-muted);
    font-size: 0.92rem;
}

.wm-sl-related {
    padding-block: var(--wm-sl-section);
    background: var(--wm-sl-primary-bg-soft);
    border-block: 1px solid rgba(85, 70, 201, 0.12);
}

.wm-sl-related h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 800;
    text-align: center;
}

.wm-sl-related__list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.wm-sl-related__list li {
    padding: 18px;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-surface);
    box-shadow: var(--wm-sl-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wm-sl-related__list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--wm-sl-shadow);
}

.wm-sl-related__title {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
    color: var(--wm-sl-primary-deep);
    text-decoration: none;
}

.wm-sl-related__desc {
    display: block;
    color: var(--wm-sl-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* values — bento grid */
.wm-sl-values--bento {
    padding-block: var(--wm-sl-section);
    background: linear-gradient(180deg, var(--wm-sl-bg) 0%, var(--wm-sl-surface) 100%);
}

.wm-sl-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wm-sl-bento__card {
    position: relative;
    padding: 28px 24px 24px;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius-lg);
    background: var(--wm-sl-surface);
    box-shadow: var(--wm-sl-shadow-sm);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wm-sl-bento__card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--wm-sl-bento-accent, var(--wm-sl-primary)), transparent);
}

.wm-sl-bento__card:hover {
    transform: translateY(-4px);
    border-color: rgba(85, 70, 201, 0.35);
    box-shadow: var(--wm-sl-shadow);
}

.wm-sl-bento__num {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(85, 70, 201, 0.08);
    pointer-events: none;
}

.wm-sl-bento__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--wm-sl-primary-bg);
    color: var(--wm-sl-primary);
}

.wm-sl-bento__icon-svg {
    width: 20px;
    height: 20px;
}

.wm-sl-bento__card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.5;
    color: var(--wm-sl-ink);
}

.wm-sl-bento__excerpt {
    margin: 0 0 10px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--wm-sl-muted);
}

.wm-sl-bento__body {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--wm-sl-ink);
    opacity: 0.85;
}

/* video */
.wm-sl-video {
    padding-block: var(--wm-sl-section);
    background: var(--wm-sl-surface);
}

.wm-sl-video__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
}

.wm-sl-video__player {
    position: relative;
    border-radius: var(--wm-sl-radius-lg);
    overflow: hidden;
    border: 1px solid var(--wm-sl-line);
    background: var(--wm-sl-bg);
    box-shadow: var(--wm-sl-shadow);
}

.wm-sl-video__player video,
.wm-sl-video__poster {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.wm-sl-video__embed-link {
    position: relative;
    display: block;
}

.wm-sl-video__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.25);
}

.wm-sl-video__play-icon {
    width: 56px;
    height: 56px;
    padding: 16px;
    border-radius: 50%;
    background: var(--wm-sl-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(85, 70, 201, 0.35);
}

.wm-sl-video__text h2 {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    font-weight: 800;
    line-height: 1.45;
}

.wm-sl-video__text p {
    margin: 0;
    line-height: 1.9;
    color: var(--wm-sl-muted);
}

/* audio */
.wm-sl-audio {
    padding-block: var(--wm-sl-section);
    background: var(--wm-sl-bg);
}

.wm-sl-audio__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    max-width: 720px;
    margin-inline: auto;
}

.wm-sl-audio__item {
    padding: 18px 20px;
    border: 1px solid var(--wm-sl-line);
    border-radius: var(--wm-sl-radius);
    background: var(--wm-sl-surface);
    box-shadow: var(--wm-sl-shadow-sm);
}

.wm-sl-audio__item h3 {
    margin: 0 0 12px;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.5;
}

.wm-sl-audio__player {
    width: 100%;
    max-width: none;
}

.wm-sl-audio__placeholder {
    margin: 0;
    font-size: 0.86rem;
    color: var(--wm-sl-muted);
}

/* media + text — featured split panel (Tabaneshar-style) */
.wm-sl-mediatext {
    padding-block: var(--wm-sl-section);
}

.wm-sl-mediatext--featured {
    background: linear-gradient(145deg, var(--wm-sl-media-dark) 0%, var(--wm-sl-primary-deep) 42%, var(--wm-sl-primary) 100%);
    position: relative;
    overflow: hidden;
}

.wm-sl-mediatext--featured::before,
.wm-sl-mediatext--featured::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.14;
}

.wm-sl-mediatext--featured::before {
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    top: -180px;
    left: -120px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
}

.wm-sl-mediatext--featured::after {
    width: min(380px, 55vw);
    height: min(380px, 55vw);
    bottom: -140px;
    right: -80px;
    background: radial-gradient(circle, var(--wm-sl-primary-soft) 0%, transparent 72%);
}

.wm-sl-mediatext--light {
    background: var(--wm-sl-surface);
}

.wm-sl-mediatext__panel {
    position: relative;
    z-index: 1;
}

.wm-sl-mediatext__grid {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 460px);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.wm-sl-mediatext--reverse .wm-sl-mediatext__grid {
    grid-template-columns: minmax(240px, 460px) 1fr;
}

.wm-sl-mediatext--reverse .wm-sl-mediatext__content {
    order: 2;
}

.wm-sl-mediatext--reverse .wm-sl-mediatext__media {
    order: 1;
}

.wm-sl-mediatext__content h2 {
    margin: 0 0 20px;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.55;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__content h2 {
    color: #fff;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__content .wm-sl-tag {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.wm-sl-mediatext__body {
    margin-bottom: 0;
    font-size: clamp(0.92rem, 1.6vw, 1rem);
    line-height: 2;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__body {
    color: rgba(255, 255, 255, 0.9);
}

.wm-sl-mediatext--light .wm-sl-mediatext__body {
    color: var(--wm-sl-muted);
}

.wm-sl-mediatext__body p {
    margin: 0 0 16px;
}

.wm-sl-mediatext__body ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.wm-sl-mediatext__body li {
    position: relative;
    padding-right: 1.35rem;
}

.wm-sl-mediatext__body li + li {
    margin-top: 10px;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__body li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--wm-sl-primary-soft);
    box-shadow: 0 0 0 4px var(--wm-brand-soft-tint);
}

.wm-sl-mediatext--light .wm-sl-mediatext__body ul {
    padding-right: 1.25rem;
    list-style: disc;
}

.wm-sl-mediatext--light .wm-sl-mediatext__body li {
    padding-right: 0;
}

.wm-sl-mediatext--light .wm-sl-mediatext__body li::before {
    content: none;
}

.wm-sl-mediatext__content .wm-sl-btn {
    margin-top: 24px;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__content .wm-sl-btn--primary {
    background: #fff;
    color: var(--wm-sl-primary-deep);
}

.wm-sl-mediatext--featured .wm-sl-mediatext__content .wm-sl-btn--primary:hover {
    background: var(--wm-sl-primary-bg);
}

.wm-sl-mediatext__media {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__media {
    border: none;
    box-shadow: none;
    background: transparent;
}

.wm-sl-mediatext--light .wm-sl-mediatext__media {
    border-radius: var(--wm-sl-radius-lg);
    overflow: hidden;
    border: 1px solid var(--wm-sl-line);
}

.wm-sl-mediatext__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.wm-sl-mediatext--featured .wm-sl-mediatext__img {
    max-height: min(420px, 52vw);
    aspect-ratio: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
}

.wm-sl-mediatext--light .wm-sl-mediatext__img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 900px) {
    .wm-sl-bento {
        grid-template-columns: 1fr;
    }

    .wm-sl-video__grid,
    .wm-sl-mediatext__grid {
        grid-template-columns: 1fr;
    }

    .wm-sl-mediatext--reverse .wm-sl-mediatext__grid {
        grid-template-columns: 1fr;
    }

    .wm-sl-mediatext--reverse .wm-sl-mediatext__content,
    .wm-sl-mediatext--reverse .wm-sl-mediatext__media {
        order: unset;
    }

    .wm-sl-mediatext--featured .wm-sl-mediatext__img {
        max-height: 320px;
    }
}
