:root {
    --primary-bg: #09070f;
    --secondary-bg: #120e1e;
    --primary-accent: #a855f7;
    --secondary-accent: #ec4899;
    --text-light-bg-primary: #1f2937;
    --text-light-bg-secondary: #4b5563;
    --text-dark-bg-primary: #f3f4f6;
    --text-dark-bg-secondary: #9ca3af;
    --shadow-outer-glow: 0 8px 30px rgba(168, 85, 247, 0.15);
    --shadow-inner-recessed: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    --shadow-tactile-raised: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
}

.site-body {
    background-color: var(--primary-bg);
    color: var(--text-dark-bg-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    box-sizing: border-box;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-dark-bg-secondary) !important;
}

.tactile-card {
    background-color: var(--secondary-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-tactile-raised);
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 2rem;
}

.tactile-btn {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-tactile-raised);
    text-decoration: none;
    display: inline-block;
}

.recessed-field {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    color: var(--text-dark-bg-primary);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-inner-recessed);
}

/* ===== header ===== */
.literature-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #09070f;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.literature-header .header-top-bar {
    background-color: #120e1e;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    font-size: 0.85rem;
    color: #9ca3af;
}

.literature-header .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
}

.literature-header .contact-link:hover {
    color: #a855f7;
}

.literature-header .whatsapp-link {
    color: #ec4899;
}

.literature-header .whatsapp-link:hover {
    color: #f472b6;
}

.literature-header .main-navbar {
    background-color: #09070f;
    padding: 0.75rem 0;
}

.literature-header .header-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.literature-header .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #f3f4f6;
    letter-spacing: -0.02em;
}

.literature-header .nav-link {
    color: #9ca3af;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.literature-header .nav-link:hover,
.literature-header .nav-link.active {
    color: #f3f4f6;
    background-color: rgba(168, 85, 247, 0.1);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8), inset -1px -1px 3px rgba(255, 255, 255, 0.05);
}

.literature-header .navbar-toggler {
    border: 1px solid rgba(168, 85, 247, 0.3);
    background-color: #120e1e;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
}

.literature-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    outline: none;
}

.literature-header .btn-cta {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(168, 85, 247, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.literature-header .btn-cta:hover {
    background: linear-gradient(135deg, #b55fe6 0%, #f43f5e 100%);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.4);
}

.literature-header .nav-contact-item {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.literature-header .whatsapp-mobile-link {
    color: #ec4899;
}

/* ===== hero ===== */
.hero-section {
    background-image: url('../files/media/content/literature-decision-hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 120px 0 80px 0;
    background-color: #09070f;
    color: #f3f4f6;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 7, 15, 0.95) 0%, rgba(18, 14, 30, 0.9) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-badge {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a855f7;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(168, 85, 247, 0.1);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #f3f4f6 30%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: #9ca3af;
    max-width: 600px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    height: 52px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #f3f4f6;
    border: none;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35), 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #b566ff 0%, #f45eb3 100%);
    color: #f3f4f6;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.45);
    transform: translateY(-1px);
}

.hero-btn-primary:active {
    transform: translateY(1px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-btn-secondary {
    background-color: #120e1e;
    color: #f3f4f6;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03);
}

.hero-btn-secondary:hover {
    border-color: rgba(168, 85, 247, 0.5);
    color: #a855f7;
    box-shadow: 6px 6px 15px rgba(168, 85, 247, 0.15);
}

.hero-console-card {
    background-color: #120e1e;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.08);
}

.console-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.console-dot.red {
    background-color: #ef4444;
}

.console-dot.yellow {
    background-color: #f59e0b;
}

.console-dot.green {
    background-color: #10b981;
}

.console-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.05em;
}

.console-display {
    background-color: #09070f;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.display-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #9ca3af;
    letter-spacing: 0.1em;
}

.console-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    transition: all 0.15s ease;
}

.console-light.included {
    background-color: #10b981;
    box-shadow: 0 0 12px #10b981;
}

.display-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-top: 5px;
}

.control-group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #a855f7;
    letter-spacing: 0.05em;
}

.console-toggle-wrapper {
    background-color: #09070f;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.6);
    transition: border-color 0.15s ease;
}

.console-toggle-wrapper:hover {
    border-color: rgba(168, 85, 247, 0.2);
}

.toggle-label {
    font-size: 0.85rem;
    color: #f3f4f6;
    user-select: none;
}

.toggle-input {
    display: none;
}

.toggle-button {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #120e1e;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
    transition: all 0.15s ease;
}

.toggle-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #9ca3af;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease;
}

.toggle-input:checked+.toggle-button {
    background-color: #a855f7;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.toggle-input:checked+.toggle-button::after {
    left: 22px;
    background-color: #f3f4f6;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* ===== case-collections ===== */
.case-collections-section {
    background-color: #09070f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
}

.case-collections-section .cc-badge {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid #a855f7;
    color: #a855f7;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.case-collections-section .cc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: #f3f4f6;
}

.case-collections-section .cc-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9ca3af;
}

.case-collections-section .cc-tabs-container {
    background: #120e1e;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    max-width: fit-content;
    margin: 0 auto;
}

.case-collections-section .cc-tab-btn {
    background: transparent;
    border: none;
    border-radius: 40px;
    color: #9ca3af;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.case-collections-section .cc-tab-btn:hover {
    color: #f3f4f6;
}

.case-collections-section .cc-tab-btn.active {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.case-collections-section .cc-card {
    background: #120e1e;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.case-collections-section .cc-card:hover {
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 20px rgba(168, 85, 247, 0.25);
    transform: translateY(-2px);
}

.case-collections-section .cc-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-collections-section .cc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-collections-section .cc-card:hover .cc-card-img {
    transform: scale(1.03);
}

.case-collections-section .cc-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(9, 7, 15, 0.85);
    border: 1px solid #a855f7;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-collections-section .cc-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-collections-section .cc-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.case-collections-section .cc-card-title a {
    color: #f3f4f6;
    transition: color 0.2s ease;
}

.case-collections-section .cc-card-title a:hover {
    color: #a855f7;
}

.case-collections-section .cc-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 24px;
}

.case-collections-section .cc-btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    display: inline-block;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.case-collections-section .cc-btn-primary:hover {
    opacity: 0.95;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.case-collections-section .text-secondary-custom {
    color: #9ca3af !important;
}

@media (max-width: 991.98px) {
    .case-collections-section .cc-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .case-collections-section {
        padding: 60px 0;
    }

    .case-collections-section .cc-title {
        font-size: 1.6rem;
    }

    .case-collections-section .cc-card-title {
        font-size: 1.15rem;
    }

    .case-collections-section .cc-tabs-container {
        border-radius: 20px;
        padding: 10px;
        width: 100%;
    }

    .case-collections-section .cc-tab-btn {
        flex: 1 1 auto;
        padding: 8px 14px;
        font-size: 0.85rem;
        text-align: center;
    }
}

/* ===== case-examples ===== */
.case-examples-section {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.case-examples-section .section-badge {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.case-examples-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #f3f4f6;
    letter-spacing: -0.02em;
}

.case-examples-section .section-subtitle {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.6;
}

.case-examples-section .filter-panel {
    background: #120e1e;
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.case-examples-section .search-box-wrapper {
    position: relative;
}

.case-examples-section .search-box-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.2rem;
}

.case-examples-section .js-search-input {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 12px 20px 12px 48px;
    color: #f3f4f6;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.case-examples-section .js-search-input:focus {
    background-color: #09070f;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.25);
    color: #f3f4f6;
    outline: none;
}

.case-examples-section .js-search-input::placeholder {
    color: #6b7280;
}

.case-examples-section .filter-tab-btn {
    background: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #9ca3af;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.case-examples-section .filter-tab-btn:hover {
    color: #f3f4f6;
    border-color: #a855f7;
}

.case-examples-section .filter-tab-btn.active {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    border-color: transparent;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3), 0 0 15px rgba(168, 85, 247, 0.3);
}

.case-examples-section .case-card {
    background: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: none;
}

.case-examples-section .case-card:hover {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05), 0 0 20px rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.3);
}

.case-examples-section .card-img-link {
    display: block;
    overflow: hidden;
    position: relative;
    height: 220px;
}

.case-examples-section .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.case-examples-section .card-body-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-examples-section .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.case-examples-section .card-meta i {
    color: #a855f7;
}

.case-examples-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.case-examples-section .card-title a {
    color: #f3f4f6;
    text-decoration: none;
}

.case-examples-section .card-title a:hover {
    color: #ec4899;
}

.case-examples-section .card-excerpt {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.case-examples-section .card-footer-action {
    margin-top: auto;
}

.case-examples-section .case-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(255, 255, 255, 0.03);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.case-examples-section .case-btn:hover {
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #9333ea, #db2777);
    color: #ffffff;
}

.case-examples-section .text-purple {
    color: #a855f7;
}

.case-examples-section .text-secondary {
    color: #9ca3af;
}

@media (max-width: 768px) {
    .case-examples-section .section-title {
        font-size: 1.75rem;
    }

    .case-examples-section .card-title {
        font-size: 1.15rem;
    }
}

/* ===== tools-platforms ===== */
.tools-platforms-section {
    background-color: #09070f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f3f4f6;
}

.tools-platforms-section .text-light-primary {
    color: #f3f4f6 !important;
}

.tools-platforms-section .text-light-secondary {
    color: #9ca3af !important;
}

.tools-platforms-section .badge-accent {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tools-platforms-section .section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tools-platforms-section .tactile-card {
    background-color: #120e1e;
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 2rem;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
    transition: border-color 0.2s ease;
}

.tools-platforms-section .tactile-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.tools-platforms-section .icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    font-size: 1.5rem;
}

.tools-platforms-section .status-indicator {
    font-size: 0.75rem;
    color: #ec4899;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tools-platforms-section .version-badge {
    background: #09070f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tools-platforms-section .version-badge:hover,
.tools-platforms-section .version-badge.active {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(168, 85, 247, 0.15);
}

.tools-platforms-section .version-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.tools-platforms-section .version-number {
    font-size: 1rem;
    color: #f3f4f6;
}

.tools-platforms-section .text-accent-pink {
    color: #ec4899;
}

.tools-platforms-section .text-accent-purple {
    color: #a855f7;
}

.tools-platforms-section .compatibility-alert {
    background: rgba(236, 72, 153, 0.05);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.tools-platforms-section .fs-7 {
    font-size: 0.85rem;
}

.tools-platforms-section .compatibility-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tools-platforms-section .btn-tactile {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #f3f4f6;
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4), 0 0 15px rgba(168, 85, 247, 0.2);
    transition: all 0.2s ease;
}

.tools-platforms-section .btn-tactile:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(236, 72, 153, 0.45);
    transform: translateY(1px);
    color: #ffffff;
}

/* ===== cost-calculator ===== */
.lit-calc-section {
    background-color: #09070f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f3f4f6;
}

.lit-calc-badge {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a855f7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lit-calc-title {
    color: #f3f4f6;
    font-weight: 800;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

.lit-calc-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
}

.lit-calc-card {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
}

.lit-calc-card.result-card {
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(236, 72, 153, 0.05);
}

.lit-calc-card-title {
    color: #f3f4f6;
    font-weight: 700;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.lit-calc-card-title i {
    color: #a855f7;
}

.lit-calc-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #f3f4f6;
}

.lit-calc-value-highlight {
    color: #ec4899;
    font-weight: 700;
}

.range-slider-wrapper {
    background: #09070f;
    border-radius: 16px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.lit-calc-section .form-range {
    height: 6px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 3px;
}

.lit-calc-section .form-range::-webkit-slider-thumb {
    background: #ec4899;
    border: 2px solid #a855f7;
    box-shadow: 0 0 10px #ec4899;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.1s ease;
}

.lit-calc-section .form-range::-moz-range-thumb {
    background: #ec4899;
    border: 2px solid #a855f7;
    box-shadow: 0 0 10px #ec4899;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
}

.lit-calc-range-labels {
    font-size: 0.75rem;
    color: #9ca3af;
}

.lit-calc-select {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #f3f4f6;
    border-radius: 12px;
    padding: 12px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.lit-calc-select:focus {
    background-color: #09070f;
    border-color: #a855f7;
    color: #f3f4f6;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3), inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.lit-calc-checkbox-card {
    background: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.lit-calc-checkbox-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.lit-calc-checkbox-card input[type="checkbox"] {
    background-color: #09070f;
    border: 2px solid rgba(168, 85, 247, 0.5);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.lit-calc-checkbox-card input[type="checkbox"]:checked {
    background-color: #a855f7;
    border-color: #a855f7;
}

.checkbox-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f3f4f6;
}

.checkbox-desc {
    font-size: 0.75rem;
    color: #9ca3af;
}

.lit-calc-price-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.05);
}

.price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f3f4f6;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

.price-note {
    font-size: 0.75rem;
    color: #9ca3af;
}

.text-secondary-custom {
    color: #9ca3af;
    font-size: 0.9rem;
}

.text-light-custom {
    color: #f3f4f6;
    font-weight: 600;
    font-size: 0.9rem;
}

.lit-calc-input {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #f3f4f6;
    border-radius: 12px;
    padding: 12px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.lit-calc-input:focus {
    background-color: #09070f;
    border-color: #a855f7;
    color: #f3f4f6;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3), inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.lit-calc-input::placeholder {
    color: #4b5563;
    opacity: 1;
}

.lit-calc-btn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.lit-calc-btn:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
    color: #ffffff;
}

.lit-calc-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

@media (max-width: 767.98px) {
    .lit-calc-title {
        font-size: 1.75rem;
    }

    .lit-calc-subtitle {
        font-size: 0.95rem;
    }

    .lit-calc-card {
        padding: 24px 16px !important;
    }

    .price-value {
        font-size: 2rem;
    }
}

/* ===== work-formats ===== */
.work-formats-section {
    background-color: #09070f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f3f4f6;
    padding: 80px 0;
}

.work-formats-section .badge-accent {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #ec4899;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
}

.work-formats-section .section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 2.25rem;
    color: #f3f4f6;
}

.work-formats-section .section-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
}

.work-formats-section .tactile-tabs-container {
    background: #120e1e;
    border-radius: 16px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.work-formats-section .tab-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.work-formats-section .tab-btn.active {
    background: #120e1e;
    color: #f3f4f6;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 10px rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.work-formats-section .format-card {
    background: #120e1e;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.work-formats-section .format-card.active {
    background: #09070f;
    border-color: #a855f7;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05), 0 0 20px rgba(168, 85, 247, 0.25);
}

.work-formats-section .format-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #09070f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #a855f7;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.work-formats-section .format-card.active .format-icon-wrapper {
    background: #120e1e;
    color: #ec4899;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.work-formats-section .format-title {
    font-size: 1.25rem;
    margin-bottom: 2px;
    font-weight: 700;
    color: #f3f4f6;
}

.work-formats-section .format-badge {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-formats-section .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ec4899;
    display: block;
}

.work-formats-section .price-period {
    font-size: 0.8rem;
    color: #9ca3af;
}

.work-formats-section .format-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.work-formats-section .format-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-formats-section .format-features li {
    font-size: 0.85rem;
    color: #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.work-formats-section .format-features li i {
    color: #a855f7;
}

.work-formats-section .inquiry-box-wrapper {
    background: #120e1e;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
}

.work-formats-section .inquiry-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f3f4f6;
}

.work-formats-section .inquiry-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.work-formats-section .form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 6px;
    display: block;
}

.work-formats-section .selected-format-display {
    background: #09070f;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.work-formats-section .badge-price {
    background: #a855f7;
    color: #f3f4f6;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.work-formats-section .form-control-custom {
    background: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    color: #f3f4f6;
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s ease;
}

.work-formats-section .form-control-custom:focus {
    border-color: #a855f7;
    outline: none;
}

.work-formats-section .form-control-custom::placeholder {
    color: #4b5563;
}

.work-formats-section .checkbox-custom {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 4px;
    background: #09070f;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.work-formats-section .checkbox-custom:checked::after {
    content: "\eb7b";
    font-family: 'remixicon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ec4899;
    font-size: 0.8rem;
    font-weight: bold;
}

.work-formats-section .label-checkbox-custom {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.4;
}

.work-formats-section .link-inline {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
}

.work-formats-section .link-inline:hover {
    text-decoration: underline;
}

.work-formats-section .btn-submit-tactile {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    border-radius: 12px;
    color: #f3f4f6;
    font-weight: 700;
    padding: 14px;
    font-size: 1rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(168, 85, 247, 0.2);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-formats-section .btn-submit-tactile:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(236, 72, 153, 0.4);
    transform: translateY(1px);
}

.work-formats-section .btn-submit-tactile:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
    transform: translateY(2px);
}

@media (max-width: 767.98px) {
    .work-formats-section {
        padding: 40px 0;
    }

    .work-formats-section .section-title {
        font-size: 1.75rem;
    }

    .work-formats-section .format-card-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .work-formats-section .format-price {
        text-align: left !important;
    }

    .work-formats-section .inquiry-box-wrapper {
        padding: 20px;
    }
}

/* ===== included-excluded ===== */
.scope-block {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 80px 0;
}

.scope-block .section-title {
    color: #f3f4f6;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.scope-block .section-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
}

.scope-block .scope-tab-btn {
    background: #120e1e;
    color: #9ca3af;
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.scope-block .scope-tab-btn:hover {
    border-color: rgba(168, 85, 247, 0.5);
    color: #f3f4f6;
}

.scope-block .scope-tab-btn.active {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    border-color: transparent;
}

.scope-block .scope-card {
    background: #120e1e;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
    padding: 32px;
    height: 100%;
    transition: all 0.2s ease;
}

.scope-block .scope-card:hover {
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 20px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.scope-block .scope-title-included {
    color: #a855f7;
    font-weight: 700;
    font-size: 1.5rem;
}

.scope-block .scope-title-excluded {
    color: #ec4899;
    font-weight: 700;
    font-size: 1.5rem;
}

.scope-block .scope-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.scope-block .scope-item:last-child {
    margin-bottom: 0;
}

.scope-block .scope-icon-inc {
    color: #a855f7;
    font-size: 1.25rem;
    background: rgba(168, 85, 247, 0.1);
    padding: 6px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.scope-block .scope-icon-exc {
    color: #ec4899;
    font-size: 1.25rem;
    background: rgba(236, 72, 153, 0.1);
    padding: 6px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.scope-block .scope-item-text h4 {
    color: #f3f4f6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.scope-block .scope-item-text p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== geography ===== */
.geography-section {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.geography-section .badge-accent {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid #a855f7;
    color: #a855f7;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.geography-section .section-title {
    color: #f3f4f6;
    font-weight: 700;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

.geography-section .section-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
}

.geography-section .tactile-sidebar {
    background-color: #120e1e;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.geography-section .sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f3f4f6;
}

.geography-section .geo-tab-btn {
    background: #120e1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
}

.geography-section .geo-tab-btn:hover {
    color: #f3f4f6;
    border-color: rgba(168, 85, 247, 0.4);
}

.geography-section .geo-tab-btn.active {
    background: #09070f;
    color: #a855f7;
    border-color: #a855f7;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.geography-section .border-top-glow {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.geography-section .sidebar-info-text {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
}

.geography-section .tactile-display-panel {
    background-color: #120e1e;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.geography-section .display-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f4f6;
}

.geography-section .status-pill {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid #ec4899;
    color: #ec4899;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.geography-section .info-recessed-box {
    background: #09070f;
    border-radius: 16px;
    padding: 20px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.02);
    height: 100%;
}

.geography-section .info-label {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.geography-section .info-value {
    display: block;
    font-size: 1.1rem;
    color: #f3f4f6;
    font-weight: 600;
}

.geography-section .panel-sub-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #a855f7;
}

.geography-section .panel-body-text {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
}

.geography-section .tech-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f3f4f6;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.geography-section .workflow-step-card {
    background-color: #120e1e;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(255, 255, 255, 0.02);
    height: 100%;
}

.geography-section .step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ec4899;
    line-height: 1;
    margin-bottom: 15px;
}

.geography-section .step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.geography-section .step-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .geography-section .tactile-sidebar {
        padding: 24px;
    }

    .geography-section .tactile-display-panel {
        padding: 30px;
    }

    .geography-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .geography-section .section-title {
        font-size: 1.6rem;
    }

    .geography-section .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ===== footer ===== */
.ld-footer {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.ld-footer-disclaimer {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.ld-disclaimer-icon-wrapper {
    background-color: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ld-disclaimer-title {
    color: #ec4899;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ld-disclaimer-text {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ld-footer-divider {
    border-color: rgba(168, 85, 247, 0.15);
    opacity: 1;
}

.ld-footer-logo {
    max-width: 45px;
    height: auto;
    display: block;
}

.ld-brand-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.ld-footer-heading {
    color: #f3f4f6;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.ld-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #a855f7;
}

.ld-footer-links {
    margin: 0;
    padding: 0;
}

.ld-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ld-footer-links a:hover {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.ld-footer-contacts {
    color: #9ca3af;
    font-size: 0.95rem;
}

.ld-contact-item i {
    color: #a855f7;
    font-size: 1.1rem;
}

.ld-contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ld-contact-link:hover {
    color: #a855f7;
}

.ld-copyright-text {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* ===== PAGE: about ===== */
.about-platform {
  background-color: #09070f;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-platform .text-primary-accent {
  color: #a855f7;
}

.about-platform .text-pink-accent {
  color: #ec4899;
}

.about-platform .text-light-primary {
  color: #f3f4f6;
}

.about-platform .text-light-secondary {
  color: #9ca3af;
}

.about-platform .font-mono {
  font-family: 'JetBrains Mono', monospace;
}


.about-platform .tactile-card {
  background-color: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 24px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.02), 0 0 15px rgba(168, 85, 247, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-platform .tactile-card:hover {
  border-color: rgba(236, 72, 153, 0.25);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.8), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 20px rgba(236, 72, 153, 0.12);
}


.about-platform .recessed-control-wrapper {
  background-color: #08060c;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.03);
}

.about-platform .recessed-output {
  background-color: #0b0814;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.9), inset -1px -1px 3px rgba(255, 255, 255, 0.02);
}

.about-platform .border-dark-glow {
  border-color: rgba(168, 85, 247, 0.15) !important;
}


.about-platform .badge-neon {
  background-color: rgba(168, 85, 247, 0.15);
  border: 1px solid #a855f7;
  color: #f3f4f6;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
}


.about-platform .tactile-btn {
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.about-platform .btn-primary-gradient {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), inset -2px -2px 4px rgba(0, 0, 0, 0.2);
}

.about-platform .btn-primary-gradient:hover {
  opacity: 0.95;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.about-platform .btn-outline-neon {
  background: transparent;
  color: #a855f7;
  border: 2px solid #a855f7;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.about-platform .btn-outline-neon:hover {
  background: rgba(168, 85, 247, 0.1);
  color: #ec4899;
  border-color: #ec4899;
}


.about-platform .control-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.about-platform .control-btn.active {
  background: #a855f7;
  color: #ffffff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.about-platform .recessed-select {
  background-color: #08060c;
  color: #f3f4f6;
  border: 1px solid rgba(168, 85, 247, 0.2);
  outline: none;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.8);
}

.about-platform .recessed-select option {
  background-color: #120e1e;
  color: #f3f4f6;
}

.about-platform .form-check-input {
  background-color: #08060c;
  border-color: rgba(168, 85, 247, 0.4);
  cursor: pointer;
}

.about-platform .form-check-input:checked {
  background-color: #ec4899;
  border-color: #ec4899;
}

.about-platform .control-label {
  font-size: 0.85rem;
  color: #9ca3af;
}

.about-platform .control-label-text {
  font-size: 0.85rem;
  color: #9ca3af;
}


.about-platform .tab-trigger {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.about-platform .tab-trigger.active {
  background-color: #a855f7;
  color: #ffffff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}


.about-platform .custom-accordion .accordion-item {
  margin-bottom: 1rem;
}

.about-platform .custom-accordion .accordion-button {
  background-color: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  color: #f3f4f6 !important;
  border-radius: 12px;
  font-weight: 600;
}

.about-platform .custom-accordion .accordion-button::after {
  filter: invert(1);
}

.about-platform .custom-accordion .accordion-button:not(.collapsed) {
  background-color: #1a142b;
  border-color: #a855f7;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.about-platform .custom-accordion .accordion-body {
  background-color: #0b0814;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* ===== PAGE: endnote ===== */
.endnote-case-block {
  background-color: #09070f;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.endnote-case-block .endnote-nav-pills {
  background: #120e1e;
  border-radius: 30px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  max-width: 650px;
  margin: 0 auto;
}

.endnote-case-block .endnote-pill-btn {
  border: none;
  border-radius: 20px;
  color: #9ca3af;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.endnote-case-block .endnote-pill-btn:hover {
  color: #f3f4f6;
  background: rgba(168, 85, 247, 0.1);
}

.endnote-case-block .endnote-pill-btn.active {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.endnote-case-block .endnote-card {
  background: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 24px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.5), -4px -4px 10px rgba(255, 255, 255, 0.02), 0 0 15px rgba(168, 85, 247, 0.05);
}

.endnote-case-block .border-pink {
  border-color: rgba(236, 72, 153, 0.3) !important;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.1) !important;
}

.endnote-case-block .endnote-badge {
  background-color: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}

.endnote-case-block .endnote-title-lg {
  color: #f3f4f6;
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.75rem;
}

.endnote-case-block .endnote-title-md {
  color: #f3f4f6;
  font-weight: 700;
  font-size: 1.35rem;
}

.endnote-case-block .endnote-title-sm {
  color: #f3f4f6;
  font-weight: 600;
  font-size: 1.05rem;
}

.endnote-case-block .text-purple {
  color: #a855f7 !important;
}

.endnote-case-block .text-pink {
  color: #ec4899 !important;
}

.endnote-case-block .endnote-text {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

.endnote-case-block .endnote-text-sm {
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.5;
}

.endnote-case-block .endnote-recessed-box {
  background: #0d0a16;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.endnote-case-block .endnote-metric-card {
  background: #0d0a16;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.endnote-case-block .endnote-metric-card .metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #a855f7;
  font-family: 'JetBrains Mono', monospace;
}

.endnote-case-block .endnote-metric-card .metric-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.endnote-case-block .btn-primary-neon {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
  transition: all 0.2s ease;
}

.endnote-case-block .btn-primary-neon:hover {
  opacity: 0.95;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.45);
}

.endnote-case-block .btn-secondary-neon {
  background: #09070f;
  border: 1px solid #a855f7;
  color: #a855f7;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.endnote-case-block .btn-secondary-neon:hover {
  background: rgba(168, 85, 247, 0.1);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.endnote-case-block .endnote-search-input {
  background-color: #0d0a16;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #f3f4f6;
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
}

.endnote-case-block .endnote-search-input:focus {
  background-color: #0d0a16;
  color: #f3f4f6;
  border-color: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
  outline: none;
}

.endnote-case-block .btn-filter-tab {
  background: #0d0a16;
  color: #9ca3af;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 8px;
  padding: 4px 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.endnote-case-block .btn-filter-tab:hover {
  color: #f3f4f6;
  border-color: rgba(168, 85, 247, 0.3);
}

.endnote-case-block .btn-filter-tab.active {
  background: rgba(168, 85, 247, 0.2);
  border-color: #a855f7;
  color: #ffffff;
}

.endnote-case-block .source-item-card {
  background: #0d0a16;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  transition: border-color 0.2s ease;
}

.endnote-case-block .source-item-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.endnote-case-block .bg-success-glow {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.endnote-case-block .bg-danger-glow {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.endnote-case-block .bg-warning-glow {
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.endnote-case-block .bg-info-glow {
  background-color: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.endnote-case-block .source-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #9ca3af;
}

.endnote-case-block .source-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 4px;
}

.endnote-case-block .source-desc {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

.endnote-case-block .endnote-img-frame {
  background: #0d0a16;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 20px;
  box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.endnote-case-block .endnote-tab-panel {
  display: none;
}

.endnote-case-block .endnote-tab-panel.active {
  display: block;
}

.endnote-case-block .endnote-list {
  list-style: none;
  padding-left: 0;
}

.endnote-case-block .endnote-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #9ca3af;
  font-size: 0.95rem;
}

.endnote-case-block .endnote-list li::before {
  content: "\f2e6";
  font-family: remixicon;
  position: absolute;
  left: 0;
  top: 0;
  color: #a855f7;
}

.endnote-case-block .endnote-table {
  margin-top: 15px;
}

.endnote-case-block .endnote-table th {
  color: #a855f7;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  border-bottom: 2px solid rgba(168, 85, 247, 0.2);
  padding: 12px;
}

.endnote-case-block .endnote-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: #f3f4f6;
}

.endnote-case-block .os-icon-box {
  background: #120e1e;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.endnote-case-block .endnote-checkbox .form-check-input {
  background-color: #0d0a16;
  border-color: rgba(168, 85, 247, 0.3);
}

.endnote-case-block .endnote-checkbox .form-check-input:checked {
  background-color: #a855f7;
  border-color: #a855f7;
}

.endnote-case-block .alert-purple {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #f3f4f6;
  border-radius: 12px;
  font-size: 0.9rem;
}

.endnote-case-block .alert-neutral {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  border-radius: 12px;
  font-size: 0.9rem;
}


.endnote-case-block .endnote-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 7, 15, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1050;
  display: flex;
  justify-content: flex-end;
}

.endnote-case-block .endnote-drawer-content {
  background: #120e1e;
  width: 100%;
  max-width: 460px;
  height: 100%;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(168, 85, 247, 0.2);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.endnote-case-block .drawer-scroll-body {
  overflow-y: auto;
  height: calc(100% - 60px);
  padding-right: 5px;
}


@media (max-width: 767.98px) {
  .endnote-case-block .endnote-title-lg {
    font-size: 1.4rem;
  }
  .endnote-case-block .endnote-title-md {
    font-size: 1.15rem;
  }
  .endnote-case-block .endnote-title-sm {
    font-size: 0.95rem;
  }
  .endnote-case-block .endnote-pill-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

/* ===== PAGE: knowledge-base ===== */
.knowledge-base-section {
  background-color: #09070f;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #f3f4f6;
}

.knowledge-base-section .kb-controls-wrapper {
  background: #120e1e;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
}

.knowledge-base-section .kb-search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.knowledge-base-section .kb-search-icon {
  position: absolute;
  left: 16px;
  color: #a855f7;
  font-size: 1.25rem;
}

.knowledge-base-section .kb-search-input {
  background-color: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  padding: 12px 16px 12px 48px;
  color: #f3f4f6;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.knowledge-base-section .kb-search-input:focus {
  outline: none;
  background-color: #0d0a17;
  border-color: #ec4899;
  color: #ffffff;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 8px rgba(236, 72, 153, 0.3);
}

.knowledge-base-section .kb-search-input::placeholder {
  color: #9ca3af;
  opacity: 0.8;
}

.knowledge-base-section .kb-filter-btn {
  background-color: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #9ca3af;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease-in-out;
}

.knowledge-base-section .kb-filter-btn:hover {
  border-color: #a855f7;
  color: #ffffff;
}

.knowledge-base-section .kb-filter-btn.active {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #ffffff;
  border-color: transparent;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.5), 0 0 10px rgba(168, 85, 247, 0.4);
}

.knowledge-base-section .kb-card {
  background-color: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.knowledge-base-section .kb-card:hover {
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 20px rgba(168, 85, 247, 0.25);
}

.knowledge-base-section .kb-card-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #09070f;
}

.knowledge-base-section .kb-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.knowledge-base-section .kb-card-img-link:hover .kb-card-img {
  opacity: 0.9;
}

.knowledge-base-section .kb-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.knowledge-base-section .kb-card-meta {
  font-size: 0.75rem;
}

.knowledge-base-section .kb-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.knowledge-base-section .kb-badge-selection {
  background-color: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.knowledge-base-section .kb-badge-quality {
  background-color: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.knowledge-base-section .kb-badge-analysis {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.knowledge-base-section .kb-badge-process {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.knowledge-base-section .kb-date {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.knowledge-base-section .kb-card-title-link {
  text-decoration: none;
  color: inherit;
}

.knowledge-base-section .kb-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #ffffff !important;
  transition: color 0.15s;
}

.knowledge-base-section .kb-card-title-link:hover .kb-card-title {
  color: #ec4899 !important;
}

.knowledge-base-section .kb-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #9ca3af;
  margin-bottom: 0;
}

.knowledge-base-section .kb-card-footer {
  border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.knowledge-base-section .kb-author {
  font-size: 0.8rem;
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.knowledge-base-section .kb-share-btn {
  background: none;
  border: none;
  color: #a855f7;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

.knowledge-base-section .kb-share-btn:hover {
  color: #ec4899;
}

/* ===== PAGE: source-analysis ===== */
.source-analysis-section {
  background-color: #09070f;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #f3f4f6;
}

.source-analysis-section .status-badge {
  background-color: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #a855f7;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
}

.source-analysis-section .text-secondary-custom {
  color: #9ca3af !important;
}

.source-analysis-section .filter-control-panel {
  background-color: #120e1e;
  border-radius: 24px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.source-analysis-section .input-recessed-group {
  position: relative;
  display: flex;
  align-items: center;
}

.source-analysis-section .input-recessed-group .search-icon {
  position: absolute;
  left: 1rem;
  color: #9ca3af;
  font-size: 1.1rem;
}

.source-analysis-section .input-recessed-group .form-control {
  background-color: #09070f !important;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #f3f4f6;
  padding-left: 2.8rem;
  padding-right: 1rem;
  height: 50px;
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.source-analysis-section .input-recessed-group .form-control:focus {
  border-color: #a855f7;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05), 0 0 8px rgba(168, 85, 247, 0.4);
  outline: none;
}

.source-analysis-section .input-recessed-group .form-control::placeholder {
  color: #6b7280;
  opacity: 1;
}

.source-analysis-section .select-recessed-wrapper {
  position: relative;
}

.source-analysis-section .select-recessed-wrapper .select-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  font-size: 1.1rem;
}

.source-analysis-section .select-recessed-wrapper .form-select {
  background-color: #09070f !important;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #f3f4f6;
  padding-left: 2.8rem;
  height: 50px;
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  appearance: none;
}

.source-analysis-section .select-recessed-wrapper .form-select:focus {
  border-color: #a855f7;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05), 0 0 8px rgba(168, 85, 247, 0.4);
  outline: none;
}

.source-analysis-section .btn-tactile {
  background-color: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #f3f4f6;
  height: 50px;
  border-radius: 12px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(255, 255, 255, 0.02);
  transition: all 0.15s ease-in-out;
  font-weight: 600;
}

.source-analysis-section .btn-tactile:hover {
  background-color: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  border-color: #a855f7;
}

.source-analysis-section .btn-tactile:active {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}


.source-analysis-section .case-card {
  background-color: #120e1e;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.source-analysis-section .case-card:hover {
  border-color: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2), 6px 6px 12px rgba(0, 0, 0, 0.6);
}

.source-analysis-section .card-img-wrapper {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.source-analysis-section .card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.source-analysis-section .case-card:hover .card-img-wrapper img {
  transform: scale(1.03);
}

.source-analysis-section .card-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #ec4899;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.4);
}

.source-analysis-section .meta-author,
.source-analysis-section .meta-date {
  font-size: 0.8rem;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
}

.source-analysis-section .card-title-custom {
  font-weight: 700;
  line-height: 1.3;
}

.source-analysis-section .card-title-custom a {
  transition: color 0.15s ease;
}

.source-analysis-section .card-title-custom a:hover {
  color: #a855f7 !important;
}

.source-analysis-section .card-desc-custom {
  font-size: 0.9rem;
  line-height: 1.6;
}

.source-analysis-section .border-top-glow {
  border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.source-analysis-section .btn-link-glow {
  color: #a855f7;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.15s ease;
}

.source-analysis-section .btn-link-glow:hover {
  color: #ec4899;
}

.source-analysis-section .btn-icon-share {
  background-color: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #9ca3af;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
  transition: all 0.15s ease;
}

.source-analysis-section .btn-icon-share:hover {
  border-color: #a855f7;
  color: #a855f7;
  background-color: rgba(168, 85, 247, 0.1);
}

.source-analysis-section .empty-state-card {
  max-width: 450px;
  background-color: #120e1e;
  border: 1px dashed rgba(168, 85, 247, 0.3);
  border-radius: 24px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6);
}

.source-analysis-section .text-accent {
  color: #a855f7;
}

/* ===== PAGE: privacy ===== */
.ld-privacy-wrapper {
  background-color: #09070f;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ld-privacy-wrapper .ld-sidebar-card {
  background-color: #120e1e;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
}

.ld-privacy-wrapper .ld-sidebar-title {
  color: #f3f4f6;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ld-privacy-wrapper .ld-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a855f7;
  font-size: 1.1rem;
}

.ld-privacy-wrapper .js-privacy-search {
  background-color: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #f3f4f6;
  padding-left: 2.75rem;
  border-radius: 12px;
  height: 48px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.ld-privacy-wrapper .js-privacy-search:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(236, 72, 153, 0.2);
}

.ld-privacy-wrapper .js-privacy-search::placeholder {
  color: #5f5476;
  opacity: 1;
}

.ld-privacy-wrapper .ld-tab-btn {
  width: 100%;
  background-color: #09070f;
  color: #9ca3af;
  border: 1px solid rgba(168, 85, 247, 0.08);
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  text-align: left;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.ld-privacy-wrapper .ld-tab-btn:hover {
  color: #f3f4f6;
  border-color: #a855f7;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6), 0 0 10px rgba(168, 85, 247, 0.1);
}

.ld-privacy-wrapper .ld-tab-btn.active {
  background-color: #120e1e;
  color: #a855f7;
  border-color: #a855f7;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.ld-privacy-wrapper .ld-info-box {
  background-color: #09070f;
  border-radius: 16px;
  border: 1px dashed rgba(236, 72, 153, 0.25);
}

.ld-privacy-wrapper .ld-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ec4899;
}

.ld-privacy-wrapper .ld-info-text {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.5;
}

.ld-privacy-wrapper .ld-link {
  color: #a855f7;
  text-decoration: none;
  font-weight: 500;
}

.ld-privacy-wrapper .ld-link:hover {
  text-decoration: underline;
  color: #ec4899;
}

.ld-privacy-wrapper .ld-article-card {
  background-color: #120e1e;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
}

.ld-privacy-wrapper .ld-article-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 20px rgba(168, 85, 247, 0.15);
}

.ld-privacy-wrapper .ld-badge {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ld-privacy-wrapper .ld-article-heading {
  color: #f3f4f6;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ld-privacy-wrapper .ld-paragraph {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 0.95rem;
}

.ld-privacy-wrapper .ld-list {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 0.95rem;
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.ld-privacy-wrapper .ld-list li {
  margin-bottom: 0.5rem;
}

.ld-privacy-wrapper .ld-list li strong {
  color: #f3f4f6;
}

.ld-privacy-wrapper .ld-no-results {
  background-color: #120e1e;
  border-radius: 24px;
  border: 1px dashed rgba(168, 85, 247, 0.2);
}

/* ===== PAGE: terms ===== */
.literature-terms-section {
  background-color: #09070f;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 80px 0;
}
.literature-terms-section .terms-title {
  color: #f3f4f6;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.literature-terms-section .terms-subtitle {
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.literature-terms-section .search-box {
  background: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03);
  margin-bottom: 2.5rem;
}
.literature-terms-section .search-input-wrapper {
  position: relative;
}
.literature-terms-section .search-input {
  background: #09070f;
  border: none;
  border-radius: 12px;
  color: #f3f4f6;
  padding: 12px 20px 12px 48px;
  width: 100%;
  font-size: 1rem;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  outline: none;
  transition: box-shadow 0.2s ease;
}
.literature-terms-section .search-input:focus {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05), 0 0 10px rgba(168, 85, 247, 0.4);
}
.literature-terms-section .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a855f7;
  font-size: 1.25rem;
}
.literature-terms-section .sidebar-tabs {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.literature-terms-section .tab-btn {
  background: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  color: #9ca3af;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), -2px -2px 6px rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 10px;
}
.literature-terms-section .tab-btn:hover {
  color: #f3f4f6;
  border-color: rgba(168, 85, 247, 0.3);
}
.literature-terms-section .tab-btn.active {
  color: #f3f4f6;
  background: #120e1e;
  border-color: #a855f7;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 12px rgba(168, 85, 247, 0.2);
}
.literature-terms-section .terms-content-card {
  background: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.05);
}
.literature-terms-section .terms-group {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.literature-terms-section .terms-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.literature-terms-section .terms-group h2 {
  color: #f3f4f6;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.literature-terms-section .terms-group h2 i {
  color: #ec4899;
}
.literature-terms-section .terms-group p {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.literature-terms-section .terms-group ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.literature-terms-section .terms-group ul li {
  color: #9ca3af;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.literature-terms-section .terms-group ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: bold;
}
.literature-terms-section .meta-info {
  background: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}
.literature-terms-section .meta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  font-size: 0.9rem;
}
.literature-terms-section .meta-info-item i {
  color: #a855f7;
  font-size: 1.2rem;
}
.literature-terms-section .no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #9ca3af;
}
.literature-terms-section .no-results i {
  font-size: 3rem;
  color: #ec4899;
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 767.98px) {
  .literature-terms-section .sidebar-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    position: static;
    white-space: nowrap;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .literature-terms-section .tab-btn {
    flex: 0 0 auto;
  }
}

/* ===== PAGE: disclaimer ===== */
.ld-disclaimer-wrapper {
  background-color: #09070f;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}

.ld-disclaimer-wrapper .ld-card {
  background-color: #120e1e;
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 24px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
}

.ld-disclaimer-wrapper .ld-sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  border-left: 3px solid #a855f7;
  padding-left: 10px;
}

.ld-disclaimer-wrapper .ld-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f3f4f6;
}

.ld-disclaimer-wrapper .ld-input-icon {
  background-color: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-right: none;
  color: #a855f7;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.ld-disclaimer-wrapper .ld-input {
  background-color: #09070f;
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #f3f4f6;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ld-disclaimer-wrapper .ld-input::placeholder {
  color: #9ca3af;
  opacity: 0.7;
}

.ld-disclaimer-wrapper .ld-input:focus {
  background-color: #0d0a17;
  border-color: #a855f7;
  color: #f3f4f6;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
  outline: none;
}

.ld-disclaimer-wrapper .ld-nav-btn {
  background: rgba(168, 85, 247, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.1);
  color: #9ca3af;
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  transition: all 0.2s ease;
}

.ld-disclaimer-wrapper .ld-nav-btn:hover {
  color: #f3f4f6;
  background-color: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.25);
}

.ld-disclaimer-wrapper .ld-nav-btn.active {
  background-color: #09070f;
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(168, 85, 247, 0.15);
}

.ld-disclaimer-wrapper .ld-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f3f4f6;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding-bottom: 12px;
}

.ld-disclaimer-wrapper .text-accent {
  color: #a855f7;
}

.ld-disclaimer-wrapper .text-accent-pink {
  color: #ec4899;
}

.ld-disclaimer-wrapper .ld-text {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
}

.ld-disclaimer-wrapper .ld-list {
  color: #9ca3af;
  padding-left: 20px;
}

.ld-disclaimer-wrapper .ld-list li {
  margin-bottom: 8px;
}

.ld-disclaimer-wrapper .ld-highlight-box {
  background: rgba(236, 72, 153, 0.05);
  border-left: 4px solid #ec4899;
  border-radius: 8px;
}

.ld-disclaimer-wrapper .ld-text-small {
  color: #f3f4f6;
  font-size: 0.9rem;
  font-weight: 500;
}

.ld-disclaimer-wrapper .alert-info {
  background-color: #120e1e;
  border-color: rgba(236, 72, 153, 0.3);
  color: #ec4899;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .ld-disclaimer-wrapper h1 {
    font-size: 18px !important;
  }
  .ld-disclaimer-wrapper h2 {
    font-size: 16px !important;
  }
  .ld-disclaimer-wrapper h3,
  .ld-disclaimer-wrapper .ld-sidebar-title {
    font-size: 14px !important;
  }
  .ld-disclaimer-wrapper .ld-text {
    font-size: 0.95rem;
  }
}

.neo-comment-card {
    background-color: #120e1e;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(255, 255, 255, 0.03), 0 0 15px rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f3f4f6;
    max-width: 800px;
    margin-bottom: 20px;
}

.neo-comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.neo-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #09070f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #f3f4f6;
    letter-spacing: 0.05em;
}

/* Avatar image selector included as required by rule */
.neo-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.neo-user-info {
    flex-grow: 1;
}

.neo-user-name {
    font-size: 16px;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0 0 2px 0;
    letter-spacing: -0.02em;
}

.neo-user-meta {
    font-size: 12px;
    color: #9ca3af;
    display: block;
}

.neo-comment-badge {
    background-color: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.neo-comment-body {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 20px;
}

.neo-comment-footer {
    display: flex;
    gap: 12px;
}

.neo-btn-tactile {
    background-color: #120e1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    padding: 8px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(255, 255, 255, 0.02);
    transition: none;
}

.neo-btn-tactile:hover {
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.neo-reply-container {
    display: flex;
    position: relative;
    padding-left: 48px;
    margin-top: 16px;
    max-width: 800px;
}

.neo-reply-line {
    position: absolute;
    left: 20px;
    top: -16px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.1));
    border-radius: 1px;
}

.neo-reply-card {
    flex-grow: 1;
    background-color: #09070f;
    border-radius: 20px;
    padding: 20px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
    margin-bottom: 0;
}

.neo-avatar-reply {
    width: 40px;
    height: 40px;
}

.neo-avatar-reply .neo-avatar-initials {
    font-size: 14px;
}

/* Avatar image selector included as required by rule */
.neo-avatar-reply-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.neo-badge-reply {
    background-color: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.neo-reply-card .neo-btn-tactile {
    background-color: #09070f;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.01);
}

.neo-reply-card .neo-btn-tactile:hover {
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8), inset -1px -1px 3px rgba(255, 255, 255, 0.05);
}


/* ===== PAGE TEMPLATE: knowledge-base ===== */
.literature-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #09070f;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.literature-header .header-top-bar {
    background-color: #120e1e;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    font-size: 0.85rem;
    color: #9ca3af;
}

.literature-header .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
}

.literature-header .contact-link:hover {
    color: #a855f7;
}

.literature-header .whatsapp-link {
    color: #ec4899;
}

.literature-header .whatsapp-link:hover {
    color: #f472b6;
}

.literature-header .main-navbar {
    background-color: #09070f;
    padding: 0.75rem 0;
}

.literature-header .header-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.literature-header .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #f3f4f6;
    letter-spacing: -0.02em;
}

.literature-header .nav-link {
    color: #9ca3af;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.literature-header .nav-link:hover,
.literature-header .nav-link.active {
    color: #f3f4f6;
    background-color: rgba(168, 85, 247, 0.1);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8), inset -1px -1px 3px rgba(255, 255, 255, 0.05);
}

.literature-header .navbar-toggler {
    border: 1px solid rgba(168, 85, 247, 0.3);
    background-color: #120e1e;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
}

.literature-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    outline: none;
}

.literature-header .btn-cta {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(168, 85, 247, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.literature-header .btn-cta:hover {
    background: linear-gradient(135deg, #b55fe6 0%, #f43f5e 100%);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.4);
}

.literature-header .nav-contact-item {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.literature-header .whatsapp-mobile-link {
    color: #ec4899;
}

.ld-footer {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.ld-footer-disclaimer {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.ld-disclaimer-icon-wrapper {
    background-color: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ld-disclaimer-title {
    color: #ec4899;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ld-disclaimer-text {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ld-footer-divider {
    border-color: rgba(168, 85, 247, 0.15);
    opacity: 1;
}

.ld-footer-logo {
    max-width: 45px;
    height: auto;
    display: block;
}

.ld-brand-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.ld-footer-heading {
    color: #f3f4f6;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.ld-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #a855f7;
}

.ld-footer-links {
    margin: 0;
    padding: 0;
}

.ld-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ld-footer-links a:hover {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.ld-footer-contacts {
    color: #9ca3af;
    font-size: 0.95rem;
}

.ld-contact-item i {
    color: #a855f7;
    font-size: 1.1rem;
}

.ld-contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ld-contact-link:hover {
    color: #a855f7;
}

.ld-copyright-text {
    color: #9ca3af;
    font-size: 0.85rem;
}

.kb-detail-section {
    background-color: #09070f;
    color: #f3f4f6;
    padding: 60px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kb-detail-section .breadcrumbs {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.kb-detail-section .breadcrumbs a {
    color: #a855f7;
    text-decoration: none;
}

.kb-detail-section .breadcrumbs a:hover {
    color: #ec4899;
}

.kb-detail-section .article-meta-badge {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #a855f7;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.kb-detail-section .article-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #f3f4f6 30%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.kb-detail-section .meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding-bottom: 1.5rem;
}

.kb-detail-section .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-detail-section .article-img-container {
    background-color: #120e1e;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.08);
    margin-bottom: 3rem;
}

.kb-detail-section .article-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

.kb-detail-section .article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5db;
}

.kb-detail-section .article-body h2,
.kb-detail-section .article-body h3 {
    color: #f3f4f6;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.kb-detail-section .article-body p {
    margin-bottom: 1.5rem;
}

.kb-detail-section .article-body blockquote {
    background-color: #120e1e;
    border-left: 4px solid #a855f7;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    color: #e5e7eb;
    font-style: italic;
}

.kb-detail-section .share-container {
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding: 1.5rem 0;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.kb-detail-section .share-title {
    font-weight: 700;
    color: #f3f4f6;
}

.kb-detail-section .share-buttons {
    display: flex;
    gap: 0.75rem;
}

.kb-detail-section .share-btn {
    background-color: #120e1e;
    color: #f3f4f6;
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-detail-section .share-btn:hover {
    border-color: #a855f7;
    color: #a855f7;
}

.kb-detail-section .comments-section {
    margin-top: 4rem;
}

.kb-detail-section .comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 2rem;
}

.kb-detail-section .neo-comment-card {
    background-color: #120e1e;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.kb-detail-section .neo-reply-container {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.kb-detail-section .neo-reply-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 1.5rem;
    width: 2px;
    background-color: rgba(168, 85, 247, 0.3);
}

.kb-detail-section .neo-comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.kb-detail-section .neo-avatar-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.kb-detail-section .neo-avatar-initials {
    font-size: 1rem;
}

.kb-detail-section .neo-user-info {
    flex-grow: 1;
}

.kb-detail-section .neo-user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0;
}

.kb-detail-section .neo-user-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}

.kb-detail-section .neo-comment-badge {
    font-size: 0.8rem;
    color: #ec4899;
    background-color: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
}

.kb-detail-section .neo-comment-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.kb-detail-section .neo-comment-footer {
    display: flex;
    gap: 1rem;
}

.kb-detail-section .neo-btn-tactile {
    background-color: #09070f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.15s ease;
}

.kb-detail-section .neo-btn-tactile:hover,
.kb-detail-section .neo-btn-tactile.active {
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.kb-detail-section .comment-form-container {
    background-color: #120e1e;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
    margin-top: 3rem;
}

.kb-detail-section .comment-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 1.5rem;
}

.kb-detail-section .comment-form .form-control {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #f3f4f6;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.kb-detail-section .comment-form .form-control::placeholder {
    color: #6b7280;
}

.kb-detail-section .comment-form .form-control:focus {
    border-color: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
    outline: none;
}

.kb-detail-section .comment-form .submit-btn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease;
}

.kb-detail-section .comment-form .submit-btn:hover {
    background: linear-gradient(135deg, #b55fe6 0%, #f43f5e 100%);
}

.kb-detail-section .moderation-msg {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.kb-detail-section .sidebar-widget {
    background-color: #120e1e;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.kb-detail-section .widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f3f4f6;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.kb-detail-section .recent-post-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.kb-detail-section .recent-post-link:hover {
    color: #a855f7;
}

.kb-detail-section .tactile-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kb-detail-section .tactile-badge {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #9ca3af;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.kb-detail-section .decision-scorer {
    background-color: #09070f;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.kb-detail-section .scorer-checkbox {
    display: none;
}

.kb-detail-section .scorer-label {
    font-size: 0.85rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.kb-detail-section .scorer-checkbox-custom {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    background-color: #120e1e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.75rem;
}

.kb-detail-section .scorer-checkbox:checked+.scorer-checkbox-custom {
    background-color: #a855f7;
    color: #ffffff;
}

.kb-detail-section .scorer-score-bar {
    height: 8px;
    background-color: #120e1e;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.kb-detail-section .scorer-score-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
    transition: width 0.2s ease;
}

/* ===== PAGE TEMPLATE: source-analysis ===== */
.literature-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #09070f;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.literature-header .header-top-bar {
    background-color: #120e1e;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    font-size: 0.85rem;
    color: #9ca3af;
}

.literature-header .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
}

.literature-header .contact-link:hover {
    color: #a855f7;
}

.literature-header .whatsapp-link {
    color: #ec4899;
}

.literature-header .whatsapp-link:hover {
    color: #f472b6;
}

.literature-header .main-navbar {
    background-color: #09070f;
    padding: 0.75rem 0;
}

.literature-header .header-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.literature-header .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #f3f4f6;
    letter-spacing: -0.02em;
}

.literature-header .nav-link {
    color: #9ca3af;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.literature-header .nav-link:hover,
.literature-header .nav-link.active {
    color: #f3f4f6;
    background-color: rgba(168, 85, 247, 0.1);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8), inset -1px -1px 3px rgba(255, 255, 255, 0.05);
}

.literature-header .navbar-toggler {
    border: 1px solid rgba(168, 85, 247, 0.3);
    background-color: #120e1e;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
}

.literature-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    outline: none;
}

.literature-header .btn-cta {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(168, 85, 247, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.literature-header .btn-cta:hover {
    background: linear-gradient(135deg, #b55fe6 0%, #f43f5e 100%);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.4);
}

.literature-header .nav-contact-item {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.literature-header .whatsapp-mobile-link {
    color: #ec4899;
}

.ld-footer {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.ld-footer-disclaimer {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.ld-disclaimer-icon-wrapper {
    background-color: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ld-disclaimer-title {
    color: #ec4899;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ld-disclaimer-text {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ld-footer-divider {
    border-color: rgba(168, 85, 247, 0.15);
    opacity: 1;
}

.ld-footer-logo {
    max-width: 45px;
    height: auto;
    display: block;
}

.ld-brand-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.ld-footer-heading {
    color: #f3f4f6;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.ld-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #a855f7;
}

.ld-footer-links {
    margin: 0;
    padding: 0;
}

.ld-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ld-footer-links a:hover {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.ld-footer-contacts {
    color: #9ca3af;
    font-size: 0.95rem;
}

.ld-contact-item i {
    color: #a855f7;
    font-size: 1.1rem;
}

.ld-contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ld-contact-link:hover {
    color: #a855f7;
}

.ld-copyright-text {
    color: #9ca3af;
    font-size: 0.85rem;
}

.sa-detail-page {
    background-color: #09070f;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-bottom: 60px;
}

.sa-detail-page .sa-breadcrumbs {
    font-size: 0.9rem;
}

.sa-detail-page .sa-breadcrumbs a {
    color: #a855f7;
    text-decoration: none;
    transition: text-shadow 0.2s;
}

.sa-detail-page .sa-breadcrumbs a:hover {
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.sa-detail-page .sa-detail-hero {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.08);
}

.sa-detail-page .sa-hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.sa-detail-page .sa-meta-badge {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.sa-detail-page .sa-detail-title {
    color: #f3f4f6;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.sa-detail-page .sa-detail-meta .meta-item {
    color: #9ca3af;
    font-size: 0.9rem;
}

.sa-detail-page .sa-share-box {
    background-color: #09070f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.sa-detail-page .sa-share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #120e1e;
    color: #9ca3af;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.2s;
    text-decoration: none;
}

.sa-detail-page .sa-share-btn:hover {
    color: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
}

.sa-detail-page .sa-main-image-container {
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

.sa-detail-page .sa-main-image {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}

.sa-detail-page .sa-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 7, 15, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.sa-detail-page .sa-custom-tabs {
    background-color: #120e1e;
    padding: 8px;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sa-detail-page .sa-custom-tabs .nav-link {
    background-color: transparent;
    color: #9ca3af;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.2s;
}

.sa-detail-page .sa-custom-tabs .nav-link:hover {
    color: #f3f4f6;
    background-color: rgba(168, 85, 247, 0.05);
}

.sa-detail-page .sa-custom-tabs .nav-link.active {
    background-color: #09070f;
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.1);
}

.sa-detail-page .sa-custom-tab-content {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-top: none;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6);
}

.sa-detail-page .sa-content-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f3f4f6;
}

.sa-detail-page .sa-content-text {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
}

.sa-detail-page .sa-highlight-box {
    background-color: #09070f;
    border-left: 4px solid #a855f7;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.sa-detail-page .sa-evidence-list {
    list-style: none;
    padding: 0;
}

.sa-detail-page .sa-evidence-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
}

.sa-detail-page .sa-stat-card {
    background-color: #09070f;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.sa-detail-page .sa-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
}

.sa-detail-page .sa-stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
}

.sa-detail-page .sa-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f4f6;
    position: relative;
    padding-bottom: 8px;
}

.sa-detail-page .sa-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ec4899;
}

.sa-detail-page .sa-rich-text p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sa-detail-page .sa-blockquote {
    border-left: 4px solid #ec4899;
    background-color: #120e1e;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.sa-detail-page .sa-blockquote .quote-icon {
    font-size: 1.5rem;
    color: rgba(236, 72, 153, 0.3);
    display: block;
    margin-bottom: 8px;
}

.sa-detail-page .sa-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f3f4f6;
}

.sa-detail-page .sa-interactive-card {
    background-color: #120e1e;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6), 0 0 25px rgba(236, 72, 153, 0.05);
}

.sa-detail-page .sa-interactive-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f3f4f6;
}

.sa-detail-page .sa-input-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 600;
}

.sa-detail-page .sa-input-val {
    font-size: 0.85rem;
    color: #a855f7;
    font-weight: 700;
}

.sa-detail-page .bg-dark-bevel {
    background-color: #09070f;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.sa-detail-page .sa-toggle-label {
    font-size: 0.85rem;
    color: #f3f4f6;
}

.sa-detail-page .sa-result-panel {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.sa-detail-page .sa-status-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sa-detail-page .sa-status-light.green {
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.sa-detail-page .sa-status-light.yellow {
    background-color: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
}

.sa-detail-page .sa-status-light.red {
    background-color: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.sa-detail-page .sa-status-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.sa-detail-page .sa-sidebar-widget {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6);
}

.sa-detail-page .widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f3f4f6;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.sa-detail-page .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 2px;
    background-color: #a855f7;
}

.sa-detail-page .sa-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa-detail-page .sa-meta-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.sa-detail-page .sa-meta-list li:last-child {
    border-bottom: none;
}

.sa-detail-page .sa-meta-list .meta-label {
    color: #9ca3af;
}

.sa-detail-page .sa-meta-list .meta-value {
    font-weight: 600;
    color: #f3f4f6;
}

.sa-detail-page .form-control {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #f3f4f6;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.sa-detail-page .form-control:focus {
    background-color: #09070f;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4), inset 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: #f3f4f6;
    outline: none;
}

.sa-detail-page .form-control::-webkit-input-placeholder {
    color: #9ca3af !important;
    opacity: 0.7;
}

.sa-detail-page .form-control::-moz-placeholder {
    color: #9ca3af !important;
    opacity: 0.7;
}

.sa-detail-page .form-control:-ms-input-placeholder {
    color: #9ca3af !important;
    opacity: 0.7;
}

.sa-detail-page .form-control::placeholder {
    color: #9ca3af !important;
    opacity: 0.7;
}

.sa-detail-page .sa-comments-section {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.6);
}

.sa-detail-page .sa-comments-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f3f4f6;
}

.neo-comment-card {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5), inset 1px 1px 3px rgba(255, 255, 255, 0.05);
}

.neo-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.neo-avatar-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.neo-avatar-initials {
    font-size: 0.9rem;
    font-weight: 700;
    color: #a855f7;
}

.neo-user-info {
    flex-grow: 1;
}

.neo-user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0;
}

.neo-user-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.neo-comment-badge {
    background-color: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.neo-comment-body {
    font-size: 0.9rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 14px;
}

.neo-comment-footer {
    display: flex;
    gap: 12px;
}

.neo-btn-tactile {
    background-color: #120e1e;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border-style: solid;
}

.neo-btn-tactile:hover {
    color: #f3f4f6;
    border-color: #ec4899;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.neo-btn-tactile:active {
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.neo-reply-container {
    display: flex;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.neo-reply-line {
    position: absolute;
    left: 18px;
    top: -20px;
    bottom: 20px;
    width: 2px;
    background-color: rgba(168, 85, 247, 0.2);
}

.neo-reply-card {
    border-color: rgba(236, 72, 153, 0.2);
    width: 100%;
}

.neo-avatar-reply {
    border-color: rgba(236, 72, 153, 0.3);
}

.neo-avatar-reply .neo-avatar-initials {
    color: #ec4899;
}

.neo-badge-reply {
    background-color: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

@media (max-width: 767.98px) {

    .sa-detail-page h1,
    .sa-detail-page .sa-detail-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .sa-detail-page h2,
    .sa-detail-page .sa-section-title {
        font-size: 16px !important;
        hyphens: auto;
    }

    .sa-detail-page h3,
    .sa-detail-page .sa-content-heading,
    .sa-detail-page .sa-interactive-title,
    .sa-detail-page .sa-sub-title {
        font-size: 14px !important;
        hyphens: auto;
    }
}

/* ===== EndNote Case Study Blocks ===== */
.endnote-case-block {
    background-color: var(--primary-bg);
}

.endnote-card {
    background-color: var(--secondary-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-tactile-raised);
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: border-color 0.3s ease;
}

.endnote-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.endnote-card.border-pink {
    border-color: rgba(236, 72, 153, 0.3);
}

.endnote-badge {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.endnote-title-lg {
    color: var(--text-dark-bg-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.endnote-title-md {
    color: var(--text-dark-bg-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.endnote-title-sm {
    color: var(--text-dark-bg-primary);
    font-size: 1rem;
    font-weight: 600;
}

.endnote-text {
    color: var(--text-dark-bg-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.endnote-text-sm {
    color: var(--text-dark-bg-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.endnote-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.endnote-list li {
    color: var(--text-dark-bg-secondary);
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 0.9rem;
}

.endnote-list li i {
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: #a855f7;
    font-size: 1rem;
}

.endnote-metric-card {
    background-color: #09070f;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: var(--shadow-inner-recessed);
}

.endnote-metric-card .metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #a855f7;
    font-family: 'JetBrains Mono', monospace;
}

.endnote-metric-card .metric-label {
    font-size: 0.75rem;
    color: var(--text-dark-bg-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.endnote-source-list .source-item-card {
    background-color: #09070f;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: border-color 0.3s ease;
}

.endnote-source-list .source-item-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.source-item-card .source-title {
    color: var(--text-dark-bg-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.source-item-card .source-desc {
    color: var(--text-dark-bg-secondary);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.source-item-card .source-meta {
    color: var(--text-dark-bg-secondary);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.bg-success-glow {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.bg-danger-glow {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bg-warning-glow {
    background: rgba(234, 179, 8, 0.15) !important;
    color: #eab308 !important;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.bg-info-glow {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.endnote-recessed-box {
    background-color: #09070f;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: var(--shadow-inner-recessed);
}

.endnote-table {
    color: var(--text-dark-bg-primary);
}

.endnote-table thead th {
    color: #a855f7;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.endnote-table tbody td {
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
    font-size: 0.9rem;
}

.endnote-checkbox .form-check-input {
    background-color: #09070f;
    border-color: rgba(168, 85, 247, 0.3);
}

.endnote-checkbox .form-check-input:checked {
    background-color: #a855f7;
    border-color: #a855f7;
}

.alert-purple {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    border-radius: 12px;
}

.alert-neutral {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 12px;
}

.btn-primary-neon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: var(--text-dark-bg-primary);
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-neon:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(236, 72, 153, 0.35));
    border-color: rgba(168, 85, 247, 0.6);
    color: #fff;
}

.endnote-drawer-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 7, 15, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.endnote-drawer-content {
    background-color: var(--secondary-bg);
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drawer-scroll-body {
    overflow-y: auto;
    flex: 1;
}

.text-purple { color: #a855f7 !important; }
.text-pink { color: #ec4899 !important; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* ===== Contacts Page ===== */
.contact-form-container .form-control-custom {
    background-color: #09070f;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    color: var(--text-dark-bg-primary);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-inner-recessed);
}

.contact-form-container .form-control-custom:focus {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.15);
}

/* ===== Methodology Analyzer Section ===== */
.lit-calc-price-box {
    background-color: #09070f;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: var(--shadow-inner-recessed);
}

.lit-calc-price-box .price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #a855f7;
    font-family: 'JetBrains Mono', monospace;
}

.lit-calc-price-box .price-note {
    font-size: 0.75rem;
    color: var(--text-dark-bg-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Terms Page ===== */
.terms-title {
    color: var(--text-dark-bg-primary);
    font-size: 2rem;
    font-weight: 800;
}

.terms-subtitle {
    color: var(--text-dark-bg-secondary);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.meta-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark-bg-secondary);
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.sidebar-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-tabs .tab-btn {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.1);
    color: var(--text-dark-bg-secondary);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    text-align: left;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-tabs .tab-btn:hover {
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--text-dark-bg-primary);
}

.sidebar-tabs .tab-btn.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.terms-content-card {
    background-color: var(--secondary-bg);
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 2rem;
    box-shadow: var(--shadow-tactile-raised);
}

.terms-group {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.terms-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-group h2 {
    color: var(--text-dark-bg-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.terms-group p {
    color: var(--text-dark-bg-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ===== Source Analysis Submit Comment Button ===== */
.sa-submit-comment-btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: var(--text-dark-bg-primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sa-submit-comment-btn::before {
    content: "\ee52";
    font-family: 'remixicon';
    font-size: 1rem;
}

.sa-submit-comment-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.4));
    border-color: rgba(168, 85, 247, 0.7);
    color: #fff;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

.sa-submit-comment-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.15);
}

/* ===== Source Analysis Submit Request Button ===== */
.sa-submit-request-btn {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(168, 85, 247, 0.25));
    border: 1px solid rgba(236, 72, 153, 0.45);
    color: var(--text-dark-bg-primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.12);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.sa-submit-request-btn::before {
    content: "\f1d8";
    font-family: 'remixicon';
    font-size: 1rem;
}

.sa-submit-request-btn:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(168, 85, 247, 0.4));
    border-color: rgba(236, 72, 153, 0.7);
    color: #fff;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.25);
    transform: translateY(-1px);
}

.sa-submit-request-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.15);
}