/* ================================================================
   Nuur Hugo — Custom CSS
   Visual identity: white bg, dark rgb(28,29,36) headings,
   grey rgb(120,122,124) body text, gradient accent #ff5988→#500c7f
   ================================================================ */

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

html { height: 100%; scroll-behavior: smooth; }

body {
    min-height: 100%;
    background: #ffffff;
    color: rgb(120, 122, 124);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Sticky footer */
.nuur-site-wrap_033bffff6a2e5d0d {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.nuur-page-main_783f9e5cdf3bf244 { flex: 1; display: flex; flex-direction: column; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: rgb(28, 29, 36);
    line-height: 1.25;
    font-weight: 700;
    margin-top: 0;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; }

a {
    color: rgb(28, 29, 36);
    text-decoration: none;
    transition: color 0.15s;
}
a:hover { color: rgba(28, 29, 36, 0.7); }

img { max-width: 100%; height: auto; }

/* ── Header ───────────────────────────────────────────────────── */
.nuur-header_730d7af78e66e7b6 {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 80px;
    background: #ffffff;
    transition: box-shadow 0.2s ease;
}
.nuur-header_730d7af78e66e7b6.is-sticky {
    box-shadow: 0 2px 16px rgba(28, 29, 36, 0.10);
}
@media (max-width: 767px) {
    .nuur-header_730d7af78e66e7b6 { height: 70px; }
}

.nuur-header-inner_f4bc50ecb6dad6e1 {
    max-width: 1320px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    gap: 16px;
}
@media (max-width: 767px) {
    .nuur-header-inner_f4bc50ecb6dad6e1 { height: 70px; padding: 0 20px; }
}

.nuur-header-logo_375c19c903f946a5 img {
    max-height: 56px;
    width: auto;
    display: block;
}

/* Nav */
.nuur-header-nav_b0d18f9fcca8ac9d { display: flex; margin-left: auto; }
.nuur-header-nav_b0d18f9fcca8ac9d ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}
.nuur-header-nav_b0d18f9fcca8ac9d ul li { position: relative; height: 80px; display: inline-flex; align-items: center; }
.nuur-header-nav_b0d18f9fcca8ac9d ul li a {
    display: block;
    padding: 0 16px;
    color: rgb(28, 29, 36);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.15s;
}
/* Underline hover — grows from left */
.nuur-header-nav_b0d18f9fcca8ac9d ul li a::before {
    content: '';
    position: absolute;
    bottom: -1px; left: 16px; right: 16px;
    height: 1px;
    background: rgb(28, 29, 36);
    animation: nav-line-out 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    transform-origin: left;
}
.nuur-header-nav_b0d18f9fcca8ac9d ul li a:hover::before,
.nuur-header-nav_b0d18f9fcca8ac9d ul li.active > a::before {
    animation: nav-line-in 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
@keyframes nav-line-in  { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes nav-line-out { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* Dropdown */
.nuur-dropdown_1d2fea6648031d5f {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    list-style: none;
    box-shadow: 0 8px 34px rgba(22, 24, 26, 0.13);
    z-index: 100;
}
.nuur-header-nav_b0d18f9fcca8ac9d ul li.has-dropdown_c7edfa0a27b5157f:hover .nuur-dropdown_1d2fea6648031d5f { display: block; }
.nuur-dropdown_1d2fea6648031d5f li { height: auto; }
.nuur-dropdown_1d2fea6648031d5f li a {
    padding: 8px 24px;
    font-size: 14px;
    color: rgba(28, 29, 36, 0.7);
    display: block;
}
.nuur-dropdown_1d2fea6648031d5f li a::before { display: none; }
.nuur-dropdown_1d2fea6648031d5f li a:hover { color: rgb(28, 29, 36); }

@media (max-width: 991px) { .nuur-header-nav_b0d18f9fcca8ac9d { display: none; } }

/* Header Right */
.nuur-header-right_8d2adc2217155a51 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Play Button */
.nuur-play-btn_f0ae04cf43a2aa25 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #ff5988, #500c7f, #ff5988);
    background-size: 300% 100%;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    padding: 11px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-position 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.3s;
    box-shadow: 0 6px 30px rgba(21, 25, 29, 0.13);
    white-space: nowrap;
}
.nuur-play-btn_f0ae04cf43a2aa25:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 36px rgba(21, 25, 29, 0.19);
    color: #fff !important;
}
.nuur-play-btn--lg_b3aeb3a4717fdbc7 { padding: 14px 34px; font-size: 15px; }

.nuur-btn-short_bb4240aed1416678 { display: none; }
.nuur-btn-full_6742a826aa5f2cac  { display: inline; }
@media (max-width: 767px) {
    .nuur-btn-full_6742a826aa5f2cac  { display: none !important; }
    .nuur-btn-short_bb4240aed1416678 { display: inline !important; }
}

/* Hamburger */
.nuur-hamburger_0ba296ba2be998c8 {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: 16px;
    cursor: pointer;
    color: rgb(28, 29, 36);
    font-family: 'Outfit', sans-serif;
}
.nuur-hamburger-bar_87c5f1820470a6ce {
    display: block;
    position: relative;
    width: 24px;
    height: 10px;
}
.nuur-hamburger-bar_87c5f1820470a6ce::before,
.nuur-hamburger-bar_87c5f1820470a6ce::after {
    content: '';
    position: absolute;
    right: 0;
    background: rgb(28, 29, 36);
    height: 2px;
    border-radius: 2px;
    transition: all 0.15s linear;
}
.nuur-hamburger-bar_87c5f1820470a6ce::before { top: 0; width: 70%; }
.nuur-hamburger-bar_87c5f1820470a6ce::after  { bottom: 0; width: 100%; }
.nuur-hamburger_0ba296ba2be998c8:hover .nuur-hamburger-bar_87c5f1820470a6ce::before { width: 100%; }
/* Close state */
.nuur-hamburger_0ba296ba2be998c8.is-open .nuur-hamburger-bar_87c5f1820470a6ce::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 100%;
}
.nuur-hamburger_0ba296ba2be998c8.is-open .nuur-hamburger-bar_87c5f1820470a6ce::after {
    top: 50%; bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 991px) { .nuur-hamburger_0ba296ba2be998c8 { display: inline-block; } }

/* ── Mobile Menu ──────────────────────────────────────────────── */
/* Slides in from left (Nuur style) */
.nuur-mobile-menu_58a2a0610b505a67 {
    position: fixed;
    top: 0; left: -100%;
    width: 300px; max-width: 100%;
    height: 100%;
    z-index: 1100;
    background: #ffffff;
    padding: 30px;
    overflow-y: auto;
    box-shadow: 0 0 36px rgba(22, 25, 28, 0.17);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nuur-mobile-menu_58a2a0610b505a67.is-open { left: 0; }

.nuur-menu-backdrop_65a3abaec7217f6d {
    position: fixed;
    inset: 0;
    background: rgba(28, 29, 36, 0.45);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.nuur-menu-backdrop_65a3abaec7217f6d.is-visible { opacity: 1; pointer-events: auto; }

.nuur-menu-close_7a330fbfcf33a01e {
    position: absolute; top: 16px; right: 16px;
    background: transparent; border: none;
    color: rgba(28, 29, 36, 0.55); font-size: 20px;
    cursor: pointer; line-height: 1; padding: 4px 8px;
    transition: color 0.15s;
}
.nuur-menu-close_7a330fbfcf33a01e:hover { color: rgb(28, 29, 36); }

.nuur-menu-logo_745b42744a05f978 { margin-bottom: 28px; margin-top: 8px; }
.nuur-menu-logo_745b42744a05f978 img { max-height: 40px; }

.nuur-mobile-menu_58a2a0610b505a67 nav ul {
    list-style: none; margin: 0; padding: 0;
}
.nuur-mobile-menu_58a2a0610b505a67 nav ul li {
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(28, 29, 36, 0.15);
}
.nuur-mobile-menu_58a2a0610b505a67 nav ul li:last-child { border-bottom: 0; }
.nuur-mobile-menu_58a2a0610b505a67 nav ul li a {
    display: inline-block; padding: 10px 0;
    color: rgb(28, 29, 36);
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
.nuur-mobile-menu_58a2a0610b505a67 nav ul li a:hover { color: #ff5988; }

.nuur-menu-contact_c4b61756de9c6768 {
    margin-top: 24px; padding-top: 20px;
    border-top: 1px dashed rgba(28, 29, 36, 0.15);
}
.nuur-menu-contact_c4b61756de9c6768 p {
    color: rgba(28, 29, 36, 0.6); font-size: 13px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.nuur-menu-contact_c4b61756de9c6768 i { color: #ff5988; }
.nuur-menu-contact_c4b61756de9c6768 a { color: rgba(28, 29, 36, 0.6); }
.nuur-menu-contact_c4b61756de9c6768 a:hover { color: rgb(28, 29, 36); }

/* ── Header placeholder (push content below fixed header) ─────── */
.nuur-header-placeholder_3266f5dc5c5b9cfe { height: 80px; }
@media (max-width: 767px) { .nuur-header-placeholder_3266f5dc5c5b9cfe { height: 70px; } }

/* ── Post Hero (single / home / section pages) ───────────────── */
/* Wrapper adds the same horizontal gutters as .container (30px each side) */
.nuur-post-hero-wrap_f23a121c3c0f1c9d {
    padding: 0 30px;
}
@media (max-width: 575px) {
    .nuur-post-hero-wrap_f23a121c3c0f1c9d { padding: 0 20px; }
}

.nuur-post-hero_050db33195dab14f {
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}
@media (max-width: 991px) {
    .nuur-post-hero_050db33195dab14f { background-attachment: scroll; }
}
.nuur-post-hero-overlay_82fd0d0895222eab {
    width: 100%;
    background: transparent;
    padding: 36px 0 40px;
}
@media (max-width: 767px) {
    .nuur-post-hero-overlay_82fd0d0895222eab { padding: 28px 0 30px; }
}
.nuur-post-meta_304fa1e59b127803 {
    list-style: none; margin: 0 0 14px; padding: 0;
    display: flex; flex-wrap: wrap; gap: 4px 16px;
}
.nuur-post-meta_304fa1e59b127803 li {
    font-family: 'Outfit', sans-serif;
    font-size: 12px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}
.nuur-post-meta_304fa1e59b127803 li + li::before {
    content: '·'; margin-right: 16px;
    color: rgba(255,255,255,0.35);
}
.nuur-post-title_31e7e33c7bf0c68b {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}
.nuur-post-author_d63bd7515662f8ba {
    font-size: 13px; color: rgba(255,255,255,0.55);
    font-family: 'Outfit', sans-serif;
    font-style: italic;
}
.nuur-post-author_d63bd7515662f8ba span { color: rgba(255,255,255,0.85); font-style: normal; }

/* .nuur-section-banner_146769dbdc60bcd9 removed — section pages now use the same
   .nuur-post-hero_050db33195dab14f full-bleed fixed hero as single pages */

/* ── Content Areas ────────────────────────────────────────────── */
.nuur-content-area_00952ff1d09a1c56,
.nuur-home-content-area_41983fcf7ede4b83 {
    padding: 40px 0 80px;
}
@media (max-width: 767px) {
    .nuur-content-area_00952ff1d09a1c56,
    .nuur-home-content-area_41983fcf7ede4b83 { padding: 28px 0 60px; }
}

/* ── Article Prose ────────────────────────────────────────────── */
.nuur-article,
.nuur-article-home {
    font-size: 16px;
    line-height: 1.85;
    color: rgb(120, 122, 124);
    width: 100%;
}
.nuur-article > * + *,
.nuur-article-home > * + * { margin-top: 1.2em; }

.nuur-article h1,.nuur-article h2,.nuur-article h3,
.nuur-article h4,.nuur-article h5,.nuur-article h6,
.nuur-article-home h1,.nuur-article-home h2,.nuur-article-home h3,
.nuur-article-home h4,.nuur-article-home h5,.nuur-article-home h6 {
    color: rgb(28, 29, 36);
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.4em;
}
.nuur-article h1,.nuur-article-home h1 { font-size: 2.2rem; }
.nuur-article h2,.nuur-article-home h2 { font-size: 1.65rem; }
.nuur-article h3,.nuur-article-home h3 { font-size: 1.3rem; }
.nuur-article h4,.nuur-article-home h4 { font-size: 1.1rem; }


.nuur-article-title_3e0dde2f5504375f {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: rgb(28, 29, 36);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(28, 29, 36, 0.15);
}

/* Lists */
.nuur-article ul:not([class]),
.nuur-article-home ul:not([class]) {
    list-style: disc; padding-left: 1.6em; margin-bottom: 1em;
}
.nuur-article ol:not([class]),
.nuur-article-home ol:not([class]) {
    list-style: decimal; padding-left: 1.6em; margin-bottom: 1em;
}
.nuur-article ul:not([class]) li,
.nuur-article ol:not([class]) li,
.nuur-article-home ul:not([class]) li,
.nuur-article-home ol:not([class]) li {
    list-style: inherit; margin-bottom: 0.3em;
}

/* Links inside articles */
.nuur-article a, .nuur-article-home a {
    color: rgb(28, 29, 36);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}
.nuur-article a:hover, .nuur-article-home a:hover { color: rgba(28, 29, 36, 0.65); }

/* Images inside articles */
.nuur-article img, .nuur-article-home img {
    width: 100%; max-width: 100%; height: auto;
    border-radius: 6px;
    display: block;
    margin: 1.5em 0;
}
.nuur-img_b134f0b5e4f735bb { border-radius: 6px; }

/* iFrames */
.nuur-article iframe, .nuur-article-home iframe {
    width: 100% !important; max-width: 100% !important;
    height: 500px; display: block;
    border: none; border-radius: 6px;
    margin: 1.5em 0;
}
@media (max-width: 767px) {
    .nuur-article iframe, .nuur-article-home iframe { height: 280px; }
}

/* Blockquote */
.nuur-article blockquote,
.nuur-article-home blockquote {
    border-left: 2px solid rgba(28, 29, 36, 0.2);
    padding: 10px 20px;
    margin: 1.5em 0;
    font-style: italic;
    color: rgba(28, 29, 36, 0.6);
}

/* Code */
.nuur-article code, .nuur-article-home code {
    background: rgb(241, 242, 250);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
    color: rgb(28, 29, 36);
}
.nuur-article pre, .nuur-article-home pre {
    background: rgb(241, 242, 250);
    padding: 16px 20px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5em 0;
}
.nuur-article pre code, .nuur-article-home pre code {
    background: transparent; padding: 0;
}

/* ── Tables ───────────────────────────────────────────────────── */
/* Desktop: normal flow; tablet+mobile: horizontal scroll */
.nuur-table-scroll {
    width: 100%;
    margin: 1.5em 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgb(220, 223, 226);
}
@media (max-width: 991px) {
    .nuur-table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nuur-table-scroll table th,
    .nuur-table-scroll table td { white-space: nowrap; }
}

.nuur-article table,
.nuur-article-home table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .nuur-article table,
    .nuur-article-home table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Continuous gradient across full header row — applied to tr, th is transparent */
.nuur-article table thead tr,
.nuur-article-home table thead tr {
    background: linear-gradient(45deg, #ff5988, #500c7f);
}
.nuur-article table th,
.nuur-article-home table th {
    background: transparent;
    color: #ffffff;
    padding: 11px 18px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.nuur-article table td,
.nuur-article-home table td {
    padding: 10px 18px;
    border-bottom: 1px solid rgb(220, 223, 226);
    vertical-align: top;
    color: rgb(120, 122, 124);
}
.nuur-article table tbody tr:nth-child(even) td,
.nuur-article-home table tbody tr:nth-child(even) td {
    background: rgb(241, 242, 250);
}
.nuur-article table tbody tr:hover td,
.nuur-article-home table tbody tr:hover td {
    background: rgba(220, 223, 226, 0.4);
}
@media (max-width: 767px) {
    .nuur-article table th,
    .nuur-article table td,
    .nuur-article-home table th,
    .nuur-article-home table td { padding: 8px 12px; }
}

/* ── ToC Shortcode ────────────────────────────────────────────── */
.nuur-toc_890532a87edc3d40 {
    background: rgb(241, 242, 250);
    border-left: 2px solid rgb(28, 29, 36);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
    margin-bottom: 28px;
}
.nuur-toc-toggle_8a3b1d258b4c21f5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(28, 29, 36);
    cursor: pointer;
    user-select: none;
}
/* Hide native browser disclosure triangle */
.nuur-toc-toggle_8a3b1d258b4c21f5::-webkit-details-marker { display: none; }
.nuur-toc-toggle_8a3b1d258b4c21f5 { list-style: none; }
/* Custom chevron arrow */
.nuur-toc-toggle_8a3b1d258b4c21f5::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: rgb(28, 29, 36);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
details.nuur-toc_890532a87edc3d40[open] > .nuur-toc-toggle_8a3b1d258b4c21f5::after {
    transform: rotate(180deg);
}
.nuur-toc-nav_760171e36268210a { margin-top: 12px; }
.nuur-toc-nav_760171e36268210a ul { margin: 0; padding-left: 0; list-style: none; }
.nuur-toc-nav_760171e36268210a ul ul { padding-left: 14px; margin-top: 4px; }
.nuur-toc-nav_760171e36268210a li { margin-bottom: 5px; font-size: 14px; }
.nuur-toc-nav_760171e36268210a a {
    color: rgba(28, 29, 36, 0.6);
    text-decoration: none;
}
.nuur-toc-nav_760171e36268210a a:hover { color: rgb(28, 29, 36); }

/* ── FAQ Accordion ────────────────────────────────────────────── */
.nuur-faq-wrapper_2b3179340aa23cea {
    margin-top: 60px;
    padding-bottom: 20px;
    list-style: none;
    padding-left: 0;
}
.nuur-faq-title_0d57a21e1653bae0 {
    font-size: 1.5rem; font-weight: 700;
    color: rgb(28, 29, 36);
    margin-bottom: 24px;
}
.nuur-accordion-list_1a203df314ae74de { }
.nuur-accordion {
    border: 1px dashed rgba(28, 29, 36, 0.2);
    margin-bottom: 12px;
    padding: 18px 24px;
    transition: border-color 0.1s;
}
.nuur-accordion.is-open {
    border-color: rgb(28, 29, 36);
}
.nuur-acc-btn {
    width: 100%;
    padding: 0;
    background: transparent; border: none;
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 600;
    color: rgb(28, 29, 36);
    cursor: pointer; text-align: left;
    user-select: none;
    transition: color 0.15s;
}
.nuur-acc-btn:hover { color: rgba(28, 29, 36, 0.7); }

/* Plus/minus toggle (Nuur style) */
.nuur-acc-icon_62b0c16d1bbbcddf {
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    width: 11px; height: 11px;
}
.nuur-acc-icon_62b0c16d1bbbcddf::before,
.nuur-acc-icon_62b0c16d1bbbcddf::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(28, 29, 36);
    width: 11px; height: 1px;
    transition: all 0.1s linear;
}
.nuur-acc-icon_62b0c16d1bbbcddf::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.nuur-accordion.is-open .nuur-acc-icon_62b0c16d1bbbcddf::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.nuur-acc-content_2f5be432e778c1a3 {
    display: none;
    padding-top: 12px;
    font-size: 15px; line-height: 1.75;
    color: rgb(120, 122, 124);
}
.nuur-accordion.is-open .nuur-acc-content_2f5be432e778c1a3 { display: block; }
.nuur-acc-btn:focus:not(:focus-visible) { outline: none; }

/* ── Section Cards ────────────────────────────────────────────── */
.nuur-card_20a43464f7165a5e {
    border: 1px solid rgb(220, 223, 226);
    border-radius: 6px;
    height: 100%;
    background: #ffffff;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.nuur-card_20a43464f7165a5e:hover {
    border-color: rgb(28, 29, 36);
    box-shadow: 0 8px 34px rgba(22, 24, 26, 0.10);
    transform: translateY(-3px);
}
.nuur-card-inner_fcf0357cae8770ac { padding: 28px; }
.nuur-card-title_54f90d3ff39489b2 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.nuur-card-title_54f90d3ff39489b2 a { color: rgb(28, 29, 36); text-decoration: none; transition: color 0.15s; }
.nuur-card-title_54f90d3ff39489b2 a:hover { color: rgba(28, 29, 36, 0.65); }
.nuur-card-divider_e5baa5a8611c31cb {
    width: 36px; height: 1px;
    background: linear-gradient(45deg, #ff5988, #500c7f);
    margin-bottom: 14px;
}
.nuur-card-desc_9306564c024c4f36 { font-size: 14px; color: rgb(120, 122, 124); line-height: 1.7; margin-bottom: 18px; }
.nuur-read-more_d7bb5ca8ba11c1b9 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 600;
    color: rgb(28, 29, 36);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.15s;
}
.nuur-read-more_d7bb5ca8ba11c1b9:hover { color: rgba(28, 29, 36, 0.65); }

/* ── Demo Shortcode ───────────────────────────────────────────── */
.nuur-demo-wrap_0b8704279be2e459 {
    width: 100%; margin: 1.5em 0;
    border-radius: 6px; overflow: hidden;
    border: 1px solid rgb(220, 223, 226);
}
.nuur-demo-wrap_0b8704279be2e459 iframe {
    width: 100% !important; height: 600px;
    border: none; display: block;
}

/* ── Breadcrumbs (always inside hero overlay → white palette) ─── */
.nuur-breadcrumbs_fe6a272eb4b29de5 { margin-bottom: 10px; }
.nuur-breadcrumbs_fe6a272eb4b29de5 ol {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 4px 8px;
}
.nuur-breadcrumbs_fe6a272eb4b29de5 li {
    font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.6);
}
.nuur-breadcrumbs_fe6a272eb4b29de5 li + li::before { content: '/'; margin-right: 8px; }
.nuur-breadcrumbs_fe6a272eb4b29de5 li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.nuur-breadcrumbs_fe6a272eb4b29de5 li a:hover { color: #ffffff; }
.nuur-breadcrumbs_fe6a272eb4b29de5 li[aria-current] { color: rgba(255, 255, 255, 0.85); }

/* Homepage hero: site title label (replaces breadcrumbs) */
.nuur-hero-site-title_481c9992b0903b06 {
    font-family: 'Outfit', sans-serif;
    font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px;
}

/* ── Contact Page ─────────────────────────────────────────────── */
.nuur-contact-heading_975ed0e09818a501 {
    font-size: 1.5rem; font-weight: 700;
    color: rgb(28, 29, 36);
    margin-bottom: 28px; padding-bottom: 16px;
    border-bottom: 1px dashed rgba(28, 29, 36, 0.15);
}
.nuur-contact-form-wrap_ae1b7f15e17af572, .nuur-contact-info-wrap_3adb8529129cf3e2 { height: 100%; }
.nuur-contact-form_8eccc50395627aa6 { display: flex; flex-direction: column; gap: 16px; }
.nuur-form-field_8d66cd39b5d0ed3b input,
.nuur-form-field_8d66cd39b5d0ed3b textarea {
    width: 100%;
    background: rgb(241, 242, 250);
    border: 1px solid rgb(220, 223, 226);
    border-radius: 4px;
    color: rgb(28, 29, 36);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.15s;
}
.nuur-form-field_8d66cd39b5d0ed3b input::placeholder,
.nuur-form-field_8d66cd39b5d0ed3b textarea::placeholder { color: rgba(28, 29, 36, 0.35); }
.nuur-form-field_8d66cd39b5d0ed3b input:focus,
.nuur-form-field_8d66cd39b5d0ed3b textarea:focus { border-color: rgb(28, 29, 36); background: #fff; }
.nuur-form-field_8d66cd39b5d0ed3b textarea { resize: vertical; }

.nuur-contact-item_0f6227a9a12bd737 {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 24px;
}
.nuur-contact-item_0f6227a9a12bd737 i {
    color: #ff5988; font-size: 18px;
    margin-top: 3px; flex-shrink: 0;
}
.nuur-contact-item_0f6227a9a12bd737 h5 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: rgba(28, 29, 36, 0.45); margin: 0 0 4px;
}
.nuur-contact-item_0f6227a9a12bd737 a, .nuur-contact-item_0f6227a9a12bd737 span {
    color: rgb(120, 122, 124); font-size: 15px;
    text-decoration: none; transition: color 0.15s;
}
.nuur-contact-item_0f6227a9a12bd737 a:hover { color: rgb(28, 29, 36); }

/* ── Footer ───────────────────────────────────────────────────── */
.nuur-footer_4383bc35183c61d1 {
    background: rgb(28, 29, 36);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 0;
    margin-top: auto;
}
.nuur-footer-logo-row_37c3c70c1f12ec7d { margin-bottom: 36px; }
.nuur-footer-logo_529a63e17e45bdc0 img {
    max-height: 56px; width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.nuur-footer-logo_529a63e17e45bdc0:hover img { opacity: 1; }

.nuur-footer-disclaimers_9f8f42a113a39637 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 767px) {
    .nuur-footer-disclaimers_9f8f42a113a39637 { grid-template-columns: 1fr; }
}
.nuur-disclaimer-label_fd1a9030f9c8fb84 {
    font-family: 'Outfit', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.nuur-disclaimer-text_21c33890b6a27d67 {
    font-size: 12px; line-height: 1.7;
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.nuur-disclaimer-text_21c33890b6a27d67 strong { color: rgba(255,255,255,0.6); }

.nuur-footer-links_d018775a4f67b756 {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nuur-footer-links_d018775a4f67b756 ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 6px 20px;
}
.nuur-footer-links_d018775a4f67b756 ul li a {
    font-size: 13px; color: rgba(255,255,255,0.45);
    text-decoration: none; transition: color 0.2s;
}
.nuur-footer-links_d018775a4f67b756 ul li a:hover { color: rgba(255,255,255,0.85); }

.nuur-footer-bottom_80f14739546f88d1 {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    padding: 20px 0;
}
.nuur-footer-copyright_8a594d9bc5147962 p {
    font-size: 13px; color: rgba(255,255,255,0.3); margin: 0;
}
.nuur-footer-trust_a004d24b1e55fed5 {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.nuur-footer-trust_a004d24b1e55fed5 img {
    height: 20px; width: auto;
    opacity: 0.3; filter: grayscale(100%);
    transition: opacity 0.25s, filter 0.25s;
    object-fit: contain;
}
.nuur-footer-trust_a004d24b1e55fed5 img:hover { opacity: 0.75; filter: grayscale(0%); }
@media (max-width: 767px) {
    .nuur-footer-logo-row_37c3c70c1f12ec7d { text-align: center; }
    .nuur-footer-links_d018775a4f67b756 ul { justify-content: center; }
    .nuur-footer-bottom_80f14739546f88d1 { flex-direction: column; align-items: center; }
    .nuur-footer-copyright_8a594d9bc5147962 p { text-align: center; }
    .nuur-footer-trust_a004d24b1e55fed5 { justify-content: center; }
}

/* ── 404 Page ─────────────────────────────────────────────────── */
.nuur-error-area_6078a096ab90e8b1 {
    flex: 1;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 80px 20px 60px;
    text-align: center;
    min-height: calc(100vh - 80px);
}
.nuur-error-code_d93f68191001a727 {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem; font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, #ff5988, #500c7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.nuur-error-heading_b06f148722206684 { font-size: 2rem; color: rgb(28, 29, 36); margin-bottom: 12px; }
.nuur-error-text_c6a256b560eb6148 { font-size: 16px; color: rgb(120, 122, 124); margin-bottom: 32px; }

/* ── Scroll To Top ────────────────────────────────────────────── */
.nuur-scroll-top_f2a45e96e5e31dff {
    position: fixed; bottom: 28px; right: 28px;
    width: 42px; height: 42px;
    background: rgb(28, 29, 36);
    border: none; border-radius: 50%;
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    z-index: 900;
}
.nuur-scroll-top_f2a45e96e5e31dff.visible { opacity: 1; transform: translateY(0); }
.nuur-scroll-top_f2a45e96e5e31dff:hover { background: rgba(28, 29, 36, 0.8); }
.nuur-scroll-top_f2a45e96e5e31dff svg { width: 18px; height: 18px; }

/* ── Utility ──────────────────────────────────────────────────── */
/* Match original Nuur container padding: 0 30px */
.container, .container-fluid_f8dde93d65d6aef3 {
    padding-left: 30px;
    padding-right: 30px;
}
@media (min-width: 1400px) { .container { max-width: 1320px; } }
@media (max-width: 575px) {
    .container, .container-fluid_f8dde93d65d6aef3 {
        padding-left: 20px;
        padding-right: 20px;
    }
}
