:root {
    --color-primary: #0b1f3a;
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-accent: #6c5ce7;
    --color-gold: #d4af37;
    --color-muted: #a8b3c7;
    --radius-card: 20px;
    --radius-btn: 12px;
    --shadow-soft: 0 14px 50px rgba(0, 0, 0, 0.32);
    --shadow-hover: 0 20px 55px rgba(108, 92, 231, 0.3);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--color-white);
    line-height: 1.6;
    background:
        radial-gradient(circle at 18% 18%, rgba(108, 92, 231, 0.27), transparent 36%),
        radial-gradient(circle at 84% 10%, rgba(212, 175, 55, 0.16), transparent 33%),
        linear-gradient(150deg, #05060c 0%, #0a0a0a 35%, #081730 100%);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
}

.site-container {
    max-width: 1540px;
}

.catalog-wide-container {
    max-width: 1540px;
}

.ambient-glow {
    position: fixed;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.42;
    z-index: -1;
}

.ambient-1 {
    width: 280px;
    height: 280px;
    background: rgba(108, 92, 231, 0.4);
    top: -40px;
    left: -40px;
}

.ambient-2 {
    width: 260px;
    height: 260px;
    background: rgba(212, 175, 55, 0.24);
    bottom: 10%;
    right: -50px;
}

.site-header .navbar {
    margin-top: 10px;
    border-radius: 18px;
    background: rgba(11, 31, 58, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(13px);
    box-shadow: var(--shadow-soft);
}

.brand-mark {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark:hover {
    color: var(--color-white);
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(108, 92, 231, 0.55));
}

.brand-text {
    line-height: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 600;
    border-radius: 12px;
    padding: 8px 14px !important;
    transition: all 0.24s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white) !important;
    background: linear-gradient(120deg, rgba(108, 92, 231, 0.25), rgba(11, 31, 58, 0.52));
}

.lang-switch-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-chip {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    border-radius: 999px;
    padding: 6px 10px;
    transition: all 0.2s ease;
}

.lang-chip:hover {
    color: var(--color-white);
}

.lang-chip.active {
    color: var(--color-white);
    background: linear-gradient(120deg, rgba(108, 92, 231, 0.34), rgba(11, 31, 58, 0.5));
}

.glass-card {
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.5), rgba(9, 9, 9, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.glass-hover {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.glass-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-section {
    padding-top: 42px;
}

.hero-panel {
    padding: clamp(1.5rem, 3vw, 2.6rem);
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.35px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(108, 92, 231, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-title {
    font-size: clamp(2rem, 3.9vw, 3rem);
    line-height: 1.18;
    margin-bottom: 0.9rem;
    font-weight: 800;
}

.lead-text {
    color: var(--color-muted);
    max-width: 620px;
    margin-bottom: 0;
}

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

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #d7deea;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-gold), var(--color-accent));
}

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

.stat-value {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
}

.stat-label {
    color: var(--color-muted);
    font-size: 0.88rem;
}

.section-block {
    padding-top: 60px;
}

.section-head {
    margin-bottom: 24px;
}

.section-head h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 750;
    margin-bottom: 0.4rem;
}

.section-head p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.icon-bubble {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.4), rgba(11, 31, 58, 0.4));
    color: #f5f4ff;
    font-size: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.text-muted-light {
    color: var(--color-muted);
}

.btn-gradient {
    border: 0;
    color: var(--color-white);
    border-radius: var(--radius-btn);
    background: linear-gradient(120deg, #132b53 0%, #465ad8 58%, #7b69ff 100%);
    padding: 12px 20px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(70, 90, 216, 0.38);
}

.btn-gradient:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(70, 90, 216, 0.5);
}

.btn-outline-glass {
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--color-white);
    padding: 11px 20px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.btn-outline-glass:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.11);
}

.product-action-stack {
    display: flex;
    flex-direction: column;
}

.product-action-stack > .btn,
.product-action-stack > a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.product-action-stack > * + * {
    margin-top: 14px !important;
}

.product-action-item > .btn,
.product-action-item > a.btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.price-chip {
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f8e7ab;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 4px 11px;
}

.rating-chip {
    border-radius: 999px;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.4);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 4px 11px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    font-weight: 600;
    transition: all 0.22s ease;
}

.category-pill:hover,
.category-pill.active {
    color: var(--color-white);
    border-color: rgba(108, 92, 231, 0.65);
    background: rgba(108, 92, 231, 0.2);
}

.small-label {
    letter-spacing: 0.3px;
    font-size: 0.79rem;
    text-transform: uppercase;
    color: #bcc7d8;
}

.breadcrumb-glass {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 13px;
    color: #cfd7e4;
    font-size: 0.86rem;
}

.breadcrumb-glass a {
    color: #dbe1ea;
}

.case-metric {
    font-weight: 800;
    color: #f3e8bc;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    box-shadow: none;
}

.form-control::placeholder {
    color: #b6c2d6;
}

.site-footer {
    padding-top: 50px;
}

.alert-soft {
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.4);
    color: #ece8ff;
    border-radius: 12px;
}

@media (min-width: 1200px) {
    .catalog-product-row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .catalog-product-row > .catalog-product-col {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .catalog-product-col .glass-card {
        padding: 1.1rem !important;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .lang-switch-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .glass-card {
        border-radius: 16px;
    }

    .section-block {
        padding-top: 42px;
    }
}
