/**
 * Nexpure · Shaped Component Library & Futuristic Blocks
 * Inspired by Datawise (https://datawise.fonwise.com/)
 * Built for WISECP 5
 */

/* ==========================================================================
   1. HERO SECTION (Split 2-Column with 3D Visual & Floating Badges)
   ========================================================================== */
.nx-hero-section {
    position: relative;
    padding: 5rem 0 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%);
}

[data-bs-theme="dark"] .nx-hero-section {
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
}

.nx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--nx-radius-pill);
    background: rgba(var(--nx-primary-rgb), 0.08);
    border: 1px solid rgba(var(--nx-primary-rgb), 0.2);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--nx-primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.nx-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.nx-hero-lead {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--nx-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.nx-hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nx-border);
}

.nx-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nx-text-secondary);
}

.nx-trust-item i {
    color: var(--nx-primary);
    font-size: 1.1rem;
}

/* Hero Right Visual Deck */
.nx-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-hero-main-card {
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(20px);
}

[data-bs-theme="dark"] .nx-hero-main-card {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.7);
}

/* Floating Glass Micro Cards */
.nx-float-card {
    position: absolute;
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-md);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: floatAnimation 4s ease-in-out infinite;
    backdrop-filter: blur(15px);
}

[data-bs-theme="dark"] .nx-float-card {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
}

.nx-float-card-1 {
    top: -20px;
    right: -15px;
    animation-delay: 0s;
}

.nx-float-card-2 {
    bottom: -25px;
    left: -20px;
    animation-delay: 2s;
}

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

/* ==========================================================================
   2. DOMAIN SEARCH & TLD STRIP
   ========================================================================== */
.nx-domain-section {
    position: relative;
    margin-top: -2.5rem;
    z-index: 10;
    padding-bottom: 4rem;
}

.nx-domain-box {
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-xl);
    padding: 1.75rem 2rem;
    box-shadow: var(--nx-card-shadow-hover);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .nx-domain-box {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

.nx-domain-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--nx-bg-alt);
    border: 2px solid var(--nx-border);
    border-radius: var(--nx-radius-pill);
    padding: 0.5rem 0.6rem 0.5rem 1.5rem;
    transition: all 0.25s ease;
}

.nx-domain-form:focus-within {
    border-color: var(--nx-primary);
    background: var(--nx-bg-surface);
    box-shadow: 0 0 0 4px rgba(var(--nx-primary-rgb), 0.15);
}

.nx-domain-input {
    border: 0;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--nx-text-main);
    width: 100%;
    outline: none;
}

.nx-domain-input::placeholder {
    color: var(--nx-text-muted);
}

.nx-tld-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.nx-tld-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: var(--nx-radius-pill);
    background: var(--nx-bg-alt);
    border: 1px solid var(--nx-border);
    font-size: 0.8125rem;
    color: var(--nx-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nx-tld-chip:hover {
    border-color: var(--nx-primary);
    color: var(--nx-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nx-tld-chip .tld-name {
    font-weight: 700;
    color: var(--nx-text-main);
}

.nx-tld-chip .tld-price {
    font-weight: 600;
    color: var(--nx-primary);
}

.nx-tld-chip .tld-badge {
    background: rgba(var(--nx-accent-rgb), 0.15);
    color: var(--nx-accent);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

/* ==========================================================================
   3. PRICING PLANS MATRIX (Tabs + Billing Switcher + Gauge Bars)
   ========================================================================== */
.nx-section {
    padding: 5.5rem 0;
    position: relative;
}

.nx-section-alt {
    background: var(--nx-bg-alt);
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
}

.nx-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.nx-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nx-primary);
    margin-bottom: 0.6rem;
}

.nx-section-title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.nx-section-desc {
    font-size: 1.05rem;
    color: var(--nx-text-secondary);
    line-height: 1.65;
}

/* Product Group Tabs */
.nx-group-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.nx-group-tab {
    padding: 0.65rem 1.4rem;
    border-radius: var(--nx-radius-pill);
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    color: var(--nx-text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.nx-group-tab:hover,
.nx-group-tab.active {
    background: var(--nx-primary);
    border-color: var(--nx-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(var(--nx-primary-rgb), 0.35);
}

/* Frequency / Billing Cycle Switcher */
.nx-billing-switch {
    display: inline-flex;
    align-items: center;
    background: var(--nx-bg-alt);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-pill);
    padding: 0.3rem;
    margin: 0 auto 3rem auto;
}

.nx-billing-btn {
    padding: 0.45rem 1.15rem;
    border-radius: var(--nx-radius-pill);
    border: 0;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nx-text-secondary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.nx-billing-btn.active {
    background: var(--nx-bg-surface);
    color: var(--nx-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-bs-theme="dark"] .nx-billing-btn.active {
    background: #1e293b;
    color: #ffffff;
}

.nx-save-pill {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--nx-radius-pill);
    margin-left: 0.4rem;
}

/* Pricing Card (Futuristic Şekilli Card) */
.nx-plan-card {
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-xl);
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--nx-card-shadow);
}

.nx-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nx-card-shadow-hover);
    border-color: var(--nx-border-hover);
}

.nx-plan-card.popular {
    border: 2px solid var(--nx-primary);
    box-shadow: 0 20px 45px -10px rgba(var(--nx-primary-rgb), 0.25);
}

.nx-popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--nx-primary), var(--nx-secondary));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1.1rem;
    border-radius: var(--nx-radius-pill);
    box-shadow: 0 4px 14px rgba(var(--nx-primary-rgb), 0.4);
    white-space: nowrap;
}

.nx-plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.nx-plan-desc {
    font-size: 0.875rem;
    color: var(--nx-text-secondary);
    margin-bottom: 1.5rem;
    min-height: 42px;
}

.nx-plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--nx-border);
}

.nx-plan-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--nx-text-main);
    letter-spacing: -0.03em;
}

.nx-plan-period {
    font-size: 0.9375rem;
    color: var(--nx-text-muted);
}

/* Feature Gauge Bars */
.nx-gauge-wrap {
    margin-bottom: 1.25rem;
}

.nx-gauge-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--nx-text-secondary);
    margin-bottom: 0.35rem;
}

.nx-gauge-bar {
    height: 6px;
    background: var(--nx-bg-alt);
    border-radius: var(--nx-radius-pill);
    overflow: hidden;
}

.nx-gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nx-primary), var(--nx-secondary));
    border-radius: var(--nx-radius-pill);
}

.nx-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.nx-plan-feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--nx-text-secondary);
}

.nx-plan-feature-item i {
    color: var(--nx-success);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   4. TECH STACK CATALOG (8-Card Grid)
   ========================================================================== */
.nx-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.nx-tech-card {
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.nx-tech-card:hover {
    transform: translateY(-4px);
    border-color: var(--nx-primary);
    box-shadow: var(--nx-card-shadow-hover);
}

.nx-tech-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--nx-radius-md);
    background: rgba(var(--nx-primary-rgb), 0.08);
    color: var(--nx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.25s ease;
}

.nx-tech-card:hover .nx-tech-icon {
    background: var(--nx-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.nx-tech-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.nx-tech-desc {
    font-size: 0.84rem;
    color: var(--nx-text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   5. MEGA CAMPAIGN BANNERS (Split High-Contrast Cards)
   ========================================================================== */
.nx-campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 1.75rem;
}

.nx-campaign-card {
    position: relative;
    border-radius: var(--nx-radius-xl);
    padding: 3rem 2.5rem;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.nx-campaign-card-1 {
    background: linear-gradient(135deg, #1e3a8a, #0284c7);
}

.nx-campaign-card-2 {
    background: linear-gradient(135deg, #0f172a, #334155);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nx-campaign-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--nx-radius-pill);
    padding: 0.35rem 0.95rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.nx-campaign-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.nx-campaign-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 420px;
}

/* ==========================================================================
   6. 5-STEP ROADMAP TIMELINE
   ========================================================================== */
.nx-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.nx-step-card {
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
}

.nx-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--nx-primary);
    box-shadow: var(--nx-card-shadow-hover);
}

.nx-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nx-primary), var(--nx-secondary));
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 6px 16px rgba(var(--nx-primary-rgb), 0.35);
}

.nx-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.nx-step-desc {
    font-size: 0.84rem;
    color: var(--nx-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   7. LIVE STATS COUNTER PANEL
   ========================================================================== */
.nx-stats-panel {
    background: linear-gradient(135deg, #0b1329, #070c18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--nx-radius-xl);
    padding: 3.5rem 2rem;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.nx-stat-item {
    text-align: center;
    padding: 1rem;
}

.nx-stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.35rem;
}

.nx-stat-label {
    font-size: 0.9375rem;
    color: #94a3b8;
    font-weight: 600;
}

/* ==========================================================================
   8. CLIENT REVIEWS & TESTIMONIALS
   ========================================================================== */
.nx-testimonial-card {
    background: var(--nx-bg-surface);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-xl);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: var(--nx-card-shadow);
}

.nx-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.nx-quote-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--nx-text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.nx-client-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nx-client-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
    background: var(--nx-bg-alt);
}

.nx-client-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--nx-text-main);
}

.nx-client-role {
    font-size: 0.78rem;
    color: var(--nx-text-muted);
}

/* ==========================================================================
   9. CONTINUOUS PARTNER LOGO MARQUEE
   ========================================================================== */
.nx-marquee-wrap {
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.nx-marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.nx-marquee-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nx-text-muted);
    opacity: 0.65;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.nx-marquee-item:hover {
    opacity: 1;
    color: var(--nx-primary);
}

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

/* ==========================================================================
   10. MEGA FOOTER & NEWSLETTER
   ========================================================================== */
.nx-footer {
    background: #090d1a;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
}

.nx-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nx-footer a:hover {
    color: #ffffff;
}

.nx-footer-col-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.nx-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.nx-newsletter-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--nx-radius-lg);
    padding: 2rem;
    margin-bottom: 4rem;
}

/* ==========================================================================
   11. ALASTYR-STYLE NAVIGATION & MEGA SUBMENU
   ========================================================================== */

/* Topbar Alastyr */
.nx-topbar-alastyr {
    position: relative;
    z-index: 1035;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 0.8125rem;
    padding: 0.45rem 0;
    color: #475569;
    transition: all 0.2s ease;
}

[data-bs-theme="dark"] .nx-topbar-alastyr {
    background: #090e1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.nx-topbar-alastyr .dropdown-menu,
.nx-topbar-alastyr .locale-menu {
    z-index: 1050 !important;
}

.nx-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #095c97;
    color: #ffffff !important;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nx-phone-pill:hover {
    background: #0d72ba;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.nx-topbar-link {
    color: #475569 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

[data-bs-theme="dark"] .nx-topbar-link {
    color: #94a3b8 !important;
}

.nx-topbar-link:hover {
    color: var(--nx-primary) !important;
}

.nx-topbar-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

[data-bs-theme="dark"] .nx-topbar-cart {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
}

.nx-topbar-cart:hover {
    background: rgba(var(--nx-primary-rgb), 0.12);
    color: var(--nx-primary);
}

/* Alastyr Main Header */
.nx-header-alastyr {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

[data-bs-theme="dark"] .nx-header-alastyr {
    background: rgba(10, 15, 29, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.nx-nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.5rem;
    position: static;
}

.nx-menu-item {
    position: static;
}

.nx-menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 1.25rem 0.95rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
}

[data-bs-theme="dark"] .nx-menu-item > a {
    color: #f1f5f9;
}

.nx-menu-item:hover > a {
    color: var(--nx-primary);
}

/* Active / Hover underline like Alastyr */
.nx-menu-item > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--nx-primary);
    border-radius: 3px 3px 0 0;
    transition: all 0.22s ease-in-out;
}

.nx-menu-item:hover > a::after {
    width: 80%;
    left: 10%;
}

.nx-menu-ico {
    font-size: 1.1rem;
    line-height: 1;
    color: #64748b;
    transition: color 0.2s ease;
}

.nx-menu-item:hover .nx-menu-ico {
    color: var(--nx-primary);
}

/* Badges on Nav items (e.g. İndirim, Popüler, Yeni) */
.nx-nav-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nx-nav-badge.pink {
    background: #fd179e;
    color: #ffffff;
}

.nx-nav-badge.yellow {
    background: #f8a31f;
    color: #ffffff;
}

.nx-nav-badge.cyan {
    background: #06b6d4;
    color: #ffffff;
}

/* Hover bridge so dropdown does not close when moving mouse */
.nx-menu-item:hover::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -15px;
    height: 20px;
    z-index: 1029;
}

/* Mega Dropdown Panel - Full Container Width Alastyr */
.nx-mega-alastyr {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--nx-primary);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
    padding: 1.75rem 2rem;
    z-index: 1031;
}

.nx-mega-alastyr::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

[data-bs-theme="dark"] .nx-mega-alastyr {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--nx-primary);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
    .nx-menu-item:hover > .nx-mega-alastyr {
        display: block;
        animation: alastyrSubmenuFade 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes alastyrSubmenuFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Alastyr Product Card (.nx-alastyr-card) */
.nx-alastyr-card {
    display: block;
    position: relative;
    padding: 14px 16px 16px 72px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-bs-theme="dark"] .nx-alastyr-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

.nx-alastyr-card:hover {
    border-color: var(--nx-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

[data-bs-theme="dark"] .nx-alastyr-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    background: rgba(30, 41, 59, 0.85);
}

.nx-alastyr-card-icon {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.2s ease;
}

.nx-alastyr-card-icon.blue   { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.nx-alastyr-card-icon.cyan   { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.nx-alastyr-card-icon.pink   { background: rgba(253, 23, 158, 0.12); color: #fd179e; }
.nx-alastyr-card-icon.green  { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.nx-alastyr-card-icon.orange { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.nx-alastyr-card-icon.purple { background: rgba(147, 51, 234, 0.12); color: #9333ea; }

.nx-alastyr-card:hover .nx-alastyr-card-icon {
    transform: scale(1.08);
}

.nx-alastyr-card-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
    transition: color 0.2s ease;
}

[data-bs-theme="dark"] .nx-alastyr-card-title {
    color: #f1f5f9;
}

.nx-alastyr-card:hover .nx-alastyr-card-title {
    color: var(--nx-primary);
}

.nx-alastyr-card-desc {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.45;
}

[data-bs-theme="dark"] .nx-alastyr-card-desc {
    color: #94a3b8;
}

/* Alastyr Info Box (Right Column) */
.nx-alastyr-infobox {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-bs-theme="dark"] .nx-alastyr-infobox {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

.nx-alastyr-infobox-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--nx-primary);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nx-alastyr-infobox-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nx-alastyr-infobox-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

[data-bs-theme="dark"] .nx-alastyr-infobox-link {
    color: #cbd5e1;
}

.nx-alastyr-infobox-link i {
    font-size: 0.85rem;
    color: var(--nx-primary);
    transition: transform 0.2s ease;
}

.nx-alastyr-infobox-link:hover {
    background: rgba(var(--nx-primary-rgb), 0.08);
    color: var(--nx-primary);
}

.nx-alastyr-infobox-link:hover i {
    transform: translateX(3px);
}

.nx-alastyr-support-callout {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

[data-bs-theme="dark"] .nx-alastyr-support-callout {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* Submenu Mega Grid & Item Overrides */
.nx-mega-alastyr .nav-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0;
}

.nx-mega-alastyr .nav-mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.nx-mega-alastyr .nav-mega-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nx-primary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
}

[data-bs-theme="dark"] .nx-mega-alastyr .nav-mega-label {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nx-mega-alastyr .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: normal;
}

[data-bs-theme="dark"] .nx-mega-alastyr .dropdown-item {
    background: rgba(30, 41, 59, 0.45);
    border-color: rgba(255, 255, 255, 0.06);
}

.nx-mega-alastyr .dropdown-item:hover {
    border-color: var(--nx-primary);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

[data-bs-theme="dark"] .nx-mega-alastyr .dropdown-item:hover {
    background: rgba(30, 41, 59, 0.85);
    border-color: var(--nx-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nx-mega-alastyr .icon-disc,
.nx-mega-alastyr .nav-icon-disc {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    background: rgba(var(--nx-primary-rgb), 0.1);
    color: var(--nx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.nx-mega-alastyr .item-title {
    font-size: 0.885rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    line-height: 1.35;
}

.nx-mega-alastyr .item-title .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

[data-bs-theme="dark"] .nx-mega-alastyr .item-title {
    color: #f1f5f9;
}

.nx-mega-alastyr .dropdown-item:hover .item-title {
    color: var(--nx-primary);
}

.nx-mega-alastyr .item-desc {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
    line-height: 1.4;
    margin-top: 3px;
    white-space: normal;
    word-break: break-word;
}

[data-bs-theme="dark"] .nx-mega-alastyr .item-desc {
    color: #94a3b8;
}

/* Mega Menu Footer Quick Links */
.nx-mega-alastyr .nav-mega-foot {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid #e2e8f0;
}

.nx-mega-alastyr .nav-mega-foot a,
.nx-mega-alastyr .nav-mega-foot-link {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--nx-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    background: rgba(var(--nx-primary-rgb), 0.06);
    transition: all 0.2s ease;
}

.nx-mega-alastyr .nav-mega-foot a:hover,
.nx-mega-alastyr .nav-mega-foot-link:hover {
    background: var(--nx-primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--nx-primary-rgb), 0.25);
}

[data-bs-theme="dark"] .nx-mega-alastyr .nav-mega-foot {
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .nx-mega-alastyr .nav-mega-foot a,
[data-bs-theme="dark"] .nx-mega-alastyr .nav-mega-foot-link {
    background: rgba(30, 41, 59, 0.6);
    color: #93c5fd;
}

[data-bs-theme="dark"] .nx-mega-alastyr .nav-mega-foot a:hover,
[data-bs-theme="dark"] .nx-mega-alastyr .nav-mega-foot-link:hover {
    background: var(--nx-primary);
    color: #ffffff;
}

/* Page Hero Global Spacing & High-Contrast Typography */
.page-hero {
    position: relative;
    overflow: hidden;
    padding-top: 3.75rem;
    padding-bottom: 3.5rem;
    background-color: #0b1329;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero.page-hero-plain {
    background: linear-gradient(135deg, #0b1329 0%, #1e293b 50%, #0f172a 100%);
}

.page-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.page-hero-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(11, 19, 41, 0.88) 0%, rgba(15, 23, 42, 0.82) 50%, rgba(7, 12, 24, 0.92) 100%);
    pointer-events: none;
}

.page-hero > .container {
    position: relative;
    z-index: 3;
}

.page-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

[data-bs-theme="dark"] .page-hero-title {
    color: #ffffff !important;
}

.page-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88) !important;
    max-width: 720px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

[data-bs-theme="dark"] .page-hero-lead {
    color: rgba(255, 255, 255, 0.92) !important;
}

.page-hero .breadcrumb {
    font-size: 0.825rem;
    margin-bottom: 0.75rem;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

.page-hero .breadcrumb-item a:hover {
    color: #60a5fa !important;
}

.page-hero .breadcrumb-item.active {
    color: #93c5fd !important;
    font-weight: 600;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45) !important;
}

.page-hero .reveal-3 span,
.page-hero .ref-hero-cat {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(8px);
}

/* ==========================================================================
   Global Category SEO Content & Feature Blocks (.category-content)
   ========================================================================== */
.category-content {
    color: var(--nx-text-primary, #1e293b);
    line-height: 1.7;
}

.category-content .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

.category-content .why-we {
    padding: 1.5rem 0 2rem;
}

.category-content .why-we.white-bg {
    background: transparent !important;
}

/* Section Header in SEO Block */
.category-content .section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem auto;
}

.category-content .section-title h2,
.category-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.category-content .section-title p,
.category-content > p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why-We / SEO Features Grid */
.category-content .why-we-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.75rem !important;
    margin-bottom: 1.5rem !important;
}

@media (max-width: 1199.98px) {
    .category-content .why-we-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767.98px) {
    .category-content .why-we-list {
        grid-template-columns: 1fr !important;
    }
}

/* Feature Item Card */
.category-content .why-we-list .list-item {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    padding: 1.75rem !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    height: auto !important;
    min-height: 110px !important;
}

.category-content .why-we-list .list-item:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(var(--nx-primary-rgb), 0.4) !important;
    box-shadow: 0 16px 36px rgba(var(--nx-primary-rgb), 0.08) !important;
}

/* Feature Icon Disc */
.category-content .list-item .icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(var(--nx-primary-rgb), 0.12) 0%, rgba(6, 182, 212, 0.08) 100%) !important;
    border: 1px solid rgba(var(--nx-primary-rgb), 0.18) !important;
    box-shadow: 0 4px 12px rgba(var(--nx-primary-rgb), 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

.category-content .why-we-list .list-item:hover .icon {
    background: var(--nx-primary) !important;
    border-color: var(--nx-primary) !important;
    box-shadow: 0 6px 18px rgba(var(--nx-primary-rgb), 0.35) !important;
}

.category-content .list-item .icon img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
    filter: brightness(0) saturate(100%) invert(26%) sepia(91%) saturate(2335%) hue-rotate(213deg) brightness(97%) contrast(106%);
    transition: filter 0.25s ease !important;
}

.category-content .why-we-list .list-item:hover .icon img {
    filter: brightness(0) invert(1) !important;
}

/* Feature Item Text */
.category-content .list-item .text {
    flex: 1 !important;
    min-width: 0 !important;
}

.category-content .list-item .text span {
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 0.45rem !important;
    line-height: 1.35 !important;
}

.category-content .list-item .text p {
    font-size: 0.875rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* Dark Mode Overrides for SEO Content */
[data-bs-theme="dark"] .category-content .section-title h2,
[data-bs-theme="dark"] .category-content h2 {
    color: #f8fafc;
}

[data-bs-theme="dark"] .category-content .section-title p,
[data-bs-theme="dark"] .category-content > p {
    color: #94a3b8;
}

[data-bs-theme="dark"] .category-content .why-we-list .list-item {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-bs-theme="dark"] .category-content .why-we-list .list-item:hover {
    border-color: var(--nx-primary) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7) !important;
}

[data-bs-theme="dark"] .category-content .list-item .icon {
    background: rgba(30, 41, 59, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .category-content .list-item .icon img {
    filter: brightness(0) invert(1) !important;
}

[data-bs-theme="dark"] .category-content .list-item .text span {
    color: #f1f5f9 !important;
}

[data-bs-theme="dark"] .category-content .list-item .text p {
    color: #94a3b8 !important;
}

/* ==========================================================================
   Band Dark Sections (Features Included Across Packages)
   ========================================================================== */
.band-dark {
    background: #0b1329;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.band-dark .section-head .eyebrow {
    color: var(--nx-secondary, #06b6d4);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.band-dark .section-head h2 {
    color: #ffffff;
    font-weight: 800;
}

.band-dark .section-head .section-lead {
    color: #94a3b8;
}

.band-dark .card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.band-dark .card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(var(--nx-primary-rgb), 0.5) !important;
    transform: translateY(-3px);
}

.band-dark .card h3 {
    color: #ffffff;
}

.band-dark .card p {
    color: #94a3b8 !important;
}

.band-dark .icon-disc {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(var(--nx-primary-rgb), 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ==========================================================================
   NEXPURE INNER PAGES, SERVICE PLANS & SEO SECTIONS
   ========================================================================== */

/* 1. PLAN ROWS (Row Layout for Certificates, Licenses, Hosting etc.) */
.plan-rows {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.plan-row {
    background: var(--wstyle-surface-bg, #ffffff) !important;
    border: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    border-radius: 16px !important;
    padding: 1.35rem 1.65rem !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.plan-row:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.35) !important;
    box-shadow: 0 12px 30px -4px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.12) !important;
}

.plan-row.plan-popular {
    border: 2px solid var(--nx-primary, #0052ff) !important;
    box-shadow: 0 8px 25px -4px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.15) !important;
}

.plan-row-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.plan-row-id {
    flex: 1 1 200px;
    min-width: 180px;
}

.plan-row-id h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wstyle-heading-color, #0f172a);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.plan-row-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-align: center;
    padding: 0 0.5rem;
}

.plan-row-spec span:first-child {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--wstyle-heading-color, #0f172a);
}

.plan-row-spec span:last-child {
    font-size: 0.78rem;
    color: var(--wstyle-muted-color, #64748b);
}

.plan-row-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 140px;
    text-align: right;
}

.plan-row-price .price-now {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nx-primary, #0052ff);
    letter-spacing: -0.02em;
}

.plan-row-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.plan-row-actions .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    transition: all 0.2s ease;
}

.plan-row-actions .btn-soft {
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.08) !important;
    color: var(--nx-primary, #0052ff) !important;
    border: 1px solid rgba(var(--nx-primary-rgb, 0, 82, 255), 0.15) !important;
}

.plan-row-actions .btn-soft:hover {
    background: var(--nx-primary, #0052ff) !important;
    color: #ffffff !important;
    border-color: var(--nx-primary, #0052ff) !important;
    box-shadow: 0 4px 12px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.3);
}

.plan-row-actions .billing-compare {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.plan-row-actions .billing-compare i {
    transition: transform 0.25s ease;
}

.plan-row-actions .billing-compare:not(.collapsed) i {
    transform: rotate(180deg);
}

.plan-row-details {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--wstyle-border-color, #e2e8f0);
}

.plan-row-chips {
    margin-bottom: 1rem;
}

.plan-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.06);
    color: var(--nx-primary, #0052ff);
    border: 1px solid rgba(var(--nx-primary-rgb, 0, 82, 255), 0.12);
}

.plan-billing-table {
    border-radius: 10px;
    overflow: hidden;
    background: var(--wstyle-body-bg, #f8fafc);
}

.plan-billing-table th {
    background: rgba(0, 0, 0, 0.03);
    padding: 0.6rem 0.85rem;
    font-weight: 700;
    color: var(--wstyle-heading-color, #0f172a);
}

.plan-billing-table td {
    padding: 0.6rem 0.85rem;
    color: var(--wstyle-body-color, #334155);
}

/* 2. PLAN GRID (Cards Layout) */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}

.plan-card {
    background: var(--wstyle-surface-bg, #ffffff) !important;
    border: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -8px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.15) !important;
    border-color: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.35) !important;
}

.plan-card.plan-popular {
    border: 2px solid var(--nx-primary, #0052ff) !important;
    box-shadow: 0 12px 30px -5px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.2) !important;
}

.plan-badge .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--nx-primary, #0052ff) 0%, var(--nx-secondary, #06b6d4) 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.3);
}

.plan-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--wstyle-heading-color, #0f172a);
}

.plan-card .price-now {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--nx-primary, #0052ff);
    letter-spacing: -0.03em;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--wstyle-body-color, #334155);
}

.plan-features li i {
    color: var(--nx-primary, #0052ff);
    font-size: 1.1rem;
    font-weight: bold;
}

/* 3. SEO CATEGORY CONTENT (.why-we & .our-features) */
.category-content {
    margin-top: 1rem;
}

.category-content .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-content .section-title h2 {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--wstyle-heading-color, #0f172a);
    margin-bottom: 0.5rem;
}

.category-content .section-title p {
    font-size: 1rem;
    color: var(--wstyle-muted-color, #64748b);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-content .why-we {
    padding-block: 2.5rem;
}

.category-content .why-we-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.category-content .why-we-list .list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--wstyle-surface-bg, #ffffff);
    border: 1px solid var(--wstyle-border-color, #e2e8f0);
    border-radius: 16px;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
    transition: all 0.25s ease;
}

.category-content .why-we-list .list-item:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.35);
    box-shadow: 0 10px 25px -4px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.1);
}

.category-content .why-we-list .list-item .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.category-content .why-we-list .list-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-content .why-we-list .list-item .text span {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--wstyle-heading-color, #0f172a);
    margin-bottom: 0.35rem;
}

.category-content .why-we-list .list-item .text p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--wstyle-muted-color, #64748b);
    line-height: 1.55;
}

.category-content .our-features {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--wstyle-border-color, #e2e8f0);
}

.category-content .our-features-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: center;
}

@media (max-width: 991.98px) {
    .category-content .our-features-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.category-content .our-features-wrap .image {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.03) 0%, rgba(6, 182, 212, 0.06) 100%);
    padding: 2rem;
    border: 1px solid var(--wstyle-border-color, #e2e8f0);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
}

.category-content .our-features-wrap .image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-content .tab-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    background: var(--wstyle-body-bg, #f1f5f9);
    padding: 5px;
    border-radius: 12px;
    width: fit-content;
    border: 1px solid var(--wstyle-border-color, #e2e8f0);
}

.category-content .tab-buttons button {
    background: transparent;
    border: none;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--wstyle-muted-color, #64748b);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-content .tab-buttons button:hover {
    color: var(--nx-primary, #0052ff);
}

.category-content .tab-buttons button.active {
    background: var(--wstyle-surface-bg, #ffffff);
    color: var(--nx-primary, #0052ff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

.category-content .tab-content {
    display: none;
    padding: 0;
    background: transparent;
    border: none;
}

.category-content .tab-content.show-tab,
.category-content .tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.category-content .tab-content h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--wstyle-heading-color, #0f172a);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.category-content .tab-content p {
    font-size: 0.96rem;
    color: var(--wstyle-body-color, #334155);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* 4. KNOWLEDGEBASE MODERN STYLES */
.kb-search-panel {
    background: var(--wstyle-surface-bg, #ffffff) !important;
    border: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06) !important;
}

.kb-search .form-control {
    border-radius: 12px !important;
    border: 1.5px solid var(--wstyle-border-color, #e2e8f0) !important;
    font-size: 1rem !important;
    transition: all 0.2s ease !important;
}

.kb-search .form-control:focus {
    border-color: var(--nx-primary, #0052ff) !important;
    box-shadow: 0 0 0 4px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.15) !important;
}

.kb-search .btn-primary {
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--nx-primary, #0052ff) 0%, var(--nx-secondary, #06b6d4) 100%) !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.3) !important;
}

.kb-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.kb-article {
    background: var(--wstyle-surface-bg, #ffffff) !important;
    border: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    border-radius: 16px !important;
    padding: 1.25rem 1.4rem !important;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.kb-article:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.35) !important;
    box-shadow: 0 12px 25px -4px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.12) !important;
}

.kb-article-ico {
    border-radius: 12px !important;
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.08) !important;
    color: var(--nx-primary, #0052ff) !important;
}

.kb-cat-card {
    background: var(--wstyle-surface-bg, #ffffff) !important;
    border: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.25s ease !important;
}

.kb-cat-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.35) !important;
    box-shadow: 0 12px 25px -4px rgba(var(--nx-primary-rgb, 0, 82, 255), 0.12) !important;
}

.kb-cat-ico {
    border-radius: 14px !important;
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.08) !important;
    color: var(--nx-primary, #0052ff) !important;
}

/* 5. BILLING TOGGLE (Aylık / Yıllık) */
.billing-toggle {
    display: inline-flex;
    background: var(--wstyle-body-bg, #f1f5f9);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--wstyle-border-color, #e2e8f0);
    gap: 4px;
}

.billing-toggle .billing-option {
    border: none;
    background: transparent;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wstyle-muted-color, #64748b);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-toggle .billing-option:hover {
    color: var(--nx-primary, #0052ff);
}

.billing-toggle .billing-option.active {
    background: var(--wstyle-surface-bg, #ffffff);
    color: var(--nx-primary, #0052ff);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

/* 6. HOSTING & LICENSES COMPARISON TABLE (.hosting-table) */
.hosting-table {
    background: transparent !important;
    padding: 2.5rem 0 !important;
    margin: 0 !important;
}

.hosting-table .container {
    display: flex !important;
    align-items: flex-start !important;
    overflow-x: auto !important;
    padding: 1.5rem !important;
    background: var(--wstyle-surface-bg, #ffffff) !important;
    border: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
}

.hosting-table .table-left {
    width: 260px !important;
    min-width: 240px !important;
    flex-shrink: 0 !important;
    padding-top: 60px !important;
}

.hosting-table .table-left span {
    width: 100% !important;
    height: 48px !important;
    background: rgba(0, 82, 255, 0.02) !important;
    padding: 0 1.25rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    color: var(--wstyle-heading-color, #0f172a) !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
}

.hosting-table .table-right {
    display: flex !important;
    flex: 1 !important;
    min-width: 450px !important;
}

.hosting-table .right-col {
    flex: 1 !important;
    text-align: center !important;
    border-left: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
}

.hosting-table .col-head {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 60px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--wstyle-heading-color, #0f172a) !important;
    border-bottom: 2px solid var(--nx-primary, #0052ff) !important;
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.04) !important;
}

.hosting-table .col-body span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    border-bottom: 1px solid var(--wstyle-border-color, #e2e8f0) !important;
    font-size: 0.875rem !important;
    color: var(--wstyle-body-color, #334155) !important;
}

[data-bs-theme="dark"] .hosting-table .container {
    background: var(--wstyle-surface-bg, #0f172a) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="dark"] .hosting-table .table-left span,
[data-bs-theme="dark"] .hosting-table .col-body span {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="dark"] .hosting-table .right-col {
    border-left-color: rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="dark"] .hosting-table .col-head {
    background: rgba(var(--nx-primary-rgb, 0, 82, 255), 0.1) !important;
    border-bottom-color: var(--nx-primary, #0052ff) !important;
}

/* ==========================================================================
   14. GLOBAL SCROLL & ANCHOR NAVIGATION PADDING
   ========================================================================== */
html {
    scroll-padding-top: 90px;
}

/* ==========================================================================
   15. 3-COLUMN FEATURE SHOWCASE (DATAWISE & NEXPURE COMPATIBLE)
   ========================================================================== */
.fon-main-section,
.nx-showcase-section {
    position: relative;
    padding: 4.5rem 0;
}

.fon-section-title,
.nx-showcase-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.fon-section-title-heading,
.nx-showcase-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.fon-section-title-heading small,
.nx-showcase-badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--nx-primary, #2563eb);
    background: rgba(var(--nx-primary-rgb, 37, 99, 235), 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

[data-bs-theme="dark"] .fon-section-title-heading,
[data-bs-theme="dark"] .nx-showcase-title {
    color: #f8fafc;
}

.fon-section-title-subheading,
.nx-showcase-desc {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

[data-bs-theme="dark"] .fon-section-title-subheading,
[data-bs-theme="dark"] .nx-showcase-desc {
    color: #94a3b8;
}

/* Feature Box / Showcase Cards */
.fon-feature-box-widget {
    margin-bottom: 1.5rem;
}

.feature-box,
.nx-showcase-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: inherit;
    text-decoration: none;
}

[data-bs-theme="dark"] .feature-box,
[data-bs-theme="dark"] .nx-showcase-card {
    background: #131c31;
    border-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.feature-box:hover,
.nx-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--nx-primary-rgb, 37, 99, 235), 0.35);
}

[data-bs-theme="dark"] .feature-box:hover,
[data-bs-theme="dark"] .nx-showcase-card:hover {
    border-color: rgba(var(--nx-primary-rgb, 37, 99, 235), 0.5);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

/* Direction Alignment */
.feature-box.media-right,
.nx-showcase-card.media-right {
    flex-direction: row-reverse;
    text-align: end;
}

.feature-box.media-left,
.nx-showcase-card.media-left {
    flex-direction: row;
    text-align: start;
}

@media (max-width: 991px) {
    .feature-box.media-right,
    .nx-showcase-card.media-right {
        flex-direction: row;
        text-align: start;
    }
}

/* Feature Box Media / Icons */
.feature-box-media,
.nx-showcase-icon-wrap {
    flex-shrink: 0;
}

.feature-box-media-container,
.nx-showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(var(--nx-primary-rgb, 37, 99, 235), 0.08);
    color: var(--nx-primary, #2563eb);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .feature-box-media-container,
[data-bs-theme="dark"] .nx-showcase-icon {
    background: rgba(var(--nx-primary-rgb, 37, 99, 235), 0.18);
    color: #60a5fa;
}

.feature-box:hover .feature-box-media-container,
.nx-showcase-card:hover .nx-showcase-icon {
    background: var(--nx-primary, #2563eb);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
}

/* Feature Box Typography */
.feature-box-content,
.nx-showcase-card-body {
    flex-grow: 1;
}

.feature-box-title,
.nx-showcase-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
    letter-spacing: -0.015em;
}

[data-bs-theme="dark"] .feature-box-title,
[data-bs-theme="dark"] .nx-showcase-card-title {
    color: #f8fafc;
}

.feature-box-desc,
.nx-showcase-card-desc {
    font-size: 0.8875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

[data-bs-theme="dark"] .feature-box-desc,
[data-bs-theme="dark"] .nx-showcase-card-desc {
    color: #94a3b8;
}

.feature-box-desc p,
.nx-showcase-card-desc p {
    margin: 0;
}

/* Feature Highlight / Callout Card */
.feature-box.highlight,
.feature-box.featured-highlight,
.nx-showcase-card.is-highlight,
.nx-showcase-card.highlight-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.28) !important;
}

.feature-box.highlight .feature-box-title,
.feature-box.featured-highlight .feature-box-title,
.nx-showcase-card.is-highlight .nx-showcase-card-title {
    color: #ffffff !important;
}

.feature-box.highlight .feature-box-desc,
.feature-box.featured-highlight .feature-box-desc,
.nx-showcase-card.is-highlight .nx-showcase-card-desc {
    color: rgba(255, 255, 255, 0.92) !important;
}

.feature-box.highlight .feature-box-media-container,
.feature-box.featured-highlight .feature-box-media-container,
.nx-showcase-card.is-highlight .nx-showcase-icon {
    background: #ffffff !important;
    color: #ea580c !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.feature-box.highlight:hover,
.nx-showcase-card.is-highlight:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 35px rgba(234, 88, 12, 0.38) !important;
}

/* Additional Color Variants */
.nx-showcase-card.highlight-blue {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.28) !important;
}
.nx-showcase-card.highlight-blue .nx-showcase-card-title,
.nx-showcase-card.highlight-blue .nx-showcase-card-desc {
    color: #ffffff !important;
}
.nx-showcase-card.highlight-blue .nx-showcase-icon {
    background: #ffffff !important;
    color: #2563eb !important;
}

.nx-showcase-card.highlight-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.28) !important;
}
.nx-showcase-card.highlight-purple .nx-showcase-card-title,
.nx-showcase-card.highlight-purple .nx-showcase-card-desc {
    color: #ffffff !important;
}
.nx-showcase-card.highlight-purple .nx-showcase-icon {
    background: #ffffff !important;
    color: #7c3aed !important;
}

/* Center Image / Character Showcase */
.fon-image-widget,
.nx-showcase-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.fon-image-widget img,
.nx-showcase-center img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.nx-showcase-center:hover img {
    transform: translateY(-6px);
}





