:root {
    --ns-blue: #0052ff;
    --ns-purple: #7b61ff;
    --ns-bg-light: #f4f6ff;
    --ns-bg-gradient:#f5f7ff;
    --ns-text-main: #10152b;
    --ns-text-muted: #6b7390;
    --ns-border-subtle: rgba(19, 34, 80, 0.08);
    --ns-glass-bg: rgba(255, 255, 255, 0.82);
    --ns-glass-border: rgba(255, 255, 255, 0.9);
    --ns-shadow-soft: 0 14px 34px rgba(33, 63, 160, 0.16);
    --ns-shadow-card: 0 14px 32px rgba(16, 26, 68, 0.16);
    --ns-radius-lg: 24px;
    --ns-radius-md: 18px;
    --ns-radius-pill: 999px;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    color: var(--ns-text-main);
    background: var(--ns-bg-gradient);
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.site-main {
    min-height: 100vh;
    padding-top: var(--site-header-h, 0px);
}

.page-home .site-main {
    padding-top: 0;
}

.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 100;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.site-header-transparent {
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.site-header-scrolled {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 255, 0.97));
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(195, 206, 240, 0.8);
    box-shadow: 0 16px 40px rgba(22, 44, 112, 0.18);
}

.site-header-top {
    padding-block: 10px;
}

.site-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-nav-left {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-nav-link {
    padding: 7px 12px;
    border-radius: var(--ns-radius-pill);
    font-size: 14px;
    color: var(--ns-text-muted);
    border: 1px solid transparent;
    background: transparent;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.site-nav-link:hover {
    background: rgba(0, 82, 255, 0.06);
    color: var(--ns-blue);
    border-color: rgba(0, 82, 255, 0.12);
    transform: translateY(-1px);
}

.site-logo-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: var(--ns-radius-pill);
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.18), rgba(255, 255, 255, 0.96));
    box-shadow: 0 10px 24px rgba(31, 66, 166, 0.25);
}

.site-header-scrolled .site-logo {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.96);
}

.site-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(0, 82, 255, 0.35);
}

.site-logo-text {
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 14px;
    text-transform: uppercase;
    color: #1a2345;
}

.site-nav-right {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.site-quick-actions {
    display: flex;
    gap: 8px;
}

.site-quick-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--ns-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 210, 240, 0.9);
    color: var(--ns-blue);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 82, 255, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.site-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 82, 255, 0.28);
    background: #ffffff;
}

.site-social {
    display: flex;
    gap: 10px;
}

.site-social-link {
    width: 32px;
    height: 32px;
    border-radius: var(--ns-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(203, 210, 240, 0.9);
    color: var(--ns-blue);
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0, 82, 255, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.site-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 82, 255, 0.28);
    background: #ffffff;
}

.site-profile-btn {
    border-radius: var(--ns-radius-pill);
    font-size: 13px;
    padding-inline: 14px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    border: none;
    box-shadow: 0 10px 24px rgba(0, 82, 255, 0.35);
}

.site-profile-btn:hover {
    filter: brightness(1.05);
}

.site-nav-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--ns-radius-pill);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 82, 255, 0.2);
}

.site-nav-toggle i {
    font-size: 20px;
    color: var(--ns-blue);
}

.site-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 12px 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.22s ease, max-height 0.22s ease;
    background: rgba(248, 250, 255, 0.98);
    border-radius: 0 0 18px 18px;
}

.site-mobile-menu.open {
    opacity: 1;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.site-mobile-link {
    padding: 6px 2px;
    font-size: 15px;
    color: var(--ns-text-main);
    border: none;
    background: transparent;
}

.site-mobile-link + .site-mobile-link {
    border-top: 1px solid rgba(203, 210, 240, 0.4);
}

.site-mobile-actions {
    padding-top: 8px;
    padding-bottom: 6px;
    margin-top: 8px;
    border-top: 1px solid rgba(203, 210, 240, 0.6);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-mobile-action-link {
    padding: 6px 2px;
    font-size: 14px;
    color: var(--ns-text-muted);
}

.site-header-bottom {
    border-top: 1px solid rgba(203, 210, 240, 0.35);
    padding-block: 6px;
    background: rgba(248, 250, 255, 0.97);
    backdrop-filter: blur(18px);
    transition: max-height 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.site-header-bottom-inner {
    display: flex;
    align-items: center;
}

.site-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 6px 0;
    justify-content: flex-start;
    width: 100%;
}

@media (min-width: 992px) {
    .site-categories-scroll {
        justify-content: center;
    }
}

.site-categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.site-categories-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 82, 255, 0.25);
    border-radius: var(--ns-radius-pill);
}

.site-category-pill {
    flex: 0 0 auto;
    padding: 7px 14px;
    border-radius: var(--ns-radius-pill);
    border: none;
    background: rgba(255, 255, 255, 0.78);
    color: rgba(30, 50, 110, 0.9);
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(0, 82, 255, 0.14);
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.site-category-pill:hover {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.18), rgba(255, 255, 255, 0.86));
    color: var(--ns-blue);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 82, 255, 0.20);
}

.page-home .site-header-bottom {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.page-home .site-header.site-header-scrolled .site-header-bottom {
    max-height: 56px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: var(--site-header-h, 96px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: -120px;
    background: radial-gradient(circle at 10% 0, rgba(0, 82, 255, 0.2), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(123, 97, 255, 0.24), transparent 60%);
    opacity: 0.9;
}

.hero-bg-layer-2 {
    mix-blend-mode: soft-light;
    filter: blur(40px);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    animation: none;
}

.hero-section:hover .hero-bg-grid {
    animation: heroGridShift 26s linear infinite;
}

.hero-floating-squares {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-square {
    position: absolute;
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(214, 220, 255, 0.9));
    box-shadow: 0 22px 45px rgba(18, 40, 106, 0.38);
    opacity: 0.9;
    animation: none;
}

.hero-section:hover .hero-square {
    animation: heroSquareFloat 14s ease-in-out infinite;
}

.hero-square-1 {
    width: 120px;
    height: 120px;
    top: 18%;
    left: 8%;
    animation-delay: 0s;
}

.hero-square-2 {
    width: 90px;
    height: 90px;
    top: 32%;
    right: 7%;
    animation-delay: 1.2s;
}

.hero-square-3 {
    width: 70px;
    height: 70px;
    bottom: 18%;
    left: 15%;
    animation-delay: 2.1s;
}

.hero-square-4 {
    width: 110px;
    height: 110px;
    bottom: 12%;
    right: 14%;
    animation-delay: 3s;
}

.hero-inner {
    position: relative;
    z-index: 1;
    height: calc(100vh - var(--site-header-h, 96px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    padding: 28px 22px 26px 22px;
    border-radius: 32px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(237, 241, 255, 0.96));
    box-shadow: 0 20px 48px rgba(16, 32, 74, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.95);
    animation: none;
}

.hero-content:hover {
    animation: heroFloat 4.8s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: var(--ns-radius-pill);
    background: rgba(238, 242, 255, 0.95);
    border: 1px solid rgba(200, 210, 244, 0.9);
    color: var(--ns-text-muted);
    font-size: 12px;
    margin-bottom: 14px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--ns-radius-pill);
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
}

.hero-title {
    font-size: clamp(30px, 3.1vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #141b36;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--ns-text-muted);
    margin-bottom: 22px;
}

.hero-search {
    margin-bottom: 18px;
}

.hero-search-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: var(--ns-radius-pill);
    background: rgba(249, 251, 255, 0.96);
    border: 1px solid rgba(203, 210, 240, 0.95);
    overflow: hidden;
    box-shadow: none;
    animation: none;
}

.hero-content:hover .hero-search-inner {
    animation: heroGlow 4.2s ease-in-out infinite;
}

.hero-search-icon {
    position: absolute;
    left: 18px;
    top: 23px;
    transform: translateY(-50%);
    color: rgba(90, 104, 148, 0.9);
    font-size: 18px;
}

.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 14px 14px 44px;
    font-size: 15px;
    outline: none;
    color: var(--ns-text-main);
}

.hero-search-input::placeholder {
    color: rgba(124, 135, 170, 0.9);
}

.hero-search-submit {
    border-radius: var(--ns-radius-pill);
    padding-inline: 20px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    border: none;
}

.hero-search-suggestions {
    margin-top: 6px;
    text-align: left;
    max-height: 220px;
    overflow-y: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(210, 218, 243, 0.95);
    display: none;
}

.hero-search-suggestions.show {
    display: block;
}

.hero-suggestion-item {
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
}

.hero-suggestion-item:hover {
    background: rgba(240, 244, 255, 0.9);
}

.hero-suggestion-item-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ns-text-muted);
}

.hero-suggestion-item-name {
    font-weight: 500;
    color: var(--ns-text-main);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-action-btn {
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
    min-width: 170px;
}

.hero-action-btn.btn-outline-primary {
    border-color: rgba(0, 82, 255, 0.35);
    background: rgba(255, 255, 255, 0.95);
    color: var(--ns-blue);
}

.home-section {
    padding: 64px 0;
}

.home-section-header {
    margin-bottom: 24px;
}

.home-section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.home-section-subtitle {
    font-size: 14px;
    color: var(--ns-text-muted);
}

.categories-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-tile {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--ns-shadow-card);
    transform: translateY(0);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    min-height: 180px;
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(20, 40, 92, 0.32);
}

.category-tile-bg {
    position: absolute;
    inset: -25%;
    opacity: 0.95;
    filter: saturate(1.05);
}

.categories-grid-4 .category-tile:nth-child(4n+1) .category-tile-bg {
    background:
        radial-gradient(circle at 10% 0, rgba(0, 82, 255, 0.38), transparent 58%),
        radial-gradient(circle at 90% 85%, rgba(0, 120, 255, 0.28), transparent 60%),
        linear-gradient(135deg, rgba(0, 82, 255, 0.44), rgba(0, 82, 255, 0.18));
}

.categories-grid-4 .category-tile:nth-child(4n+2) .category-tile-bg {
    background:
        radial-gradient(circle at 0 80%, rgba(0, 82, 255, 0.34), transparent 58%),
        radial-gradient(circle at 100% 10%, rgba(0, 105, 255, 0.26), transparent 60%),
        linear-gradient(135deg, rgba(0, 82, 255, 0.42), rgba(0, 82, 255, 0.16));
}

.categories-grid-4 .category-tile:nth-child(4n+3) .category-tile-bg {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 95, 255, 0.34), transparent 58%),
        radial-gradient(circle at 85% 95%, rgba(0, 82, 255, 0.24), transparent 60%),
        linear-gradient(135deg, rgba(0, 82, 255, 0.40), rgba(0, 82, 255, 0.14));
}

.categories-grid-4 .category-tile:nth-child(4n+4) .category-tile-bg {
    background:
        radial-gradient(circle at 70% 0, rgba(0, 82, 255, 0.34), transparent 58%),
        radial-gradient(circle at 10% 90%, rgba(0, 110, 255, 0.26), transparent 60%),
        linear-gradient(135deg, rgba(0, 82, 255, 0.42), rgba(0, 82, 255, 0.16));
}

.category-tile-inner {
    position: relative;
    padding: 18px 18px 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.category-tile-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 10px rgba(0, 18, 64, 0.35);
}

.category-tile-name {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 18, 64, 0.42);
}

.ns-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.ns-modal.open {
    display: block;
}

.ns-modal-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
    rgba(0, 82, 255, 0.55),
    rgba(123, 97, 255, 0.55),
    rgba(0, 160, 255, 0.45),
    rgba(255, 140, 200, 0.40)
    );
    background-size: 240% 240%;
    animation: nsModalBg 8s ease-in-out infinite;
    backdrop-filter: blur(18px);
}

.ns-modal-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.ns-modal-card {
    position: relative;
    width: min(640px, 100%);
    border-radius: 26px;
    overflow: hidden;
    transform: translateY(-28px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    box-shadow: 0 26px 70px rgba(14, 26, 72, 0.35);
}

.ns-modal.open .ns-modal-card {
    transform: translateY(0);
    opacity: 1;
}

.ns-modal-card-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.92);
}

.ns-modal-card-inner {
    position: relative;
    padding: 18px;
}

.ns-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(18, 30, 70, 0.08);
    margin-bottom: 14px;
}

.ns-modal-title {
    font-weight: 800;
    font-size: 18px;
    color: #10152b;
}

.ns-modal-close {
    border: none;
    background: rgba(240, 244, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: var(--ns-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 82, 255, 0.14);
    color: rgba(16, 28, 70, 0.85);
}

.ns-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ns-form-group-full {
    grid-column: span 2;
}

.ns-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(16, 21, 43, 0.9);
    margin-bottom: 6px;
}

.ns-input,
.ns-textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(245, 248, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(0, 82, 255, 0.12);
    color: #10152b;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.ns-input:focus,
.ns-textarea:focus {
    box-shadow: inset 0 0 0 1px rgba(0, 82, 255, 0.22), 0 14px 28px rgba(0, 82, 255, 0.18);
    transform: translateY(-1px);
}

.ns-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
    flex-wrap: wrap;
}

.ns-modal-submit {
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    border: none;
    box-shadow: 0 14px 32px rgba(0, 82, 255, 0.26);
}

.ns-modal-cancel {
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
}

@media (max-width: 991.98px) {
    .categories-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-tile {
        min-height: 170px;
    }
}

@media (max-width: 767.98px) {
    .site-header-top {
        padding-block: 8px;
    }

    .site-header-top-inner {
        gap: 8px;
    }

    .site-logo {
        padding-inline: 10px;
    }

    .site-nav-right {
        flex: 0 0 auto;
        gap: 8px;
    }

    .site-profile-btn {
        font-size: 12px;
        padding-inline: 10px;
    }

    .hero-inner {
        height: auto;
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .hero-content {
        margin-inline: 0;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(16, 32, 74, 0.3);
    }

    .hero-search-inner {
        flex-direction: column;
        border-radius: 20px;
    }

    .hero-search-input {
        padding: 12px 12px 12px 44px;
        font-size: 14px;
    }

    .hero-search-submit {
        width: 100%;
        border-radius: 0 0 18px 18px;
        padding-block: 10px;
    }
}

@media (max-width: 575.98px) {
    .categories-grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .category-tile {
        min-height: 160px;
    }

    .ns-form-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .ns-form-group-full {
        grid-column: span 1;
    }
}

@keyframes heroGridShift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 80px 80px, 80px 80px;
    }
}

@keyframes heroSquareFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -18px, 0);
    }
}

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

@keyframes heroGlow {
    0%, 100% {
        border-color: rgba(203, 210, 240, 0.95);
    }
    50% {
        border-color: rgba(0, 82, 255, 0.45);
    }
}

@keyframes nsModalBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.site-header-bottom {
    border-top: 1px solid rgba(203, 210, 240, 0.35);
    padding-block: 8px;
    background: rgba(248, 250, 255, 0.97);
    backdrop-filter: blur(18px);
}

.site-header-bottom-inner {
    display: flex;
    align-items: center;
}

.site-categories-scroll {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 6px 2px;
    scroll-snap-type: x proximity;
}

.site-categories-scroll::-webkit-scrollbar {
    height: 3px;
}

.site-categories-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 82, 255, 0.18);
    border-radius: 999px;
}

.site-category-pill {
    flex: 0 0 auto;
    scroll-snap-align: center;
    border: 1px solid rgba(0, 82, 255, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(16, 21, 43, 0.85);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
    box-shadow: none;
}

.site-category-pill:hover {
    background: var(--ns-blue);
    border-color: var(--ns-blue);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-category-pill:active {
    transform: translateY(0);
}

.site-category-pill.active {
    background: var(--ns-blue);
    border-color: var(--ns-blue);
    color: #ffffff;
}

.site-header-bottom .container {
    max-width: 1200px;
}

/* На узких экранах выравниваем влево чтобы легче скроллилось */
@media (max-width: 991.98px) {
    .site-categories-scroll {
        justify-content: flex-start;
    }
}

.home-section-recommended .section-preloader {
    min-height: 320px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.recommended-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.recommended-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 255, 0.22);
}

.recommended-card-media {
    position: relative;
    overflow: hidden;
}

.recommended-card-img {
    width: 100%;
    padding-top: 62%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.25s ease;
}

.recommended-card:hover .recommended-card-img {
    transform: scale(1.03);
}

.recommended-card-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 236, 248, 0.95);
    color: rgba(129, 140, 175, 0.9);
    font-size: 26px;
}

.recommended-card-category {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 82, 255, 0.92);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
}

.recommended-card-body {
    padding: 12px 12px 14px 12px;
    display: grid;
    gap: 8px;
}

.recommended-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ns-text-main);
    line-height: 1.25;
    min-height: 36px;
}

.recommended-card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--ns-blue);
}

.recommended-card-btn {
    margin-top: 4px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    transform: translateY(0);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.recommended-card:hover .recommended-card-btn {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

@media (max-width: 991.98px) {
    .recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 575.98px) {
    .recommended-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.async-area {
    position: relative;
    min-height: 320px;
}

.section-preloader {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-squares {
    display: flex;
    gap: 10px;
}

.preloader-square {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: #cfd5e6;
    transform: scale(1);
    animation: nsPreloaderPulse 1.0s ease-in-out infinite;
}

.preloader-square:nth-child(2) { animation-delay: 0.12s; }
.preloader-square:nth-child(3) { animation-delay: 0.24s; }
.preloader-square:nth-child(4) { animation-delay: 0.36s; }

@keyframes nsPreloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.65; }
    50% { transform: scale(0.45); opacity: 1; }
}

.home-section-slider {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (max-width: 767.98px) {
    .home-section-slider {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

.home-section-slider {
    padding-top: 56px;
    padding-bottom: 56px;
}

.home-section-articles {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (max-width: 767.98px) {
    .home-section-slider,
    .home-section-articles {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

.articles-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.article-card-rect {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.article-card-rect:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 255, 0.22);
}

.article-card-media {
    background: rgba(245, 248, 255, 0.9);
}

.article-card-img {
    width: 100%;
    height: 120px;
    display: block;
    object-fit: cover;
    object-position: center;
    background: rgba(245, 248, 255, 0.9);
}

.article-card-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(129, 140, 175, 0.9);
    font-size: 22px;
}

.article-card-body {
    padding: 10px 10px 12px 10px;
    display: grid;
    gap: 6px;
}

.article-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ns-text-main);
    line-height: 1.25;
    min-height: 34px;
}

.article-card-excerpt {
    font-size: 12px;
    color: var(--ns-text-muted);
    line-height: 1.35;
    max-height: 34px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .articles-grid-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .article-card-img {
        height: 130px;
    }
}

@media (max-width: 575.98px) {
    .articles-grid-6 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .article-card-img {
        height: 160px;
    }
}

.home-section-slider {
    padding-top: 56px;
    padding-bottom: 56px;
}

.home-section-articles {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (max-width: 767.98px) {
    .home-section-slider,
    .home-section-articles {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

.articles-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.article-card-rect {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.article-card-rect:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 255, 0.22);
}

.article-card-media {
    background: rgba(245, 248, 255, 0.9);
}

.article-card-img {
    width: 100%;
    height: 120px;
    display: block;
    object-fit: cover;
    object-position: center;
    background: rgba(245, 248, 255, 0.9);
}

.article-card-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(129, 140, 175, 0.9);
    font-size: 22px;
}

.article-card-body {
    padding: 10px 10px 12px 10px;
    display: grid;
    gap: 6px;
}

.article-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ns-text-main);
    line-height: 1.25;
    min-height: 34px;
}

.article-card-excerpt {
    font-size: 12px;
    color: var(--ns-text-muted);
    line-height: 1.35;
    max-height: 34px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .articles-grid-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .article-card-img {
        height: 130px;
    }
}

@media (max-width: 575.98px) {
    .articles-grid-6 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .article-card-img {
        height: 160px;
    }
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.about-page-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
}

.about-page-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--ns-text-main);
}

.about-page-text {
    margin: 0 0 10px 0;
    color: var(--ns-text-muted);
    line-height: 1.55;
    font-size: 14px;
}

.about-page-map {
    overflow: hidden;
    border-radius: 14px;
}

@media (max-width: 991.98px) {
    .about-page-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    margin-top: 60px;
    padding: 44px 0 26px 0;
    border-top: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
}

.site-footer-top {
    display: flex;
    justify-content: center;
    padding-bottom: 18px;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-footer-mark {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
}

.site-footer-text {
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ns-text-main);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-top: 10px;
}

.site-footer-col {
    padding: 12px 14px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.site-footer-title {
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--ns-text-main);
}

.site-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--ns-text-muted);
    transition: color 0.16s ease;
}

.site-footer-link:hover {
    color: var(--ns-blue);
}

.site-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.site-footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 82, 255, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ns-blue);
}

.site-footer-bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(19, 34, 80, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--ns-text-muted);
    font-size: 13px;
}

.site-footer-muted {
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }
}

.ns-toasts {
    position: fixed;
    top: calc(var(--site-header-h, 0px) + 12px);
    right: 12px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(420px, calc(100vw - 24px));
}

.ns-toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 34px rgba(0, 82, 255, 0.14);
    animation: nsToastIn 0.22s ease forwards;
}

.ns-toast-success { border-color: rgba(0, 82, 255, 0.22); }
.ns-toast-error { border-color: rgba(255, 80, 120, 0.30); }

.ns-toast-text {
    font-weight: 800;
    color: var(--ns-text-main);
    font-size: 13px;
    line-height: 1.35;
}

.ns-toast-close {
    border: none;
    background: rgba(240, 244, 255, 0.9);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(16, 28, 70, 0.85);
}

@keyframes nsToastIn {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.site-contacts {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-right: 8px;
}

.site-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(203, 210, 240, 0.9);
    color: var(--ns-blue);
    font-weight: 800;
    font-size: 13px;
}

.site-contact-link i {
    font-size: 16px;
}

.site-cart-btn {
    position: relative;
}

.site-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.site-cart-badge-inline {
    position: static;
    margin-left: 8px;
    top: auto;
    right: auto;
}

.site-header-mini {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(195, 206, 240, 0.7);
}

.site-header-transparent .site-header-mini {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.site-header-scrolled .site-header-mini {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(195, 206, 240, 0.8);
}

.site-header-mini-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
}

.site-mini-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(16, 21, 43, 0.72);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 0;
}

.site-mini-link i {
    color: var(--ns-blue);
    font-size: 14px;
}

.site-mini-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(560px, 100%);
}

.site-mini-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(90, 104, 148, 0.85);
    pointer-events: none;
}

.site-mini-search-input {
    width: 100%;
    border: 1px solid rgba(203, 210, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 10px 8px 34px;
    outline: none;
    color: var(--ns-text-main);
    font-size: 13px;
}

.site-mini-search-btn {
    border: none;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .site-mini-search-btn {
        display: none;
    }

    .site-mini-search {
        width: 320px;
    }
}

@media (max-width: 767.98px) {
    .site-header-mini-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .site-mini-search {
        width: 100%;
    }
}

.articles-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 991.98px) {
    .articles-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 575.98px) {
    .articles-grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px;
    }
}

.article-card {
    border-radius: 0;
}

.article-card-glass {
    background: rgba(255, 255, 255, 0.9);
}

.comparison-table-wrap { overflow-x: auto; }
.comparison-table { background: rgba(255,255,255,0.92); border: 1px solid rgba(19,34,80,0.08); }
.comparison-product-link { color: var(--ns-blue); font-weight: 800; }
.comparison-product-link:hover { text-decoration: underline; }
.comparison-product-meta { font-size: 12px; color: var(--ns-text-muted); margin-top: 4px; }
.comparison-price { font-weight: 800; color: var(--ns-blue); }
.comparison-key { font-weight: 800; color: var(--ns-text-main); }

.site-mini-cta {
    border: none;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .site-mini-cta {
        order: 3;
        width: 100%;
        justify-content: center;
        display: inline-flex;
        margin-top: 6px;
    }
}

.articles-grid-4-big {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.article-big-card {
    display: grid;
    grid-template-rows: 220px 1fr;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.article-big-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 255, 0.22);
}

.article-big-media { overflow: hidden; }
.article-big-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.25s ease;
}

.article-big-card:hover .article-big-img { transform: scale(1.03); }

.article-big-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 248, 255, 0.95);
    color: rgba(129, 140, 175, 0.9);
    font-size: 34px;
}

.article-big-body {
    padding: 14px 14px 16px 14px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.article-big-title {
    font-weight: 900;
    color: var(--ns-text-main);
    line-height: 1.2;
    font-size: 15px;
    min-height: 38px;
}

.article-big-excerpt {
    color: var(--ns-text-muted);
    font-size: 13px;
    line-height: 1.45;
    max-height: 58px;
    overflow: hidden;
}

.article-big-btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    transition: filter 0.18s ease, transform 0.18s ease;
}

.article-big-card:hover .article-big-btn {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .articles-grid-4-big { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .article-big-card { grid-template-rows: 200px 1fr; }
}

@media (max-width: 575.98px) {
    .articles-grid-4-big { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 12px; }
    .article-big-card { grid-template-rows: 220px 1fr; }
}

.comparison-product-card{
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
}

.comparison-product-thumb{
    width: 160px;
    height: 110px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background-color: rgba(245, 248, 255, 0.9);

    user-select: none;
    -webkit-user-drag: none;
}

.comparison-product-thumb.is-empty{
    display:flex;
    align-items:center;
    justify-content:center;
    color: rgba(129, 140, 175, 0.9);
    font-size: 22px;
}

.comparison-product-link img{
    user-select:none;
    -webkit-user-drag:none;
    pointer-events:none;
}

@media (max-width: 767.98px) {
    .site-header-mini { display: none; }
    .site-header-bottom { display: none; }
}

.home-section-why {
    padding: 56px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.why-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px 16px 14px 16px;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
    margin-bottom: 10px;
}

.why-icon i {
    font-size: 20px;
}

.why-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ns-text-main);
    margin-bottom: 6px;
}

.why-text {
    font-size: 13px;
    color: var(--ns-text-muted);
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-section-why {
        padding: 44px 0;
    }

    .why-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.page-title {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--ns-text-main);
}

.page-subtitle {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ns-text-muted);
}

.contacts-page {
    padding: 26px 0 70px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
}

.contacts-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
}

.contacts-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.contacts-text {
    margin: 0 0 12px 0;
    color: var(--ns-text-muted);
    line-height: 1.55;
    font-size: 14px;
}

.contacts-links {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.contacts-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    color: var(--ns-text-main);
    font-weight: 900;
    font-size: 13px;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.contacts-link i {
    color: var(--ns-blue);
    font-size: 16px;
}

.contacts-link:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.contacts-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.contacts-map {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.contacts-map iframe {
    width: 100%;
    height: 360px;
    display: block;
    border: 0;
}

@media (max-width: 991.98px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map iframe {
        height: 320px;
    }
}

.profile-page {
    padding: 26px 0 70px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.profile-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.profile-card-head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(19, 34, 80, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.profile-card-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.profile-card-body {
    padding: 16px;
}

.profile-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(19, 34, 80, 0.06);
    color: var(--ns-text-muted);
    font-size: 13px;
    font-weight: 800;
}

.profile-row strong {
    color: var(--ns-text-main);
    font-weight: 900;
}

.profile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 900;
    font-size: 13px;
    color: var(--ns-text-main);
    border-top: 1px solid rgba(19, 34, 80, 0.06);
    transition: background-color 0.16s ease, color 0.16s ease;
}

.profile-links a:hover {
    background: rgba(0, 82, 255, 0.06);
    color: var(--ns-blue);
}

.profile-links i {
    color: var(--ns-blue);
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.contacts-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
    display: grid;
    gap: 12px;
}

.contacts-title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.contacts-links {
    display: grid;
    gap: 10px;
}

.contacts-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    color: var(--ns-text-main);
    font-weight: 900;
    font-size: 13px;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
    min-height: 44px;
    flex-wrap: wrap;
}

.contacts-link i {
    color: var(--ns-blue);
    font-size: 16px;
    flex: 0 0 auto;
}

.contacts-link:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.contacts-address {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
}

.contacts-address-ico {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.contacts-address-ico i {
    font-size: 16px;
}

.contacts-address-name {
    font-weight: 900;
    font-size: 13px;
    color: var(--ns-text-main);
    margin-bottom: 4px;
}

.contacts-address-text {
    font-weight: 800;
    font-size: 13px;
    color: var(--ns-text-muted);
    line-height: 1.45;
}

.contacts-btn {
    height: 44px;
    border-radius: var(--ns-radius-pill);
    font-weight: 900;
}

.contacts-map {
    padding: 16px;
}

.contacts-map-wrap {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.contacts-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map iframe {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .contacts-card {
        padding: 14px;
    }

    .contacts-map iframe {
        height: 280px;
    }

    .contacts-link {
        padding: 10px 10px;
        gap: 8px;
    }
}

.home-section-about {
    padding: 56px 0;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 16px;
    align-items: stretch;
}

.about-hero-card {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.10), rgba(255, 255, 255, 0.92));
    padding: 18px;
    box-shadow: 0 18px 46px rgba(16, 32, 74, 0.12);
    display: grid;
    gap: 14px;
}

.about-hero-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ns-text-muted);
    font-weight: 800;
}

.about-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.about-hero-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-hero-point i {
    color: var(--ns-blue);
    font-size: 16px;
}

.about-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-hero-btn {
    border-radius: var(--ns-radius-pill);
    height: 44px;
    padding-inline: 18px;
    font-weight: 900;
}

.about-hero-side {
    display: grid;
}

.about-hero-side-card {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: rgba(255, 255, 255, 0.92);
    padding: 18px;
    display: grid;
    gap: 10px;
}

.about-side-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-side-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.5;
}

.about-side-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.about-badge {
    padding: 8px 12px;
    border-radius: var(--ns-radius-pill);
    border: 1px solid rgba(0, 82, 255, 0.16);
    background: rgba(0, 82, 255, 0.06);
    color: var(--ns-blue);
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .home-section-about {
        padding: 44px 0;
    }

    .about-hero-points {
        grid-template-columns: 1fr;
    }
}


.about-full-page {
    padding-top: 18px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 12px;
}

.about-hero-card {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.12), rgba(255, 255, 255, 0.92));
    box-shadow: 0 18px 46px rgba(16, 32, 74, 0.12);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: var(--ns-radius-pill);
    border: 1px solid rgba(203, 210, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
    color: rgba(16, 21, 43, 0.72);
    width: fit-content;
}

.about-hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
}

.about-hero-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--ns-text-main);
    line-height: 1.15;
}

.about-hero-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.65;
}

.about-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.about-hero-btn {
    height: 44px;
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
    font-weight: 900;
}

.about-aside-card {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: rgba(255, 255, 255, 0.92);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.about-aside-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-aside-list {
    display: grid;
    gap: 10px;
}

.about-aside-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    font-size: 13px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-aside-item i {
    color: var(--ns-blue);
    font-size: 16px;
}

.about-aside-note {
    font-size: 12px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.5;
    padding-top: 6px;
    border-top: 1px solid rgba(19, 34, 80, 0.08);
}

.about-section {
    margin-top: 18px;
    padding-top: 10px;
}

.about-section-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--ns-text-main);
    margin-bottom: 12px;
}

.about-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-step {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 14px;
    display: grid;
    gap: 8px;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.about-step:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.about-step-ico {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.about-step-ico i {
    font-size: 18px;
}

.about-step-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-step-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.5;
}

.about-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-trust-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.about-trust-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-trust-ico {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.about-trust-ico i {
    font-size: 18px;
}

.about-trust-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-trust-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.55;
}

.about-cta {
    margin-top: 18px;
}

.about-cta-card {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.12), rgba(255, 255, 255, 0.92));
    padding: 18px;
    display: grid;
    gap: 10px;
    box-shadow: 0 18px 46px rgba(16, 32, 74, 0.10);
}

.about-cta-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.about-cta-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.6;
}

.about-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-cta-btn {
    height: 44px;
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-trust {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .about-steps {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 20px;
    }
}

.home-section-aboutx {
    padding: 56px 0;
}

.aboutx-wrap {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 46px rgba(16, 32, 74, 0.12);
    overflow: hidden;
    padding: 18px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: stretch;
}

.aboutx-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 82, 255, 0.22), transparent 55%),
        radial-gradient(circle at 85% 35%, rgba(123, 97, 255, 0.22), transparent 55%);
    pointer-events: none;
    opacity: 0.75;
}

.aboutx-main,
.aboutx-side {
    position: relative;
    z-index: 1;
}

.aboutx-main {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.10), rgba(255, 255, 255, 0.92));
    padding: 18px;
    display: grid;
    gap: 12px;
}

.aboutx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: var(--ns-radius-pill);
    border: 1px solid rgba(203, 210, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
    color: rgba(16, 21, 43, 0.72);
    width: fit-content;
}

.aboutx-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
}

.aboutx-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--ns-text-main);
    line-height: 1.15;
}

.aboutx-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.65;
}

.aboutx-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.aboutx-btn {
    height: 44px;
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
    font-weight: 900;
}

.aboutx-side {
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 14px;
}

.aboutx-metrics {
    display: grid;
    gap: 10px;
}

.aboutx-metric {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.aboutx-metric:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.aboutx-metric-ico {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.aboutx-metric-ico i {
    font-size: 18px;
}

.aboutx-metric-title {
    font-size: 13px;
    font-weight: 900;
    color: var(--ns-text-main);
    margin-bottom: 4px;
}

.aboutx-metric-text {
    font-size: 12px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.45;
}

.aboutx-metric-accent {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.10), rgba(245, 248, 255, 0.95));
}

@media (max-width: 991.98px) {
    .aboutx-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .home-section-aboutx {
        padding: 44px 0;
    }

    .aboutx-wrap {
        padding: 14px;
    }

    .aboutx-main {
        padding: 14px;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
    margin-top: 14px;
}

.contacts-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
    display: grid;
    gap: 12px;
}

.contacts-card-main {
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.10), rgba(255, 255, 255, 0.92));
}

.contacts-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.contacts-links {
    display: grid;
    gap: 10px;
}

.contacts-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    color: var(--ns-text-main);
    font-weight: 900;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.contacts-link i {
    color: var(--ns-blue);
    font-size: 16px;
}

.contacts-link:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.contacts-address {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
}

.contacts-address-ico {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.contacts-address-ico i {
    font-size: 18px;
}

.contacts-address-name {
    font-size: 13px;
    font-weight: 900;
    color: var(--ns-text-main);
    margin-bottom: 2px;
}

.contacts-address-text {
    font-size: 12px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.5;
}

.contacts-hint {
    font-size: 12px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.55;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px dashed rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.85);
}

.contacts-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.contacts-btn {
    height: 44px;
    border-radius: var(--ns-radius-pill);
    padding-inline: 18px;
    font-weight: 900;
}

.contacts-info {
    display: grid;
    gap: 10px;
}

.contacts-info-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.contacts-info-item:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.contacts-info-ico {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.contacts-info-ico i {
    font-size: 18px;
}

.contacts-info-name {
    font-size: 13px;
    font-weight: 900;
    color: var(--ns-text-main);
    margin-bottom: 2px;
}

.contacts-info-text {
    font-size: 12px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.5;
}

.contacts-mini-cta {
    margin-top: 2px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.10), rgba(255, 255, 255, 0.92));
    display: grid;
    gap: 8px;
}

.contacts-mini-cta-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.contacts-mini-cta-text {
    font-size: 12px;
    font-weight: 800;
    color: var(--ns-text-muted);
    line-height: 1.5;
}

.contacts-map-card {
    margin-top: 16px;
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
    display: grid;
    gap: 12px;
    overflow: hidden;
}

.contacts-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(19, 34, 80, 0.08);
}

.contacts-map-wrap iframe {
    display: block;
    width: 100%;
}

@media (max-width: 991.98px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-actions .contacts-btn {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }
}

@media (max-width: 575.98px) {
    .contacts-card,
    .contacts-map-card {
        padding: 14px;
    }

    .contacts-map-wrap iframe {
        height: 320px;
    }
}

.profile-page { padding-top: 18px; padding-bottom: 28px; }

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profile-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.profile-card-head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.92);
}

.profile-card-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.profile-card-body { padding: 14px 16px; display: grid; gap: 10px; }

.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.profile-row span { color: var(--ns-text-muted); font-weight: 800; font-size: 13px; }
.profile-row strong { color: var(--ns-text-main); font-weight: 900; font-size: 13px; }

.profile-links { padding: 14px 16px; display: grid; gap: 8px; }

.profile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.profile-links a span { font-weight: 900; font-size: 13px; color: var(--ns-text-main); }
.profile-links a i { color: rgba(90, 104, 148, 0.9); }

.profile-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 82, 255, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.profile-orders { margin-top: 18px; }

.profile-orders-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.profile-orders-title { font-size: 16px; font-weight: 900; color: var(--ns-text-main); }
.profile-orders-subtitle { font-size: 13px; font-weight: 800; color: var(--ns-text-muted); margin-top: 2px; }

.profile-orders-list { display: grid; gap: 12px; }

.profile-order-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.profile-order-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.08), rgba(245, 248, 255, 0.92));
    border-bottom: 1px solid rgba(19, 34, 80, 0.08);
}

.profile-order-number { font-weight: 900; font-size: 14px; color: var(--ns-text-main); }
.profile-order-meta { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; font-weight: 800; color: var(--ns-text-muted); }
.profile-order-dot { opacity: 0.7; }

.profile-order-sum {
    font-weight: 900;
    color: var(--ns-blue);
    white-space: nowrap;
    font-size: 14px;
}

.profile-order-items { padding: 10px 16px 14px 16px; display: grid; gap: 8px; }

.profile-order-item {
    display: grid;
    grid-template-columns: 1fr 90px 140px;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
}

.profile-order-item-name { font-weight: 900; font-size: 13px; color: var(--ns-text-main); }
.profile-order-item-qty { text-align: right; font-weight: 900; font-size: 12px; color: var(--ns-text-muted); }
.profile-order-item-price { text-align: right; font-weight: 900; font-size: 13px; color: var(--ns-blue); }

.profile-order-empty {
    padding: 12px 16px;
    color: var(--ns-text-muted);
    font-weight: 800;
    font-size: 13px;
}

.profile-orders-pagination { margin-top: 12px; }

@media (max-width: 991.98px) {
    .profile-grid { grid-template-columns: 1fr; }
    .profile-order-item { grid-template-columns: 1fr; }
    .profile-order-item-qty, .profile-order-item-price { text-align: left; }
}

.profile-logout { margin-top: 8px; }

.profile-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 80, 120, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(210, 40, 90, 0.95);
    font-weight: 900;
    font-size: 13px;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.profile-logout-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 80, 120, 0.35);
    background: rgba(255, 245, 248, 0.95);
}

.auth-page { padding-top: 18px; padding-bottom: 28px; }

.auth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
}

.auth-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.auth-card-head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.92);
}

.auth-card-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ns-text-main);
}

.auth-form { padding: 14px 16px 16px 16px; display: grid; gap: 12px; }

.auth-field { display: grid; gap: 6px; }

.auth-label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(16, 21, 43, 0.9);
}

.auth-input {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(245, 248, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(0, 82, 255, 0.12);
    color: #10152b;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.auth-input:focus {
    box-shadow: inset 0 0 0 1px rgba(0, 82, 255, 0.22), 0 14px 28px rgba(0, 82, 255, 0.18);
    transform: translateY(-1px);
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 13px;
    color: var(--ns-text-muted);
    user-select: none;
}

.auth-check input { width: 18px; height: 18px; }

.auth-submit {
    border-radius: var(--ns-radius-pill);
    padding: 10px 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ns-blue), var(--ns-purple));
    border: none;
    box-shadow: 0 14px 32px rgba(0, 82, 255, 0.22);
}

.auth-foot {
    margin-top: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(19, 34, 80, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-muted { color: var(--ns-text-muted); font-weight: 800; font-size: 13px; }

.auth-link {
    font-weight: 900;
    color: var(--ns-blue);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 82, 255, 0.06);
    border: 1px solid rgba(0, 82, 255, 0.10);
}

.auth-link:hover { background: rgba(0, 82, 255, 0.10); }

.auth-error {
    font-size: 12px;
    font-weight: 800;
    color: rgba(210, 40, 90, 0.95);
}

.auth-side-card {
    border-radius: 18px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
}

.auth-side-title {
    font-weight: 900;
    font-size: 14px;
    color: var(--ns-text-main);
    margin-bottom: 10px;
}

.auth-side-text {
    color: var(--ns-text-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 12px;
}

.auth-perks { display: grid; gap: 10px; margin-bottom: 12px; }

.auth-perk {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
}

.auth-perk-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
}

.auth-perk-ico i { font-size: 18px; }

.auth-perk-title { font-weight: 900; font-size: 13px; color: var(--ns-text-main); margin-bottom: 2px; }
.auth-perk-text { font-weight: 800; font-size: 12px; color: var(--ns-text-muted); }

.auth-mini {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(19, 34, 80, 0.08);
    background: rgba(245, 248, 255, 0.95);
    margin-bottom: 12px;
}

.auth-mini-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 97, 255, 0.10);
    color: var(--ns-purple);
}

.auth-mini-ico i { font-size: 18px; }

.auth-mini-title { font-weight: 900; font-size: 13px; color: var(--ns-text-main); margin-bottom: 2px; }
.auth-mini-text { font-weight: 800; font-size: 12px; color: var(--ns-text-muted); }

.auth-side-btn {
    width: 100%;
    border-radius: var(--ns-radius-pill);
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .auth-grid { grid-template-columns: 1fr; }
}

/* Empty states */
.ns-empty{
    padding: 26px 0 60px 0;
    display: flex;
    justify-content: center;
}

.ns-empty-card{
    width: min(720px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(19, 34, 80, 0.10);
    background: radial-gradient(circle at top left,
    rgba(0, 82, 255, 0.08),
    rgba(255, 255, 255, 0.92));
    box-shadow: 0 18px 46px rgba(16, 32, 74, 0.10);
    padding: 18px;
    display: grid;
    gap: 12px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.ns-empty-card::before{
    content:"";
    position:absolute;
    inset:-40%;
    background:
        radial-gradient(circle at 15% 15%, rgba(0,82,255,.18), transparent 55%),
        radial-gradient(circle at 85% 35%, rgba(123,97,255,.16), transparent 55%);
    opacity:.8;
    pointer-events:none;
}

.ns-empty-card > *{
    position: relative;
    z-index: 1;
}

.ns-empty-ico{
    width: 66px;
    height: 66px;
    margin: 2px auto 4px auto;
    border-radius: 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(0, 82, 255, 0.10);
    color: var(--ns-blue);
    border: 1px solid rgba(0, 82, 255, 0.14);
}

.ns-empty-ico i{ font-size: 28px; }

.ns-empty-title{
    font-weight: 900;
    font-size: 18px;
    color: var(--ns-text-main);
}

.ns-empty-text{
    font-weight: 800;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ns-text-muted);
}

.ns-empty-actions{
    display:flex;
    justify-content:center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ns-empty-btn{
    height: 44px;
    border-radius: 999px;
    padding-inline: 18px;
    font-weight: 900;
}

.ns-empty-hint{
    margin-top: 6px;
    display:inline-flex;
    gap: 8px;
    align-items:center;
    justify-content:center;
    font-size: 12px;
    font-weight: 800;
    color: rgba(16,21,43,.72);
    border: 1px dashed rgba(0,82,255,.22);
    background: rgba(255,255,255,.78);
    border-radius: 16px;
    padding: 10px 12px;
}

@media (max-width: 575.98px){
    .ns-empty-card{ padding: 14px; }
    .ns-empty-actions{ flex-direction: column; }
    .ns-empty-btn{ width: 100%; justify-content: center; display: inline-flex; }
}

:root{
    --ns-fw-regular: 400;
    --ns-fw-medium: 500;
    --ns-fw-semibold: 600;
}

body{ font-weight: var(--ns-fw-regular); }
b, strong{ font-weight: var(--ns-fw-medium); }

.page-title,
.hero-title,
.ns-modal-title,
.home-section-title,
.site-footer-text,
.site-footer-title,
.contacts-title,
.profile-card-title,
.auth-card-title,
.about-page-title{
    font-weight: var(--ns-fw-semibold);
}

.btn,
.site-profile-btn,
.site-nav-link,
.site-category-pill,
.recommended-card-btn,
.recommended-card-category,
.hero-badge,
.about-badge{
    font-weight: var(--ns-fw-medium);
}

.recommended-card-title,
.recommended-card-price,
.article-card-title,
.article-big-title,
.why-title,
.profile-order-number,
.profile-order-sum{
    font-weight: var(--ns-fw-semibold);
}

.page-subtitle,
.hero-subtitle,
.about-page-text,
.contacts-text,
.site-mini-link,
.article-card-excerpt,
.article-big-excerpt,
.ns-empty-text,
.site-footer-bottom,
.auth-muted{
    font-weight: var(--ns-fw-medium);
}

.recommended-card-title{
    font-size: 16px;
    line-height: 1.3;
    min-height: 42px;
}

@media (max-width: 575.98px){
    .recommended-card-title{
        font-size: 15px;
        min-height: auto;
    }
}

.about-hero-badge,
.about-hero-title,
.about-hero-text,
.about-aside-title,
.about-aside-item,
.about-aside-note,
.about-section-title,
.about-step-title,
.about-step-text,
.about-trust-title,
.about-trust-text,
.about-cta-title,
.about-cta-text{
    font-weight: 400;
}

.btn,
.about-hero-btn,
.about-cta-btn{
    font-weight: 500;
}

.home-section-title,
.aboutx-title,
.aboutx-kicker,
.aboutx-metric-title{
    font-weight: 500;
}

.aboutx-metric-text,
.home-section-subtitle,
.aboutx-text{
    font-weight: 400;
}

.profile-card-title{font-weight:500;}
.profile-row span{font-weight:500;}
.profile-row strong{font-weight:500;}
.profile-links a span{font-weight:500;}
.profile-orders-title{font-weight:500;}
.profile-orders-subtitle{font-weight:500;}
.profile-order-number{font-weight:500;}
.profile-order-meta{font-weight:500;}
.profile-order-sum{font-weight:500;}
.profile-order-item-name{font-weight:500;}
.profile-order-item-qty{font-weight:500;}
.profile-order-item-price{font-weight:500;}
.profile-logout-btn{font-weight:500;}
