:root {
    --wk-dark: #0a0b14;
    --wk-dark-2: #12131f;
    --wk-card: #16172a;
    --wk-border: rgba(255, 255, 255, 0.08);
    --wk-primary: #6366f1;
    --wk-primary-dark: #4f46e5;
    --wk-accent: #a855f7;
    --wk-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --wk-gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    --wk-text: #1e293b;
    --wk-muted: #64748b;
    --wk-light: #f8fafc;
    --wk-radius: 16px;
    --wk-radius-lg: 24px;
    --wk-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.15);
    --wk-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body.wk-body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--wk-text);
    background: #fff;
    overflow-x: hidden;
}

/* ── Navbar ── */
.wk-navbar {
    padding: 1rem 0;
    transition: var(--wk-transition);
    z-index: 1030;
}

.wk-navbar.wk-solid {
    background: rgba(10, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wk-border);
}

.wk-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.wk-navbar .navbar-brand span {
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wk-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 1rem !important;
    transition: color var(--wk-transition);
}

.wk-navbar .nav-link:hover,
.wk-navbar .nav-link.active {
    color: #fff !important;
}

.wk-navbar-light .nav-link {
    color: var(--wk-muted) !important;
}

.wk-navbar-light .nav-link:hover,
.wk-navbar-light .nav-link.active {
    color: var(--wk-dark) !important;
}

.wk-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.wk-navbar-light .navbar-toggler-icon {
    filter: none;
}

.wk-btn-nav {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.wk-btn-primary {
    background: var(--wk-gradient);
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: transform var(--wk-transition), box-shadow var(--wk-transition);
}

.wk-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.wk-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: var(--wk-transition);
}

.wk-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.wk-btn-outline-dark {
    border: 1.5px solid var(--wk-dark);
    color: var(--wk-dark);
    background: transparent;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: var(--wk-transition);
}

.wk-btn-outline-dark:hover {
    background: var(--wk-dark);
    color: #fff;
}

/* ── Hero ── */
.wk-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--wk-dark);
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.wk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(99, 102, 241, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168, 85, 247, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.wk-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

.wk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    animation: wkFadeUp 0.8s ease both;
}

.wk-hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: wkPulse 2s infinite;
}

.wk-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: wkFadeUp 0.8s 0.1s ease both;
}

.wk-hero h1 .gradient-text {
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wk-hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: wkFadeUp 0.8s 0.2s ease both;
}

.wk-hero-actions {
    animation: wkFadeUp 0.8s 0.3s ease both;
}

.wk-hero-visual {
    position: relative;
    animation: wkFadeUp 0.8s 0.4s ease both;
}

.wk-hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--wk-radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}

.wk-stat-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--wk-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--wk-shadow);
    animation: wkFloat 4s ease-in-out infinite;
}

.wk-stat-float.top { top: -20px; right: -10px; animation-delay: 0s; }
.wk-stat-float.bottom { bottom: 20px; left: -20px; animation-delay: 1.5s; }

.wk-stat-float .num {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.wk-stat-float .lbl {
    font-size: 0.75rem;
    color: var(--wk-muted);
    font-weight: 500;
}

/* ── Marquee ── */
.wk-marquee {
    background: var(--wk-dark-2);
    border-top: 1px solid var(--wk-border);
    border-bottom: 1px solid var(--wk-border);
    padding: 1.25rem 0;
    overflow: hidden;
}

.wk-marquee-track {
    display: flex;
    gap: 3rem;
    animation: wkMarquee 30s linear infinite;
    white-space: nowrap;
}

.wk-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.wk-marquee-item i { color: var(--wk-primary); }

/* ── Section ── */
.wk-section { padding: 6rem 0; }
.wk-section-dark { background: var(--wk-dark); color: #fff; }
.wk-section-light { background: var(--wk-light); }

.wk-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wk-primary);
    margin-bottom: 0.75rem;
}

.wk-section-dark .wk-section-label { color: #a78bfa; }

.wk-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.wk-section-desc {
    color: var(--wk-muted);
    font-size: 1.05rem;
    max-width: 560px;
}

.wk-section-dark .wk-section-desc { color: rgba(255, 255, 255, 0.6); }

/* ── Feature cards ── */
.wk-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--wk-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--wk-transition);
    position: relative;
    overflow: hidden;
}

.wk-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wk-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--wk-transition);
}

.wk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wk-shadow);
    border-color: transparent;
}

.wk-feature-card:hover::before { transform: scaleX(1); }

.wk-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--wk-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--wk-primary);
    margin-bottom: 1.25rem;
}

.wk-feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.wk-feature-card p {
    color: var(--wk-muted);
    font-size: 0.925rem;
    margin: 0;
    line-height: 1.65;
}

/* ── Theme cards ── */
.wk-theme-card {
    background: #fff;
    border-radius: var(--wk-radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--wk-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wk-theme-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wk-shadow);
    border-color: transparent;
}

.wk-theme-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.wk-theme-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wk-theme-card:hover .wk-theme-card-img img {
    transform: scale(1.06);
}

.wk-theme-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 11, 20, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--wk-transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.wk-theme-card:hover .wk-theme-card-overlay { opacity: 1; }

.wk-theme-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wk-theme-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wk-primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.wk-theme-card-body h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wk-theme-card-body p {
    color: var(--wk-muted);
    font-size: 0.875rem;
    flex: 1;
    margin-bottom: 1rem;
}

.wk-theme-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.wk-theme-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--wk-dark);
}

.wk-theme-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--wk-muted);
}

/* ── Sector pills ── */
.wk-sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wk-radius);
    text-decoration: none;
    color: #fff;
    transition: var(--wk-transition);
    height: 100%;
}

.wk-sector-card:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    color: #fff;
    transform: translateY(-4px);
}

.wk-sector-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wk-sector-card h6 {
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.wk-sector-card span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Process steps ── */
.wk-process-step {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: var(--wk-radius);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: var(--wk-transition);
}

.wk-process-step:hover {
    border-color: var(--wk-primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.wk-process-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    margin-bottom: 1rem;
}

.wk-process-step h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wk-process-step p {
    color: var(--wk-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Stats bar ── */
.wk-stats-bar {
    background: var(--wk-gradient);
    border-radius: var(--wk-radius-lg);
    padding: 3rem 2rem;
    color: #fff;
}

.wk-stat-item .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.wk-stat-item .lbl {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* ── Testimonial ── */
.wk-testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--wk-radius);
    padding: 2rem;
    height: 100%;
}

.wk-testimonial-stars { color: #fbbf24; margin-bottom: 1rem; }

.wk-testimonial p {
    color: var(--wk-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wk-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wk-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--wk-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--wk-primary);
}

/* ── FAQ ── */
.wk-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--wk-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.wk-accordion .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.wk-accordion .accordion-button:not(.collapsed) {
    background: var(--wk-gradient-soft);
    color: var(--wk-primary-dark);
}

.wk-accordion .accordion-body {
    color: var(--wk-muted);
    padding: 0 1.5rem 1.25rem;
}

/* ── CTA ── */
.wk-cta {
    background: var(--wk-dark);
    border-radius: var(--wk-radius-lg);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.wk-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.wk-cta h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
}

.wk-cta p { color: rgba(255, 255, 255, 0.65); }

/* ── Page header (inner pages) ── */
.wk-page-hero {
    background: var(--wk-dark);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.wk-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
}

.wk-page-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

.wk-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.wk-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.wk-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ── Footer ── */
.wk-footer {
    background: var(--wk-dark);
    color: rgba(255, 255, 255, 0.55);
    padding-top: 5rem;
}

.wk-footer h5, .wk-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.wk-footer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--wk-transition);
    font-size: 0.9rem;
}

.wk-footer a:hover { color: #fff; }

.wk-footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
}

.wk-footer-brand span {
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wk-footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--wk-radius);
    padding: 1.5rem;
}

.wk-footer-newsletter input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50px;
    padding: 0.65rem 1.25rem;
}

.wk-footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.wk-footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--wk-primary);
    color: #fff;
    box-shadow: none;
}

.wk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
}

/* ── Reveal animation ── */
.wk-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.wk-reveal.wk-visible {
    opacity: 1;
    transform: translateY(0);
}

.wk-reveal-delay-1 { transition-delay: 0.1s; }
.wk-reveal-delay-2 { transition-delay: 0.2s; }
.wk-reveal-delay-3 { transition-delay: 0.3s; }

@keyframes wkFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes wkFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wkPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes wkMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.wk-purchase-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--wk-radius-lg);
    padding: 2rem;
    box-shadow: var(--wk-shadow);
}

.wk-purchase-card .wk-theme-badge { margin-bottom: 0.75rem; }

.wk-purchase-price {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--wk-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.wk-theme-carousel .carousel-inner {
    border-radius: var(--wk-radius-lg);
    overflow: hidden;
}

.wk-theme-carousel .carousel-item img {
    max-height: 480px;
    object-fit: cover;
}

.wk-review-card {
    background: var(--wk-light);
    border-radius: var(--wk-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.wk-navbar.wk-scrolled {
    background: rgba(10, 11, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wk-border);
    padding: 0.65rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .wk-hero { min-height: auto; padding: 6rem 0 4rem; }
    .wk-section { padding: 4rem 0; }
    .wk-stat-float { display: none; }

    .wk-navbar .navbar-collapse {
        background: rgba(10, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--wk-radius);
        border: 1px solid var(--wk-border);
        margin-top: 0.75rem;
        padding: 1rem 0.5rem;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    }

    .wk-navbar .navbar-nav {
        gap: 0 !important;
    }

    .wk-navbar .nav-link {
        padding: 0.65rem 1rem !important;
        border-radius: 10px;
    }

    .wk-navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .wk-navbar .navbar-nav .btn {
        width: 100%;
        margin-top: 0.25rem;
    }

    .wk-navbar .navbar-nav .btn.wk-btn-outline {
        border-color: rgba(255, 255, 255, 0.25);
    }
}

.wk-locale-switcher .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.wk-navbar .wk-locale-switcher .btn-outline-secondary {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}

.wk-navbar.wk-navbar-light .wk-locale-switcher .btn-outline-secondary {
    color: var(--wk-text);
    border-color: var(--wk-border);
}

.wk-star-input {
    direction: rtl;
    unicode-bidi: bidi-override;
    display: inline-flex;
}
.wk-star-label {
    cursor: pointer;
    color: rgba(255,255,255,0.15);
    transition: color 0.2s ease;
}
.wk-star-label input {
    display: none;
}
.wk-star-label:hover,
.wk-star-label:hover ~ .wk-star-label,
.wk-star-label input:checked ~ .wk-star-label,
.wk-star-label input:checked {
    color: #fbbf24;
}
.wk-star-label:hover i,
.wk-star-label:hover ~ .wk-star-label i {
    color: #fbbf24;
}
.wk-star-label input:checked ~ .wk-star-label i {
    color: #fbbf24;
}

.wk-reference-card {
    background: #fff;
    border: 1px solid var(--wk-border);
    border-radius: var(--wk-radius-lg);
    padding: 1.75rem;
    transition: var(--wk-transition);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.wk-reference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.wk-reference-logo {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.wk-reference-logo img {
    max-height: 52px;
    max-width: 100%;
    object-fit: contain;
}

.wk-reference-quote {
    color: var(--wk-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.wk-reference-meta strong {
    color: var(--wk-text);
}

.wk-reference-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wk-primary);
    text-decoration: none;
}

.wk-reference-link:hover {
    color: var(--wk-primary-dark, #4f46e5);
}

/* ── Pagination ── */
.wk-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}

.wk-pagination-summary {
    margin: 0;
    font-size: 0.875rem;
    color: var(--wk-muted);
}

.wk-pagination .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.wk-pagination .page-item .page-link {
    min-width: 2.25rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    color: var(--wk-text);
    font-size: 0.875rem;
    font-weight: 500;
    background: #fff;
    transition: var(--wk-transition);
}

.wk-pagination .page-item .page-link:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--wk-primary);
}

.wk-pagination .page-item.active .page-link {
    background: var(--wk-primary);
    border-color: var(--wk-primary);
    color: #fff;
}

.wk-pagination .page-item.disabled .page-link {
    background: #f8fafc;
    color: #94a3b8;
}

.wk-managed-section {
    position: relative;
    z-index: 1;
}

.wk-tm-original-content + .wk-managed-section {
    margin-top: 0;
}
