@font-face {
    font-family: 'Quenda';
    src: url('../fonts/QUENDA-MEDIUM.OTF') format('opentype');
    font-display: swap;
}

:root {
    --primary-color: #4F98CF;
    /* SoulClinic Blue */
    --primary-hover: #3b7dae;
    --secondary-color: #555555;
    /* Standard Grey */
    --tertiary-color: #fba732;
    /* SoulClinic Yellow/Orange */
    --dark-color: #1F2937;
    /* Deep Indigo/Black */
    --bg-light: #f0f7ff;
    /* Soft Blue Background */
    --accent-color: #10B981;
    /* WhatsApp Green */
    --font-family-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --soft-shadow: 0 10px 30px rgba(79, 152, 207, 0.12);
}

body {
    font-family: var(--font-family-base);
    color: var(--secondary-color);
    background-color: #fff;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-tertiary {
    color: var(--tertiary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-tertiary {
    background-color: var(--tertiary-color) !important;
}

.bg-soft-blue {
    background-color: var(--bg-light) !important;
}

/* Navbar Premium */
/* Navbar Premium */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 1.2rem 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem !important;
    margin: 0 2px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
    background: rgba(79, 152, 207, 0.06);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(79, 152, 207, 0.08);
    font-weight: 700;
}

/* Premium Dropdown */
.dropdown-menu {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
    padding: 10px !important;
    margin-top: 15px !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 240px;
    animation: slideUpFade 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-item {
    border-radius: 12px;
    padding: 12px 16px !important;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

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

.dropdown-item:hover {
    background: var(--bg-light) !important;
    color: var(--primary-color) !important;
    padding-left: 20px !important;
    /* Subtle slide effect */
}

.dropdown-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(79, 152, 207, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Buttons */
.btn-soul-primary {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(79, 152, 207, 0.2);
}

.btn-soul-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 152, 207, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Cards & Sections */
.card-premium {
    border: none;
    border-radius: 24px;
    background: white;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 152, 207, 0.15);
}

/* Section Header */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.plan-user-price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    width: 100%;
    margin: 14px auto 0;
    padding: 10px 12px;
    border: 1px solid rgba(79, 152, 207, 0.24);
    border-radius: 10px;
    background: #ffffff;
    color: #334155;
    font-size: 0.83rem;
    line-height: 1.25;
    text-align: center;
}

.plan-user-price-note i {
    color: var(--primary-color);
    font-size: 1rem;
}

.plan-user-price-note span {
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-user-price-note strong {
    color: #1f2937;
    font-size: 0.86rem;
    font-weight: 800;
}

/* WhatsApp Floating */

/* Plan Modules Modal */
.plan-modules-modal .modal-dialog {
    width: min(1120px, calc(100vw - 32px));
    max-width: min(1120px, calc(100vw - 32px));
}

.plan-modules-modal .modal-content {
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.plan-modules-modal .modal-header {
    align-items: flex-start;
    gap: 18px;
    padding: 28px 32px 22px;
    border-bottom: 1px solid #e8eef5;
    background: #ffffff;
}

.plan-modules-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.plan-modules-heading > div {
    min-width: 0;
}

.plan-modules-heading-icon,
.plan-module-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
}

.plan-modules-heading-icon {
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    box-shadow: 0 12px 24px rgba(79, 152, 207, 0.22);
}

.plan-modules-heading-icon i {
    font-size: 1.25rem;
}

.plan-modules-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.plan-modules-modal .modal-title {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.55rem;
    line-height: 1.2;
}

.plan-modules-count-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    font-size: 0.78rem;
    font-weight: 800;
}

.plan-modules-subtitle,
.plan-modules-plan-description {
    color: #64748b;
}

.plan-modules-subtitle {
    margin-top: 6px;
    font-size: 0.96rem;
    overflow-wrap: break-word;
}

.plan-modules-overview {
    padding: 20px 32px 24px;
    border-bottom: 1px solid #e8eef5;
    background: #fbfdff;
}

.plan-modules-plan-description {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: 0.98rem;
}

.plan-modules-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.plan-modules-summary-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 1px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5edf5;
    border-radius: 8px;
    background: #ffffff;
}

.plan-modules-summary-item i {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--primary-color);
    background: rgba(79, 152, 207, 0.1);
}

.plan-modules-summary-item span {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-modules-summary-item strong {
    min-width: 0;
    color: #1f2937;
    font-size: 0.92rem;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.plan-modules-modal .modal-body {
    padding: 26px 32px 32px;
    background: #f5f8fb;
    overflow-x: hidden;
}

.plan-module-section + .plan-module-section {
    margin-top: 24px;
}

.plan-module-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.plan-module-section-header h5 {
    margin: 0;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 800;
}

.plan-module-section-header span {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.plan-module-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    min-height: 172px;
    padding: 16px;
    border: 1px solid #e0e8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-module-card:hover {
    transform: translateY(-2px);
    border-color: rgba(79, 152, 207, 0.42);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.plan-module-card-icon {
    width: 42px;
    height: 42px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
}

.plan-module-card-icon i {
    font-size: 1.16rem;
}

.plan-module-card-content {
    min-width: 0;
}

.plan-module-card h6 {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.3;
}

.plan-module-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.91rem;
    line-height: 1.55;
    overflow-wrap: break-word;
}

.plan-module-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
}

.plan-module-meta div {
    min-width: 82px;
    padding: 7px 9px;
    border: 1px solid #e3ebf3;
    border-radius: 8px;
    background: #f8fafc;
}

.plan-module-meta dt {
    margin: 0 0 2px;
    color: #7c8ca0;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.plan-module-meta dd {
    margin: 0;
    color: #253142;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

.plan-modules-modal .modal-footer {
    gap: 10px;
    padding: 18px 32px;
    border-top: 1px solid #e8eef5;
    background: #ffffff;
}

@media (max-width: 767.98px) {
    .plan-modules-modal .modal-dialog {
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
        margin: 8px auto;
    }

    .plan-modules-modal .modal-header,
    .plan-modules-overview,
    .plan-modules-modal .modal-body,
    .plan-modules-modal .modal-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .plan-modules-heading {
        gap: 10px;
    }

    .plan-modules-heading-icon {
        width: 40px;
        height: 40px;
    }

    .plan-modules-modal .modal-title {
        font-size: 1.25rem;
    }

    .plan-modules-summary {
        grid-template-columns: 1fr;
    }

    .plan-module-grid {
        grid-template-columns: 1fr;
    }

    .plan-module-card {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 0;
        padding: 14px;
    }

    .plan-module-card-icon {
        width: 36px;
        height: 36px;
    }

    .plan-module-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-module-meta div {
        min-width: 0;
    }

    .plan-modules-modal .modal-footer {
        flex-direction: column-reverse;
        justify-content: stretch;
    }

    .plan-modules-modal .modal-footer .btn {
        width: 100%;
    }
}

/* ===== Public Responsive System ===== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
}

.navbar-brand img,
footer img {
    max-width: 180px;
    height: auto !important;
}

.navbar-actions {
    flex-shrink: 0;
}

.sticky-cta-container {
    padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
}

.landing-hero-actions,
.newsletter-form {
    min-width: 0;
}

.landing-hero-media {
    display: block;
}

.blog-index-hero h1,
.blog-index-hero p {
    color: #ffffff !important;
}

@media (max-width: 1199.98px) {
    .navbar .container {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .nav-link {
        padding-left: 0.8rem !important;
        padding-right: 0.8rem !important;
        font-size: 0.9rem;
    }

    .navbar-actions .btn {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        white-space: nowrap;
    }

    .section-title,
    .section-title-modern,
    .plans-title,
    .landing-hero-title,
    .blog-index-title,
    .blog-post-title {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0 !important;
    }

    .navbar-brand img {
        max-width: 150px;
    }

    .soul-public-nav {
        margin-top: 14px;
        padding: 14px;
        border: 1px solid rgba(79, 152, 207, 0.12);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 4px;
        margin-bottom: 14px;
    }

    .nav-link {
        width: 100%;
        margin: 0;
        padding: 0.85rem 1rem !important;
        text-align: left;
    }

    .navbar-actions {
        width: 100%;
        align-items: stretch !important;
        justify-content: stretch;
        gap: 10px !important;
    }

    .navbar-actions .btn,
    .navbar-actions a {
        flex: 1 1 0;
        min-width: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        text-align: center;
    }

    .landing-hero,
    .hero-premium,
    .plans-hero {
        padding: 72px 0 !important;
    }

    .landing-hero .row,
    .highlight-section .row {
        gap: 32px;
    }

    .landing-hero-title,
    .plans-title,
    .blog-index-title,
    .blog-post-title {
        font-size: clamp(2rem, 6vw, 3.2rem) !important;
        line-height: 1.08;
    }

    .landing-hero-actions {
        flex-wrap: wrap;
    }

    .landing-hero-actions .btn {
        flex: 1 1 220px;
    }

    .landing-hero-media {
        margin-top: 10px;
    }

    .feature-card-pro,
    .sidebar-widget {
        padding: 28px !important;
    }

    .plans-grid {
        --bs-gutter-y: 2rem;
    }

    .plan-card.best-seller-highlight,
    .card-premium.best-seller-highlight {
        transform: none !important;
    }

    .plan-card.best-seller-highlight:hover,
    .card-premium.best-seller-highlight:hover {
        transform: translateY(-4px) !important;
    }

    .blog-header {
        padding: 34px 0 26px !important;
    }

    .blog-article img.featured-image {
        max-height: 360px !important;
    }

    .sticky-cta-container {
        gap: 12px !important;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 72px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .navbar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand img {
        max-width: 132px;
    }

    .navbar-actions {
        flex-direction: column;
    }

    .navbar-actions .btn,
    .navbar-actions a {
        width: 100%;
    }

    .btn,
    .btn-soul-primary,
    .btn-outline-primary {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .section-title,
    .section-title-modern {
        font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
        line-height: 1.12;
    }

    .section-title,
    .section-title-modern,
    .plans-title,
    .landing-hero-title,
    .blog-index-title,
    .blog-post-title {
        width: min(100%, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        white-space: normal !important;
        overflow-wrap: break-word;
    }

    .section-subtitle,
    .lead {
        font-size: 1rem !important;
        line-height: 1.65;
    }

    .landing-hero,
    .hero-premium,
    .plans-hero,
    .blog-index-hero {
        padding: 50px 0 !important;
        text-align: center;
        overflow: hidden;
    }

    .landing-hero .lead,
    .plans-hero .lead,
    .blog-index-hero .lead {
        width: min(100%, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .landing-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .landing-hero-actions .btn {
        width: 100%;
        flex: 1 1 auto;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .landing-hero-media {
        display: block !important;
        margin-top: 28px;
    }

    .landing-hero-media img,
    .highlight-section img {
        border-radius: 14px !important;
    }

    .feature-card-pro {
        padding: 24px !important;
        text-align: left !important;
        border-radius: 14px !important;
    }

    .trust-logos-bar .d-flex {
        gap: 22px !important;
    }

    .plans-grid {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.6rem;
    }

    .plan-card,
    .card-premium {
        border-radius: 16px !important;
    }

    .plan-header,
    .plan-body,
    .plan-footer {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .plan-header {
        padding-top: 44px !important;
    }

    .popular-badge {
        min-width: 0 !important;
        width: max-content;
        max-width: calc(100% - 36px);
        padding: 9px 14px !important;
        font-size: 0.82rem !important;
        white-space: normal;
        text-align: center;
    }

    .discount-badge {
        right: 14px !important;
        font-size: 0.72rem !important;
        padding: 6px 11px !important;
    }

    .price-now {
        font-size: clamp(2.1rem, 10vw, 2.8rem) !important;
        padding: 16px !important;
    }

    .price-wrapper {
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .plan-user-price-note {
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .blog-header .breadcrumb .active {
        max-width: 180px !important;
    }

    .blog-content {
        font-size: 1rem !important;
        line-height: 1.75 !important;
    }

    .blog-article img.featured-image {
        max-height: 280px !important;
        border-radius: 12px !important;
        margin-bottom: 22px !important;
    }

    .newsletter-cta {
        padding: 24px 18px !important;
    }

    .newsletter-form .btn,
    .newsletter-form input {
        width: 100%;
    }

    .recent-post-item {
        gap: 12px !important;
    }

    .recent-post-thumb {
        width: 58px !important;
        height: 58px !important;
    }

    footer {
        text-align: center;
        padding-bottom: 110px !important;
    }

    footer .row {
        margin-left: 0;
        margin-right: 0;
    }

    footer .d-flex {
        justify-content: center;
    }

    footer .col-lg-4.text-lg-end {
        text-align: center !important;
    }

    .sticky-cta-container {
        left: 10px !important;
        right: 10px !important;
        bottom: -120px;
        padding: 10px 12px !important;
        border-radius: 18px 18px 0 0;
        gap: 8px !important;
    }

    .sticky-cta-button {
        width: 100%;
        min-height: 46px;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.95rem;
    }

    body.sticky-cta-visible .whatsapp-fab-container {
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px) scale(0.96);
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand img {
        max-width: 122px;
    }

    .section-title,
    .section-title-modern,
    .plans-title,
    .landing-hero-title,
    .blog-index-title,
    .blog-post-title {
        font-size: clamp(1.75rem, 9vw, 2.2rem) !important;
    }

    .btn-soul-primary,
    .btn-outline-primary,
    .btn-warning,
    .btn-outline-light {
        width: 100%;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .plan-features li {
        padding-left: 28px !important;
        font-size: 0.92rem !important;
    }

    .blog-index-hero {
        margin-bottom: 32px !important;
    }

    .blog-header .breadcrumb {
        font-size: 0.78rem !important;
    }

    .related-posts-section {
        padding: 42px 0 !important;
        margin-top: 42px !important;
    }
}

@media (hover: none) {
    .nav-link:hover,
    .card-premium:hover,
    .plan-card:hover,
    .feature-card-pro:hover,
    .related-post-card:hover,
    .sidebar-widget:hover {
        transform: none !important;
    }
}

/* Public visual presets
   Clean is the default CSS above. Premium and Colorful only activate through
   body classes set by the public layout. */
body.theme-premium {
    background: #f8fafc;
}

body.theme-premium .navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom-color: rgba(79, 152, 207, 0.16) !important;
    box-shadow: 0 14px 40px rgba(79, 152, 207, 0.08);
    backdrop-filter: blur(14px);
}

body.theme-premium .card,
body.theme-premium .plan-card,
body.theme-premium .card-premium,
body.theme-premium .feature-card-pro,
body.theme-premium .related-post-card,
body.theme-premium .sidebar-widget,
body.theme-premium .landing-card,
body.theme-premium .blog-post-card {
    border-color: rgba(79, 152, 207, 0.16) !important;
    box-shadow: 0 18px 48px rgba(31, 41, 55, 0.08) !important;
}

body.theme-premium .blog-header,
body.theme-premium .blog-index-hero,
body.theme-premium .landing-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(79, 152, 207, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #eef7ff 100%) !important;
}

body.theme-premium .sticky-cta-container {
    background: rgba(255, 255, 255, 0.94) !important;
    border-top: 1px solid rgba(79, 152, 207, 0.2);
    box-shadow: 0 -18px 50px rgba(79, 152, 207, 0.18) !important;
}

body.theme-premium .sticky-cta-text {
    color: #1a2f3a !important;
}

body.theme-premium .sticky-cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
}

body.theme-colorful {
    background: #fbfdff;
}

body.theme-colorful .navbar {
    background:
        linear-gradient(90deg, rgba(79, 152, 207, 0.1), rgba(251, 167, 50, 0.08)),
        rgba(255,255,255,0.96) !important;
    border-bottom-color: rgba(79, 152, 207, 0.22) !important;
    box-shadow: 0 12px 32px rgba(79, 152, 207, 0.1);
}

body.theme-colorful .btn-soul-primary,
body.theme-colorful .sticky-cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 72%, #2f75ad 100%) !important;
    box-shadow: 0 12px 26px rgba(79, 152, 207, 0.26) !important;
}

body.theme-colorful .premium-badge,
body.theme-colorful .section-badge,
body.theme-colorful .badge.bg-light,
body.theme-colorful .badge.text-primary {
    background: rgba(251, 167, 50, 0.14) !important;
    border: 1px solid rgba(251, 167, 50, 0.34);
    color: #d98100 !important;
}

body.theme-colorful .card,
body.theme-colorful .plan-card,
body.theme-colorful .card-premium,
body.theme-colorful .feature-card-pro,
body.theme-colorful .related-post-card,
body.theme-colorful .sidebar-widget,
body.theme-colorful .landing-card,
body.theme-colorful .blog-post-card {
    border-color: rgba(79, 152, 207, 0.2) !important;
    box-shadow: 0 16px 42px rgba(79, 152, 207, 0.1) !important;
}

body.theme-colorful .blog-header,
body.theme-colorful .blog-index-hero,
body.theme-colorful .landing-hero {
    background:
        radial-gradient(circle at 16% 14%, rgba(251, 167, 50, 0.2), transparent 30%),
        radial-gradient(circle at 84% 12%, rgba(79, 152, 207, 0.28), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #edf7ff 100%) !important;
}

body.theme-colorful .sticky-cta-container {
    background: linear-gradient(135deg, rgba(79, 152, 207, 0.98), rgba(59, 125, 174, 0.98)) !important;
}

body.theme-premium .blog-index-hero,
body.theme-colorful .blog-index-hero {
    background: linear-gradient(135deg, #1f5f8d 0%, #4f98cf 68%, #fba732 140%) !important;
    border-bottom: 1px solid rgba(31, 95, 141, 0.18);
}

body.theme-premium .blog-index-hero h1,
body.theme-premium .blog-index-hero p,
body.theme-colorful .blog-index-hero h1,
body.theme-colorful .blog-index-hero p {
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(15, 42, 63, 0.22);
}
