/* ============================================================
   assets/css/main.css — NovoMuse Group Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --nm-accent:      #8e7f71;
    --nm-accent-light:#a49484;
    --nm-bg-soft:     #f9f7f2;
    --nm-glass:       rgba(255, 255, 255, 0.6);
    --nm-glass-border:rgba(0, 0, 0, 0.05);
    --nm-font-main:   'Inter', sans-serif;
    --nm-font-heading:'Playfair Display', serif;
    --nm-shadow:      0 8px 20px rgba(0, 0, 0, 0.05);
    --nm-radius:      32px;
    --nm-charcoal:    #1e1e2a;
    --nm-highlight:   rgba(142, 127, 113, 0.08);
    --nm-static-accent: #6b9080;
    --nm-dynamic-accent:#b5838d;
    --nm-static-bg:   rgba(107, 144, 128, 0.06);
    --nm-dynamic-bg:  rgba(181, 131, 141, 0.05);
}

[data-bs-theme="dark"] {
    --nm-accent:       #b8a99a;
    --nm-accent-light: #cdbfb0;
    --nm-bg-soft:      #121212;
    --nm-glass:        rgba(30, 30, 35, 0.65);
    --nm-glass-border: rgba(255, 255, 255, 0.08);
    --nm-shadow:       0 8px 20px rgba(0, 0, 0, 0.3);
    --nm-highlight:    rgba(184, 169, 154, 0.1);
    --nm-static-accent:#8bbaaa;
    --nm-dynamic-accent:#d4a0ab;
    --nm-static-bg:    rgba(139, 186, 170, 0.06);
    --nm-dynamic-bg:   rgba(212, 160, 171, 0.05);
    color-scheme: dark;
}

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

body {
    font-family: var(--nm-font-main);
    overflow-x: hidden;
    background: var(--bs-body-bg);
    transition: background 0.3s;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .navbar-brand, .display-custom {
    font-family: var(--nm-font-heading);
    letter-spacing: -0.02em;
}

/* ---------- Glass Morphism ---------- */
.glass-card,
.navbar,
.collection-card,
.testimonial-card,
.footer-glass,
.blog-card,
.sidebar-card,
.profile-card,
.filter-toolbar,
.project-card,
.glass-panel,
.compare-card {
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--nm-glass-border);
    box-shadow: var(--nm-shadow);
}

/* ---------- Buttons ---------- */
.btn, .btn-nm, .btn-outline-custom, .filter-btn {
    border-radius: 40px !important;
    padding: 12px 28px;
    font-weight: 500;
    transition: all 0.25s ease;
}
.btn-nm {
    background: var(--nm-accent);
    color: #fff;
    border: none;
}
.btn-nm:hover, .btn-nm:focus {
    background: var(--nm-accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.btn-outline-custom, .filter-btn {
    background: transparent;
    border: 1.5px solid var(--nm-accent);
    color: var(--nm-accent);
}
.btn-outline-custom:hover,
.filter-btn.active,
.filter-btn:hover {
    background: var(--nm-accent);
    color: #fff;
}

/* ---------- Navbar ---------- */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.navbar-brand { font-size: 1.5rem; }
.nav-link { transition: color 0.2s; }
.nav-link.active { color: var(--nm-accent) !important; }
.navbar-custom {
    border-radius: 60px;
    margin-top: 1rem;
    padding: 0.7rem 2rem;
}

/* ---------- Form Controls ---------- */
.form-control, textarea.form-control {
    border-radius: 40px !important;
    padding: 12px 20px;
    border: 1px solid var(--nm-glass-border);
}
textarea.form-control { border-radius: 24px !important; }
select.form-control, select.form-select { border-radius: 40px !important; }
.form-control:focus { border-color: var(--nm-accent); box-shadow: 0 0 0 0.2rem rgba(142,127,113,.25); }

/* ---------- Footer ---------- */
.footer-glass {
    border-top: 1px solid var(--nm-glass-border);
    padding: 3rem 0 2rem;
}
.footer-link {
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}
.footer-link:hover { opacity: 1; color: var(--nm-accent); }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 40px;
    background: rgba(128,128,128,0.1);
    color: inherit;
    text-decoration: none;
    transition: all 0.25s;
}
.social-icon:hover {
    background: var(--nm-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    padding: 1rem;
    color: #fff;
}

/* ---------- Hero (index) ---------- */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--nm-bg-soft) 0%, transparent 100%);
}
.hero-img {
    border-radius: 48px;
    object-fit: cover;
    height: 560px;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.25);
}

/* ---------- Infinite Slider ---------- */
.slider-container {
    overflow: hidden;
    padding: 50px 0;
    white-space: nowrap;
}
.slider-track {
    display: flex;
    width: calc(350px * 12);
    animation: scroll 40s linear infinite;
}
.slider-item { width: 350px; padding: 0 12px; flex-shrink: 0; }
.slider-item img {
    width: 100%; height: 440px;
    object-fit: cover;
    transition: all 0.3s;
    border-radius: 28px;
}
.slider-item img:hover { transform: scale(1.02); filter: brightness(0.92); }
.style-a { border-radius: 32px; }
.style-b { border-radius: 90px 90px 32px 32px; }
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 6)); }
}

/* ---------- Collection Cards ---------- */
.collection-card {
    padding: 40px 30px;
    border-radius: var(--nm-radius);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}
.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
    color: inherit;
}

/* ---------- Testimonials ---------- */
.testimonial-card { border-radius: var(--nm-radius); padding: 2rem; height: 100%; }

/* ---------- Stats ---------- */
.stat-card { border-right: 1px solid rgba(var(--bs-emphasis-color-rgb), 0.15); }
@media (max-width: 768px) {
    .stat-card { border-right: none; border-bottom: 1px solid rgba(var(--bs-emphasis-color-rgb), 0.1); padding: 20px 0; }
}

/* ---------- Section Utilities ---------- */
.bg-diff-soft { background: var(--nm-bg-soft); }
[data-bs-theme="dark"] .bg-diff-soft { background: #1e1e24; }

/* ---------- Page-specific containers ---------- */
.about-container, .careers-container, .contact-container, .blog-container,
.portfolio-container, .press-container, .privacy-container, .accessibility-container,
.cookies-container, .release-container, .faq-container {
    padding-top: 140px;
    padding-bottom: 80px;
}

/* ---------- Glass Cards (inner pages) ---------- */
.about-card, .careers-card, .contact-card, .press-card,
.privacy-card, .accessibility-card, .cookies-card, .release-card, .faq-card {
    background: var(--nm-glass);
    border-radius: var(--nm-radius);
    padding: 2.5rem;
    border: 1px solid var(--nm-glass-border);
    backdrop-filter: blur(8px);
    margin-bottom: 2rem;
}

/* ---------- About ---------- */
.about-hero-img { border-radius: 28px; object-fit: cover; height: 480px; width: 100%; }
.team-img { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; }
.value-icon { width: 60px; height: 60px; border-radius: 20px; background: var(--nm-highlight); display: flex; align-items: center; justify-content: center; }

/* ---------- Blog ---------- */
.blog-card { border-radius: 28px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.18); }
.blog-img { width: 100%; height: 220px; object-fit: cover; }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nm-accent); background: var(--nm-highlight); padding: 4px 12px; border-radius: 40px; margin-bottom: 0.75rem; }
.featured-article { border-radius: 32px; overflow: hidden; position: relative; }
.featured-img { width: 100%; height: 480px; object-fit: cover; }
.featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff; }
.featured-title { font-size: 2rem; }
.featured-link { color: #fff; text-decoration: underline; opacity: 0.85; }
.featured-link:hover { opacity: 1; }
.sidebar-card { border-radius: 24px; padding: 1.5rem; }
.sidebar-card ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--nm-glass-border); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card a { text-decoration: none; color: inherit; transition: color 0.2s; }
.sidebar-card a:hover { color: var(--nm-accent); }

/* ---------- Portfolio ---------- */
.profile-card { border-radius: var(--nm-radius); overflow: hidden; transition: transform 0.3s; }
.profile-card:hover { transform: translateY(-5px); }
.profile-img { width: 100%; height: 220px; object-fit: cover; }
.profile-content { padding: 1.5rem; }
.filter-toolbar { border-radius: 60px; padding: 0.5rem 1rem; display: inline-flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; font-size: 0.875rem; }
.project-card { border-radius: 28px; overflow: hidden; transition: transform 0.3s; position: relative; }
.project-card:hover { transform: translateY(-6px); }
.project-img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-img { transform: scale(1.05); }
.project-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; }
.project-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

/* ---------- Careers ---------- */
.careers-card { border-radius: var(--nm-radius); padding: 2rem; border: 1px solid var(--nm-glass-border); backdrop-filter: blur(8px); transition: transform 0.2s; height: 100%; }
.careers-card:hover { transform: translateY(-4px); }
.job-card { border-radius: 24px; background: var(--nm-glass); border: 1px solid var(--nm-glass-border); padding: 1.5rem; transition: transform 0.2s; }
.job-card:hover { transform: translateY(-3px); }
.benefit-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--nm-highlight); display: flex; align-items: center; justify-content: center; }

/* ---------- Contact ---------- */
.contact-info-item { padding: 0.5rem 0; border-bottom: 1px solid var(--nm-glass-border); }
.contact-info-item:last-child { border-bottom: none; }
.studio-card { border-radius: var(--nm-radius); overflow: hidden; }
.map-embed { width: 100%; height: 200px; border: none; border-radius: 16px; }

/* ---------- Press ---------- */
.press-card { border-radius: var(--nm-radius); padding: 2rem; border: 1px solid var(--nm-glass-border); backdrop-filter: blur(8px); transition: transform 0.2s; height: 100%; }
.press-card:hover { transform: translateY(-4px); }
.press-logo { height: 32px; object-fit: contain; opacity: 0.6; transition: opacity 0.2s; }
.press-logo:hover { opacity: 1; }
.award-badge { width: 80px; height: 80px; border-radius: 50%; background: var(--nm-highlight); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.featured-press { border-radius: var(--nm-radius); overflow: hidden; }

/* ---------- Pricing ---------- */
.pricing-hero { padding: 8rem 0 4rem; background: radial-gradient(circle at 0% 20%, rgba(142,127,113,.08) 0%, transparent 60%); }
.price-card { border-radius: var(--nm-radius); padding: 2rem; border: 1px solid var(--nm-glass-border); backdrop-filter: blur(8px); transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -12px rgba(0,0,0,0.12); }
.price-card.popular { border-color: var(--nm-accent); }
.popular-badge { background: var(--nm-accent); color: #fff; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: 40px; }
.price-amount { font-family: var(--nm-font-heading); font-size: 2rem; font-weight: 700; color: var(--nm-accent); }
.feature-check { color: var(--nm-accent); }
.price-feature-list { list-style: none; padding: 0; }
.price-feature-list li { padding: 0.4rem 0; display: flex; gap: 0.5rem; align-items: flex-start; }
.currency-selector { border-radius: 40px; padding: 8px 20px; border: 1px solid var(--nm-glass-border); background: var(--nm-glass); }

/* ---------- FAQ ---------- */
.faq-hero { padding-top: 140px; padding-bottom: 60px; background: linear-gradient(135deg, var(--nm-bg-soft) 0%, transparent 100%); }
.search-wrap { position: relative; max-width: 480px; margin: 0 auto; }
#faqSearch { width: 100%; padding: 14px 24px 14px 52px; border-radius: 40px; border: 1px solid var(--nm-glass-border); background: var(--nm-glass); backdrop-filter: blur(12px); font-size: 1rem; }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); opacity: 0.5; }
.accordion-button { font-weight: 500; background: transparent; }
.accordion-button:not(.collapsed) { background: var(--nm-highlight); color: var(--nm-accent); box-shadow: none; }
.accordion-item { border-radius: 16px !important; margin-bottom: 0.5rem; overflow: hidden; border: 1px solid var(--nm-glass-border); background: var(--nm-glass); }
.faq-category-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--nm-accent); background: var(--nm-highlight); padding: 6px 16px; border-radius: 40px; }

/* ---------- Catalogue (Compare) ---------- */
.hero-compare { padding: 8rem 0 4rem; background: radial-gradient(circle at 0% 20%, rgba(142,127,113,.08) 0%, transparent 60%); }
.compare-card { border-radius: var(--nm-radius); padding: 2rem 1.5rem; transition: transform 0.3s; }
.compare-card:hover { transform: translateY(-6px); }
.compare-card.highlighted { border-color: var(--nm-accent); }
.feature-table-wrapper { border-radius: var(--nm-radius); overflow: hidden; }
.feature-table th, .feature-table td { padding: 1rem 1.5rem; vertical-align: middle; }
.feature-table thead th { background: var(--nm-highlight); font-weight: 600; }
.check-yes { color: #2a9d72; }
.check-no { color: rgba(var(--bs-emphasis-color-rgb), 0.25); }

/* ---------- Privacy / Accessibility / Cookies ---------- */
.privacy-card h2, .accessibility-card h2, .cookies-card h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--nm-glass-border);
}
.privacy-card h2:first-child, .accessibility-card h2:first-child, .cookies-card h2:first-child { margin-top: 0; }

/* ---------- Press Release ---------- */
.release-header { border-bottom: 1px solid var(--nm-glass-border); padding-bottom: 1.5rem; margin-bottom: 2rem; }
.release-card h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; }

/* ---------- Admin Panel ---------- */
.admin-sidebar { width: 240px; min-height: 100vh; background: var(--nm-glass); border-right: 1px solid var(--nm-glass-border); backdrop-filter: blur(12px); }
.admin-sidebar .nav-link { border-radius: 12px; padding: 10px 16px; margin-bottom: 4px; color: inherit; transition: all 0.2s; }
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active { background: var(--nm-highlight); color: var(--nm-accent); }
.admin-main { flex: 1; padding: 2rem; }
.stat-widget { border-radius: 20px; padding: 1.5rem; background: var(--nm-glass); border: 1px solid var(--nm-glass-border); }
.data-table { border-radius: 20px; overflow: hidden; }
.data-table thead th { background: var(--nm-highlight); font-weight: 600; border: none; }
.data-table td { vertical-align: middle; }
.badge-status { border-radius: 40px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; }

/* ---------- Alerts ---------- */
.alert { border-radius: 20px; }

/* ============================================================
   PRESS PAGE
   ============================================================ */
.badge-press {
    background: var(--nm-accent);
    color: white;
    border-radius: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 500;
}
.press-quote {
    font-size: 1.05rem;
    font-style: italic;
    border-left: 3px solid var(--nm-accent);
    padding-left: 1.2rem;
    margin: 0;
}
.award-icon {
    background: var(--nm-accent);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.press-logo {
    max-height: 40px;
    width: auto;
    filter: grayscale(0.2);
    transition: 0.2s;
}
.press-logo:hover { filter: none; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--nm-bg-soft) 0%, transparent 100%);
}
.country-selector-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.country-selector {
    display: inline-flex;
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--nm-glass-border);
    border-radius: 48px;
    padding: 6px;
    gap: 4px;
}
.country-option {
    padding: 12px 28px;
    border-radius: 42px;
    border: none;
    background: transparent;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--bs-body-color);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.country-option .flag-icon { font-size: 1.2rem; line-height: 1; }
.country-option.active {
    background: var(--nm-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(142,127,113,0.3);
    font-weight: 600;
}
.country-option:hover:not(.active) { background: var(--nm-highlight); }
.country-currency-note {
    font-size: 0.8rem;
    opacity: 0.55;
    text-align: center;
    margin-top: 8px;
    transition: all 0.3s;
}
.info-banner {
    background: var(--nm-glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--nm-glass-border);
    border-radius: 24px;
    padding: 28px 32px;
    margin-bottom: 48px;
}
.info-banner .icon-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.icon-static  { background: var(--nm-static-bg);  color: var(--nm-static-accent); }
.icon-dynamic { background: var(--nm-dynamic-bg); color: var(--nm-dynamic-accent); }
.badge-static {
    background: var(--nm-static-bg);
    color: var(--nm-static-accent);
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-dynamic {
    background: var(--nm-dynamic-bg);
    color: var(--nm-dynamic-accent);
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 8px;
}
.static-card {
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--nm-glass-border);
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}
.static-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.08); }
.static-card .price-amount {
    font-family: var(--nm-font-heading);
    font-size: 2rem; font-weight: 700;
    color: var(--nm-static-accent);
    line-height: 1; transition: all 0.3s;
}
.static-card .price-unit { font-size: 0.8rem; opacity: 0.55; }
.dynamic-card {
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    border: 1px dashed var(--nm-dynamic-accent);
    border-radius: 24px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}
.dynamic-card:hover { border-style: solid; box-shadow: 0 12px 28px -10px rgba(181,131,141,0.12); }
.dynamic-card .price-range {
    font-family: var(--nm-font-heading);
    font-size: 1.75rem; font-weight: 700;
    color: var(--nm-dynamic-accent);
    line-height: 1; transition: all 0.3s;
}
.section-divider {
    position: relative; text-align: center; margin: 48px 0;
}
.section-divider::before {
    content: ''; position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px; background: var(--nm-glass-border);
}
.section-divider span {
    position: relative;
    background: var(--bs-body-bg);
    padding: 0 20px;
    font-family: var(--nm-font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--nm-accent);
}
[data-bs-theme="dark"] .section-divider span { background: #1a1a1e; }
.price-updated { animation: pricePulse 0.5s ease; }
@keyframes pricePulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}
.fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
}
.fee-table thead th {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.05em; padding: 10px 16px;
    border: none; font-weight: 600; opacity: 0.6;
}
.fee-table tbody td {
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    padding: 14px 16px;
    border: 1px solid var(--nm-glass-border);
    vertical-align: middle; font-size: 0.9rem; transition: all 0.3s;
}
.fee-table tbody td:first-child { border-radius: 14px 0 0 14px; }
.fee-table tbody td:last-child {
    border-radius: 0 14px 14px 0;
    font-weight: 600; text-align: right;
    font-family: var(--nm-font-heading);
    font-size: 1.05rem; white-space: nowrap;
}
.fee-table .row-static td:last-child  { color: var(--nm-static-accent); }
.fee-table .row-dynamic td:last-child { color: var(--nm-dynamic-accent); font-style: italic; }
.note-callout {
    background: var(--nm-highlight);
    border-left: 4px solid var(--nm-accent);
    border-radius: 0 16px 16px 0;
    padding: 16px 20px;
    font-size: 0.88rem; line-height: 1.6;
}
.cta-glass {
    background: var(--nm-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--nm-glass-border);
    border-radius: 32px;
    padding: 48px 32px; text-align: center;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px; margin-top: 16px;
}
.comparison-cell {
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--nm-glass-border);
    border-radius: 14px;
    padding: 14px; text-align: center; font-size: 0.85rem;
}
.comparison-cell.active-country {
    border: 2px solid var(--nm-accent);
    background: var(--nm-highlight);
}
.comparison-cell .country-name {
    font-weight: 600; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.04em;
    opacity: 0.55; margin-bottom: 4px;
}
.comparison-cell .price {
    font-family: var(--nm-font-heading);
    font-size: 1.1rem; font-weight: 700;
}

/* ============================================================
   CATALOGUE / COMPARE PAGE
   ============================================================ */
.hero-compare {
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at 0% 20%, rgba(142,127,113,0.08) 0%, transparent 60%);
}
.compare-card {
    border-radius: 2rem;
    padding: 2rem 1.8rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.compare-card:hover {
    transform: translateY(-8px);
    border-color: var(--nm-accent-light);
}
.service-icon {
    background: rgba(142,127,113,0.12);
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2rem; margin-bottom: 1.5rem;
}
.comparison-table {
    border-radius: 1.75rem; overflow: hidden;
    background: var(--nm-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--nm-glass-border);
}
.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1rem; vertical-align: middle;
    border-bottom-color: rgba(var(--bs-secondary-color-rgb), 0.12);
}
.comparison-table th {
    font-weight: 700;
    font-family: var(--nm-font-heading);
    background: rgba(142,127,113,0.08);
}
.badge-service {
    background: var(--nm-accent);
    color: white; border-radius: 40px;
    padding: 6px 16px; font-size: 0.7rem; font-weight: 500;
}
.shop-badge {
    background: var(--nm-accent);
    color: white; border-radius: 40px;
    padding: 4px 12px; font-size: 0.7rem;
    font-weight: 500; display: inline-block;
}
.glass-panel {
    background: var(--nm-glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--nm-glass-border);
    box-shadow: var(--nm-shadow);
}
.bg-soft-accent { background: var(--nm-bg-soft); }
[data-bs-theme="dark"] .bg-soft-accent { background: #1e1e24; }

/* ============================================================
   PRIVACY / COOKIES / ACCESSIBILITY — LEGAL PAGES
   ============================================================ */
.privacy-card,
.cookies-card,
.accessibility-card {
    background: var(--nm-glass);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--nm-glass-border);
    backdrop-filter: blur(8px);
}
.privacy-card h2,
.cookies-card h2,
.accessibility-card h2 {
    font-size: 1.75rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}
.privacy-card h2:first-of-type,
.cookies-card h2:first-of-type,
.accessibility-card h2:first-of-type { margin-top: 0; }
.privacy-card p, .privacy-card li,
.cookies-card p,  .cookies-card li,
.accessibility-card p, .accessibility-card li {
    line-height: 1.7; opacity: 0.85;
}
.privacy-card a, .cookies-card a, .accessibility-card a {
    color: var(--nm-accent); text-decoration: none;
}
.privacy-card a:hover, .cookies-card a:hover, .accessibility-card a:hover {
    text-decoration: underline;
}
.badge-ada {
    background: var(--nm-accent);
    color: white;
    border-radius: 40px;
    padding: 0.35rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.cookie-table {
    width: 100%; border-collapse: collapse; margin: 1.5rem 0;
}
.cookie-table th,
.cookie-table td {
    border: 1px solid var(--nm-glass-border);
    padding: 12px; text-align: left;
}
.cookie-table th {
    background: rgba(0,0,0,0.05);
    font-weight: 600;
}
[data-bs-theme="dark"] .cookie-table th { background: rgba(255,255,255,0.05); }

/* ============================================================
   PRESS RELEASE (full-release / single post)
   ============================================================ */
.release-card {
    background: var(--nm-glass);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--nm-glass-border);
    backdrop-filter: blur(8px);
}
.release-header {
    border-bottom: 1px solid var(--nm-glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
.release-body p    { line-height: 1.8; margin-bottom: 1.5rem; }
.release-body h2   { font-size: 1.8rem; margin-top: 2rem; margin-bottom: 1rem; }
.release-body h3   { font-size: 1.4rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.quote-block {
    background: rgba(142,127,113,0.1);
    border-left: 4px solid var(--nm-accent);
    padding: 1.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    font-style: italic;
}

/* ============================================================
   SINGLE ARTICLE (post.php)
   ============================================================ */
.article-hero      { padding-top: 140px; padding-bottom: 0; }
.article-cover     { width: 100%; height: 480px; object-fit: cover; border-radius: 32px; margin-bottom: 2.5rem; }
.article-body      { max-width: 760px; margin: 0 auto; }
.article-body p    { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; opacity: 0.88; }
.article-body h2   { font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3   { font-size: 1.4rem; margin-top: 1.8rem; margin-bottom: 0.75rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li   { line-height: 1.7; margin-bottom: 0.4rem; opacity: 0.88; }
.article-body blockquote {
    background: rgba(142,127,113,0.08);
    border-left: 4px solid var(--nm-accent);
    padding: 1.25rem 1.5rem;
    border-radius: 0 16px 16px 0;
    font-style: italic; margin: 2rem 0;
}
.article-meta      { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-bottom: 2rem; }
.article-tag       {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--nm-accent); background: var(--nm-highlight);
    padding: 4px 14px; border-radius: 40px;
}
.related-card      { border-radius: 24px; overflow: hidden; transition: transform 0.3s; text-decoration: none; color: inherit; display: block; }
.related-card:hover { transform: translateY(-5px); color: inherit; }
.related-img       { width: 100%; height: 180px; object-fit: cover; }
.related-body      { padding: 1.2rem; background: var(--nm-glass); border: 1px solid var(--nm-glass-border); border-radius: 0 0 24px 24px; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-img { height: 360px; }
    .slider-item img { height: 320px; }
    .navbar-custom { border-radius: 16px; margin-top: 0; }
}
@media (max-width: 767px) {
    .hero-section { padding-top: 110px; }
    .featured-img { height: 300px; }
    .filter-toolbar { border-radius: 16px; }
    .admin-sidebar { width: 100%; min-height: auto; }
}
@media (max-width: 767px) {
    .country-selector { flex-wrap: wrap; justify-content: center; }
    .country-option { padding: 10px 18px; font-size: 0.82rem; }
    .static-card, .dynamic-card { margin-bottom: 16px; }
    .fee-table tbody td { font-size: 0.78rem; padding: 10px 12px; }
    .comparison-grid { grid-template-columns: 1fr; }
    .article-cover { height: 260px; border-radius: 20px; }
    .release-card { padding: 1.5rem; }
    .pricing-hero { padding-top: 110px; }
}
