/* FinFlow Wealth Management demo — Plus Jakarta Sans, purple accent */

:root {
    --wm-primary: #5423E7;
    --wm-secondary: #FFD266;
    --wm-accent: #EF9815;
    --wm-headline: #121217;
    --wm-body: #6C6C89;
    --wm-light: #F7F7F8;
    --wm-white: #FFFFFF;
    --wm-font: "Plus Jakarta Sans", system-ui, sans-serif;
    --wm-radius: 20px;
    --wm-radius-pill: 50px;
    --wm-container: min(1180px, 92vw);
    --wm-shadow: 0 20px 50px rgba(18, 18, 23, 0.08);
}

.wm-site {
    font-family: var(--wm-font);
    color: var(--wm-headline);
    background: var(--wm-white);
    -webkit-font-smoothing: antialiased;
}

.wm-wrap { width: var(--wm-container); margin: 0 auto; }

.wm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 32px;
    border-radius: var(--wm-radius-pill);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
    line-height: 1;
}

.wm-btn--solid {
    background: var(--wm-white);
    color: var(--wm-headline);
    box-shadow: var(--wm-shadow);
}

.wm-btn--solid:hover {
    background: var(--wm-secondary);
    color: var(--wm-headline);
}

.wm-btn--primary {
    background: var(--wm-headline);
    color: var(--wm-white);
}

.wm-btn--primary:hover {
    background: var(--wm-primary);
    color: var(--wm-white);
}

.wm-btn--sm { padding: 14px 24px; font-size: 14px; }

.wm-btn--outline {
    background: transparent;
    border: 1px solid rgba(18, 18, 23, 0.12);
    color: var(--wm-headline);
    box-shadow: none;
}

.wm-btn--outline:hover {
    background: rgba(18, 18, 23, 0.04);
    color: var(--wm-headline);
}

/* Header */
.wm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 18, 23, 0.06);
    transition: background .3s, border-color .3s, box-shadow .3s, color .3s;
}

.wm-header--overlay {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .wm-brand,
.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .wm-nav a,
.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .wm-header__toggle span {
    color: #fff;
}

.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .wm-brand__mark {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .wm-btn:not(.wm-btn--solid),
.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .wm-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.wm-header.is-scrolled,
.wm-header.is-solid,
.wm-header.is-menu-open {
    background: #121217;
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.wm-header.is-scrolled .wm-brand,
.wm-header.is-solid .wm-brand,
.wm-header.is-menu-open .wm-brand,
.wm-header.is-scrolled .wm-nav a,
.wm-header.is-solid .wm-nav a,
.wm-header.is-menu-open .wm-nav a {
    color: #fff;
}

.wm-header.is-scrolled .wm-nav a:hover,
.wm-header.is-solid .wm-nav a:hover,
.wm-header.is-menu-open .wm-nav a:hover {
    color: rgba(255, 255, 255, 0.78);
}

.wm-header.is-scrolled .wm-header__toggle span,
.wm-header.is-solid .wm-header__toggle span,
.wm-header.is-menu-open .wm-header__toggle span {
    background: #fff;
}

.wm-header.is-scrolled .wm-header__actions .wm-btn,
.wm-header.is-solid .wm-header__actions .wm-btn,
.wm-header.is-menu-open .wm-header__actions .wm-btn {
    color: #fff;
    box-shadow: none;
}

.wm-header.is-scrolled .wm-header__actions .wm-btn:not(.wm-btn--solid),
.wm-header.is-solid .wm-header__actions .wm-btn:not(.wm-btn--solid),
.wm-header.is-menu-open .wm-header__actions .wm-btn:not(.wm-btn--solid) {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.wm-header.is-scrolled .wm-header__actions .wm-btn:not(.wm-btn--solid):hover,
.wm-header.is-solid .wm-header__actions .wm-btn:not(.wm-btn--solid):hover,
.wm-header.is-menu-open .wm-header__actions .wm-btn:not(.wm-btn--solid):hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wm-header.is-scrolled .wm-header__actions .wm-btn--solid,
.wm-header.is-solid .wm-header__actions .wm-btn--solid,
.wm-header.is-menu-open .wm-header__actions .wm-btn--solid {
    background: #fff;
    color: #121217;
    border: 1px solid #fff;
}

.wm-header.is-scrolled .wm-header__actions .wm-btn--solid:hover,
.wm-header.is-solid .wm-header__actions .wm-btn--solid:hover,
.wm-header.is-menu-open .wm-header__actions .wm-btn--solid:hover {
    background: rgba(255, 255, 255, 0.88);
    color: #121217;
}

.wm-header.is-menu-open .wm-mobile-nav {
    background: #121217;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.wm-header.is-menu-open .wm-mobile-nav a {
    color: #fff;
}

.wm-header__inner {
    width: var(--wm-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem 0;
}

.wm-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    color: var(--wm-headline);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.wm-brand__mark {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wm-primary), #7B4DFF);
}

.wm-brand__logo { height: 32px; width: auto; }

.wm-nav {
    display: none;
    gap: 1.75rem;
    margin-right: auto;
}

@media (min-width: 992px) { .wm-nav { display: flex; } }

.wm-nav a {
    text-decoration: none;
    color: var(--wm-body);
    font-size: .92rem;
    font-weight: 500;
    transition: color .2s;
}

.wm-nav a:hover { color: var(--wm-headline); }

.wm-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .65rem;
}

.wm-header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .5rem;
}

.wm-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--wm-headline);
    border-radius: 2px;
}

@media (min-width: 992px) { .wm-header__toggle { display: none; } }

.wm-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 4vw 1.25rem;
    border-top: 1px solid rgba(18, 18, 23, 0.06);
}

.wm-mobile-nav.is-open { display: flex; }

.wm-mobile-nav a {
    padding: .65rem 0;
    text-decoration: none;
    color: var(--wm-headline);
    font-weight: 500;
}

/* Hero video slider */
.wm-hero-video {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
}

.wm-hero-video__track,
.wm-hero-video__fallback {
    position: absolute;
    inset: 0;
}

.wm-hero-video__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .85s ease, visibility .85s ease;
}

.wm-hero-video__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.wm-hero-video__media {
    position: absolute;
    inset: 0;
}

.wm-hero-video__video,
.wm-hero-video__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wm-hero-video__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 18, 23, 0.35) 0%, rgba(18, 18, 23, 0.15) 35%, rgba(18, 18, 23, 0.55) 100%),
        linear-gradient(90deg, rgba(18, 18, 23, 0.72) 0%, rgba(18, 18, 23, 0.35) 45%, rgba(18, 18, 23, 0.2) 100%);
}

.wm-hero-video__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
}

.wm-hero-video__copy {
    max-width: 640px;
}

@media (min-width: 992px) {
    .wm-hero-video__copy {
        max-width: min(520px, 46%);
    }
}

.wm-hero-video__badge {
    display: inline-flex;
    align-items: center;
    padding: .4rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.wm-hero-video__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: #fff;
}

.wm-hero-video__desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

.wm-hero-video__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.wm-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.wm-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wm-hero-video__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 5;
}

.wm-hero-video__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--wm-primary), #FFD266);
}

@keyframes wmHeroSliderProgress {
    from { width: 0; }
    to { width: 100%; }
}

.wm-hero-video__dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 6;
}

.wm-hero-video__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    transition: transform .2s, background .2s;
}

.wm-hero-video__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

/* Hero — cam paket paneli */
.wm-hero-glass-wrap {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 7rem 0 5.5rem;
    pointer-events: none;
}

.wm-hero-glass-wrap__inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    width: 100%;
    padding-right: 0;
}

.wm-hero-glass {
    position: relative;
    pointer-events: auto;
    grid-column: 6 / 11;
    justify-self: end;
    width: 100%;
    max-width: 430px;
    min-width: 0;
    margin: 0 1.35rem 0 0;
    min-height: min(380px, 52vh);
    max-height: min(520px, 68vh);
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.25rem 1.15rem;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(120, 180, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -18px 36px rgba(255, 255, 255, 0.04),
        0 24px 60px rgba(8, 12, 24, 0.35);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.wm-hero-glass__shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0%, transparent 36%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.28) 0%, transparent 28%);
}

.wm-hero-glass__head,
.wm-hero-glass__nav {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.wm-hero-glass__viewport {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.wm-hero-glass__track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.wm-hero-glass__panel {
    position: relative;
    z-index: 1;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-right: 0.15rem;
}

.wm-hero-glass__panel .wm-hero-glass__features {
    max-height: min(220px, 32vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.wm-hero-glass__panel .wm-hero-glass__features::-webkit-scrollbar {
    width: 4px;
}

.wm-hero-glass__panel .wm-hero-glass__features::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.wm-hero-glass__nav {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

.wm-hero-glass__nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, background 0.25s ease;
}

.wm-hero-glass__nav-dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

.wm-hero-glass__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.wm-hero-glass__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.wm-hero-glass__tab {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wm-hero-glass__tab.is-active,
.wm-hero-glass__tab:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.wm-hero-glass__panel[hidden] {
    display: none !important;
}

.wm-hero-glass__price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.wm-hero-glass__name {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.wm-hero-glass__price {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.wm-hero-glass__price small {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.wm-hero-glass__hint {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.wm-hero-glass__features {
    list-style: none;
    margin: 0 0 0.95rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.wm-hero-glass__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.wm-hero-glass__features li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.95rem;
    color: #b9ffcf;
}

.wm-hero-glass__more,
.wm-hero-glass__empty {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.wm-hero-glass__cta {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #121217;
    border: 0;
    margin-top: auto;
    flex-shrink: 0;
}

.wm-hero-glass__cta:hover {
    background: #fff;
    color: #121217;
}

@media (min-width: 992px) {
    .wm-hero-glass-wrap {
        display: flex;
    }

    .wm-hero-glass {
        grid-column: 6 / 11;
        margin-right: 1.35rem;
    }
}

@media (min-width: 1200px) {
    .wm-hero-glass {
        grid-column: 6 / 11;
        max-width: 440px;
        margin-right: 1.75rem;
    }
}

@media (max-width: 991px) {
    .wm-hero-glass-wrap {
        display: none;
    }
}

/* Legacy hero (fallback) */
.wm-hero {
    padding: 3rem 0 5rem;
    background: linear-gradient(180deg, var(--wm-light) 0%, var(--wm-white) 55%);
    overflow: hidden;
}

.wm-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .wm-hero__grid { grid-template-columns: 1fr 1.05fr; }
}

.wm-hero__words {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    margin-bottom: 1.5rem;
}

.wm-hero__word {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--wm-headline);
}

.wm-hero__word--accent {
    background: linear-gradient(90deg, var(--wm-primary), #7B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wm-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--wm-body);
    max-width: 28rem;
    margin-bottom: 1.75rem;
}

.wm-hero__visual {
    position: relative;
    min-height: 420px;
}

.wm-hero__main-img {
    width: 100%;
    border-radius: var(--wm-radius);
    box-shadow: var(--wm-shadow);
}

.wm-hero__card {
    position: absolute;
    bottom: 8%;
    left: -5%;
    width: 55%;
    border-radius: 16px;
    box-shadow: var(--wm-shadow);
}

.wm-hero__arrow {
    position: absolute;
    top: 35%;
    left: 42%;
    width: 80px;
}

.wm-hero__avatars {
    position: absolute;
    top: 8%;
    right: 5%;
    display: flex;
    gap: -.5rem;
}

.wm-hero__avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--wm-white);
    box-shadow: var(--wm-shadow);
}

.wm-hero__ornament {
    position: absolute;
    top: -5%;
    right: 20%;
    width: 64px;
    opacity: .85;
}

/* Intro + stats */
.wm-intro {
    padding: 4rem 0;
    text-align: center;
}

.wm-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 600;
    line-height: 1.35;
    max-width: 720px;
    margin: 0 auto 3rem;
    letter-spacing: -0.02em;
}

.wm-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .wm-stats { grid-template-columns: repeat(5, 1fr); }
}

.wm-stat__value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.wm-stat__value small {
    font-size: .55em;
    color: var(--wm-primary);
}

.wm-stat__label {
    font-size: .82rem;
    color: var(--wm-body);
    margin-top: .35rem;
    line-height: 1.4;
}

/* Features */
.wm-features {
    padding: clamp(4rem, 8vw, 5.5rem) 0;
    background: linear-gradient(180deg, #f8f8fa 0%, var(--wm-light) 100%);
}

.wm-section-eyebrow {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--wm-primary);
    margin-bottom: .75rem;
}

.wm-features__head {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.wm-features__title {
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
}

.wm-features__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--wm-body);
    margin: 0;
}

.wm-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .wm-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .wm-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.wm-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem;
    background: var(--wm-white);
    border: 1px solid rgba(18, 18, 23, 0.06);
    border-radius: calc(var(--wm-radius) + 4px);
    box-shadow: 0 8px 28px rgba(18, 18, 23, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wm-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(18, 18, 23, 0.08);
    border-color: rgba(84, 35, 231, 0.12);
}

.wm-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(84, 35, 231, 0.08);
    border: 1px solid rgba(84, 35, 231, 0.12);
}

.wm-feature__icon i {
    font-size: 1.35rem;
    color: var(--wm-primary);
    line-height: 1;
}

.wm-feature__icon img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.wm-feature__body { min-width: 0; }

.wm-feature__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wm-primary);
    background: rgba(84, 35, 231, 0.08);
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    margin-bottom: 0.45rem;
}

.wm-feature h4 {
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0 0 .4rem;
    letter-spacing: -0.01em;
}

.wm-feature p {
    font-size: .86rem;
    color: var(--wm-body);
    margin: 0;
    line-height: 1.6;
}

.wm-feature--kitchen .wm-feature__icon,
.wm-feature--kitchen .wm-feature__tag { --feature-accent: #c45c26; }
.wm-feature--production .wm-feature__icon,
.wm-feature--production .wm-feature__tag { --feature-accent: #0d9488; }
.wm-feature--logistics .wm-feature__icon,
.wm-feature--logistics .wm-feature__tag { --feature-accent: #059669; }
.wm-feature--inventory .wm-feature__icon,
.wm-feature--inventory .wm-feature__tag { --feature-accent: #2563eb; }
.wm-feature--quality .wm-feature__icon,
.wm-feature--quality .wm-feature__tag { --feature-accent: #16a34a; }
.wm-feature--finance .wm-feature__icon,
.wm-feature--finance .wm-feature__tag { --feature-accent: #7c3aed; }

.wm-feature--kitchen .wm-feature__icon,
.wm-feature--production .wm-feature__icon,
.wm-feature--logistics .wm-feature__icon,
.wm-feature--inventory .wm-feature__icon,
.wm-feature--quality .wm-feature__icon,
.wm-feature--finance .wm-feature__icon {
    background: color-mix(in srgb, var(--feature-accent, var(--wm-primary)) 10%, white);
    border-color: color-mix(in srgb, var(--feature-accent, var(--wm-primary)) 18%, white);
}

.wm-feature--kitchen .wm-feature__icon i,
.wm-feature--production .wm-feature__icon i,
.wm-feature--logistics .wm-feature__icon i,
.wm-feature--inventory .wm-feature__icon i,
.wm-feature--quality .wm-feature__icon i,
.wm-feature--finance .wm-feature__icon i {
    color: var(--feature-accent, var(--wm-primary));
}

.wm-feature--kitchen .wm-feature__tag,
.wm-feature--production .wm-feature__tag,
.wm-feature--logistics .wm-feature__tag,
.wm-feature--inventory .wm-feature__tag,
.wm-feature--quality .wm-feature__tag,
.wm-feature--finance .wm-feature__tag {
    color: var(--feature-accent, var(--wm-primary));
    background: color-mix(in srgb, var(--feature-accent, var(--wm-primary)) 12%, white);
}

/* Spotlight */
.wm-spotlight {
    padding: clamp(4rem, 8vw, 5.5rem) 0;
    background: var(--wm-white);
}

.wm-spotlight__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .wm-spotlight__grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
}

.wm-spotlight__content {
    max-width: 34rem;
}

.wm-spotlight h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.wm-spotlight__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--wm-body);
    margin: 0;
}

.wm-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.wm-checklist li {
    display: flex;
    gap: .65rem;
    padding: .45rem 0;
    font-size: .92rem;
}

.wm-checklist li::before {
    content: "✓";
    color: var(--wm-primary);
    font-weight: 700;
}

.wm-checklist--pro {
    margin: 1.75rem 0 1.5rem;
}

.wm-checklist--pro li {
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.94rem;
    line-height: 1.55;
}

.wm-checklist--pro li::before {
    content: none;
}

.wm-checklist--pro li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--wm-primary);
    font-size: 1rem;
}

.wm-spotlight__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.wm-spotlight-metric {
    padding: 0.85rem 0.75rem;
    border-radius: 14px;
    background: var(--wm-light);
    border: 1px solid rgba(18, 18, 23, 0.06);
}

.wm-spotlight-metric strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--wm-ink);
    margin-bottom: 0.15rem;
}

.wm-spotlight-metric span {
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--wm-body);
}

.wm-spotlight__brands-label {
    font-size: .85rem;
    color: var(--wm-body);
    margin: 1.5rem 0 .75rem;
}

.wm-spotlight__brands img { width: 100%; border-radius: 12px; }

.wm-spotlight__visual {
    position: relative;
}

.wm-spotlight__photo {
    position: relative;
    border-radius: calc(var(--wm-radius) + 6px);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(18, 18, 23, 0.12);
    aspect-ratio: 4 / 5;
}

.wm-spotlight__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wm-spotlight__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 18, 23, 0.02) 35%, rgba(18, 18, 23, 0.28) 100%);
    pointer-events: none;
}

.wm-spotlight-panel {
    position: absolute;
    left: -1.25rem;
    bottom: 1.5rem;
    width: min(100%, 19rem);
    padding: 1rem 1rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 50px rgba(18, 18, 23, 0.14);
    backdrop-filter: blur(12px);
}

@media (min-width: 992px) {
    .wm-spotlight-panel {
        left: -2rem;
        bottom: 2rem;
        width: 20rem;
    }
}

.wm-spotlight-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.wm-spotlight-panel__head strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--wm-ink);
}

.wm-spotlight-panel__head span {
    display: block;
    font-size: 0.72rem;
    color: var(--wm-body);
    margin-top: 0.1rem;
}

.wm-spotlight-panel__head i {
    color: var(--wm-primary);
    font-size: 1.1rem;
}

.wm-spotlight-panel__rows {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
}

.wm-spotlight-panel__rows li {
    display: grid;
    grid-template-columns: 1.5rem 1fr auto auto;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(18, 18, 23, 0.06);
    font-size: 0.78rem;
}

.wm-spotlight-panel__rows li:last-child {
    border-bottom: 0;
}

.wm-spotlight-panel__icon i {
    color: var(--wm-primary);
    font-size: 0.9rem;
}

.wm-spotlight-panel__label {
    color: var(--wm-body);
}

.wm-spotlight-panel__value {
    font-weight: 700;
    color: var(--wm-ink);
}

.wm-spotlight-panel__badge {
    font-size: 0.68rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 999px;
    padding: 0.12rem 0.4rem;
}

.wm-spotlight-panel__chart {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 3.5rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(18, 18, 23, 0.06);
}

.wm-spotlight-panel__chart span {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, rgba(84, 35, 231, 0.85), rgba(84, 35, 231, 0.35));
}

@media (max-width: 991px) {
    .wm-spotlight__metrics {
        grid-template-columns: 1fr;
    }

    .wm-spotlight-panel {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -3.5rem;
        margin-inline: 1rem;
        width: calc(100% - 2rem);
    }

    .wm-spotlight__photo {
        aspect-ratio: 16 / 11;
    }
}

/* Testimonial */
.wm-testimonial {
    padding: 5rem 0;
    background: var(--wm-light);
    text-align: center;
}

.wm-testimonial-slider {
    max-width: 780px;
    margin: 0 auto;
}

.wm-testimonial-slider__viewport {
    overflow: hidden;
}

.wm-testimonial-slider__track {
    display: grid;
}

.wm-testimonial-slider__slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
    pointer-events: none;
}

.wm-testimonial-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wm-testimonial__quote {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 500;
    line-height: 1.45;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.01em;
}

.wm-testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.wm-testimonial__author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wm-testimonial__author strong { display: block; font-size: .92rem; }
.wm-testimonial__author span { font-size: .82rem; color: var(--wm-body); }

.wm-testimonial-slider__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.75rem;
}

.wm-testimonial-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 18, 23, 0.16);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.wm-testimonial-slider__dot.is-active {
    width: 1.5rem;
    background: var(--wm-primary);
}

/* Contact */
.wm-contact {
    padding: 5rem 0;
}

.wm-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .wm-contact__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.wm-contact h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: .75rem;
}

.wm-contact__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.wm-contact__list a {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    color: var(--wm-headline);
    padding: .35rem 0;
    font-size: .92rem;
}

.wm-contact__list i { color: var(--wm-body); }

/* Footer */
.wm-footer {
    background: var(--wm-headline);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.wm-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .wm-footer__grid { grid-template-columns: repeat(4, 1fr); }
}

.wm-footer__col h5 {
    color: #fff;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.wm-footer__col a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: .85rem;
    padding: .2rem 0;
}

.wm-footer__col a:hover { color: #fff; }

.wm-footer__cta {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.wm-footer__cta h3 {
    color: #fff;
    font-size: 1.35rem;
    margin: 0 0 .35rem;
}

.wm-footer__cta p {
    margin: 0;
    font-size: .88rem;
    max-width: 360px;
}

.wm-footer__bottom {
    padding: 1.25rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: .82rem;
    text-align: center;
}

.wm-header .mkt-locale-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 2.2rem;
    border-radius: var(--wm-radius-pill);
    border: 1px solid rgba(18, 18, 23, 0.1);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    color: var(--wm-body);
}

.wm-header .mkt-locale-switcher__btn::after {
    display: none;
}

.wm-header .mkt-locale-switcher__btn i {
    font-size: 0.85rem;
    color: inherit;
}

.wm-header .mkt-locale-switcher__menu {
    min-width: 11rem;
    padding: 0.4rem;
    margin-top: 0.45rem !important;
    border: 1px solid rgba(18, 18, 23, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(18, 18, 23, 0.14);
    z-index: 1050;
}

.wm-header .mkt-locale-switcher__menu-head {
    padding: 0.45rem 0.65rem 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wm-body);
    opacity: 0.65;
}

.wm-header .mkt-locale-switcher form {
    margin: 0;
}

.wm-header .mkt-locale-switcher__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.65rem;
    color: var(--wm-headline);
    background: transparent;
}

.wm-header .mkt-locale-switcher__item:hover {
    background: var(--wm-light);
    color: var(--wm-headline);
}

.wm-header .mkt-locale-switcher__item.is-active {
    background: rgba(84, 35, 231, 0.08);
    font-weight: 600;
    color: var(--wm-primary);
}

.wm-header .mkt-locale-switcher__item i {
    font-size: 0.85rem;
    color: var(--wm-primary);
}

.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .mkt-locale-switcher__btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(18, 18, 23, 0.25);
    backdrop-filter: blur(8px);
}

.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .mkt-locale-switcher__btn i,
.wm-header--overlay:not(.is-scrolled):not(.is-menu-open) .mkt-locale-switcher__btn span {
    color: #fff;
}

.wm-header.is-scrolled .mkt-locale-switcher__btn,
.wm-header.is-solid .mkt-locale-switcher__btn,
.wm-header.is-menu-open .mkt-locale-switcher__btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.wm-header.is-scrolled .mkt-locale-switcher__btn i,
.wm-header.is-solid .mkt-locale-switcher__btn i,
.wm-header.is-menu-open .mkt-locale-switcher__btn i,
.wm-header.is-scrolled .mkt-locale-switcher__btn span,
.wm-header.is-solid .mkt-locale-switcher__btn span,
.wm-header.is-menu-open .mkt-locale-switcher__btn span {
    color: #fff;
}

.wm-pricing {
    padding: 4rem 0;
    background: var(--wm-light);
}

.wm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: start;
}

.wm-plan {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--wm-radius);
    padding: 1.75rem;
    border: 1px solid rgba(18, 18, 23, 0.06);
}

.wm-plan--featured {
    border-color: var(--wm-primary);
    box-shadow: var(--wm-shadow);
}

.wm-plan h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.wm-plan__price { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.wm-plan__price small { font-size: .85rem; color: var(--wm-body); font-weight: 500; }

.wm-plan__modules {
    margin-bottom: 1.25rem;
}

.wm-plan__modules-total {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--wm-ink);
    margin: 0 0 0.75rem;
}

.wm-plan__groups {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wm-plan__groups li {
    display: grid;
    grid-template-columns: 1.1rem 1fr auto;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    color: var(--wm-body);
    padding: 0.35rem 0;
}

.wm-plan__groups li i {
    color: var(--wm-primary);
    font-size: 0.85rem;
}

.wm-plan__groups li em {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--wm-ink);
    background: rgba(84, 35, 231, 0.08);
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    min-width: 1.35rem;
    text-align: center;
}

.wm-plan__modules-detail {
    margin-top: 0.75rem;
}

.wm-plan__modules-detail summary {
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--wm-primary);
    list-style: none;
}

.wm-plan__modules-detail summary::-webkit-details-marker {
    display: none;
}

.wm-plan__modules-detail[open] summary {
    margin-bottom: 0.65rem;
}

.wm-plan__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-height: 9rem;
    overflow-y: auto;
    padding-right: 0.15rem;
}

.wm-plan__chips::-webkit-scrollbar {
    width: 4px;
}

.wm-plan__chips::-webkit-scrollbar-thumb {
    background: rgba(18, 18, 23, 0.15);
    border-radius: 999px;
}

.wm-plan__chip {
    display: inline-block;
    font-size: 0.72rem;
    line-height: 1.3;
    color: var(--wm-body);
    background: rgba(18, 18, 23, 0.04);
    border: 1px solid rgba(18, 18, 23, 0.06);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.wm-plan__foot {
    margin-top: auto;
    padding-top: 0.25rem;
}

.wm-btn--block { width: 100%; }

@media (max-width: 991px) {
    .wm-hero__card, .wm-hero__arrow, .wm-hero__ornament { display: none; }
    .wm-header__actions .wm-btn--solid { display: none; }
}

/* Flash bildirimleri — sabit header altında */
.wm-site {
    --mkt-header-offset: 4.75rem;
}

.mkt-flash-stack {
    position: fixed;
    top: calc(var(--mkt-header-offset, 5rem) + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 250;
    width: min(560px, calc(100vw - 2rem));
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.mkt-flash {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem 0.85rem 1.1rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    animation: mktFlashIn 0.35s ease;
}

.mkt-flash.is-hiding {
    animation: mktFlashOut 0.32s ease forwards;
}

.mkt-flash i {
    flex-shrink: 0;
    font-size: 1.05rem;
}

.mkt-flash span {
    flex: 1;
    min-width: 0;
}

.mkt-flash__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0.15rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    opacity: 0.65;
    cursor: pointer;
}

.mkt-flash__close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

.mkt-flash--success {
    background: #ecfdf3;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mkt-flash--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes mktFlashIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mktFlashOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-8px); }
}
