:root {
    --site-primary: #0c3b56;
    --site-accent: #ff1122;
    --site-text: #ffffff;
    --site-header-background: #27303a;
    --site-header-text: #ffffff;
    --site-header-image: none;
    --site-surface: rgba(255, 255, 255, 0.94);
    --site-surface-strong: rgba(255, 255, 255, 0.98);
    --site-muted: #64748b;
    --site-ink: #0f172a;
    --site-border: rgba(203, 213, 225, 0.8);
    --site-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
    --site-radius-xl: 34px;
    --site-radius-lg: 24px;
    --site-radius-md: 18px;
}

html {
    scroll-behavior: smooth;
}

body.public-site-body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    color: var(--site-ink);
    background:
        radial-gradient(circle at top left, rgba(12, 59, 86, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 17, 34, 0.14), transparent 28%),
        linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
    font-family: Bahnschrift, "Segoe UI", sans-serif;
}

.public-site-backdrop {
    position: fixed;
    inset: 0;
    background-image: var(--site-background-image);
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

.public-header,
.public-main,
.public-footer {
    position: relative;
    z-index: 1;
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 40;
}

.public-utility-bar {
    background: #27303a;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-utility-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
}

.public-utility-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.public-utility-links a {
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.public-utility-links-right {
    justify-content: flex-end;
}

.public-nav-shell {
    background-color: var(--site-header-background);
    background-image:
        linear-gradient(0deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.18)),
        var(--site-header-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.2);
}

.public-nav-desktop {
    display: grid;
    grid-template-columns: minmax(96px, 0.55fr) minmax(300px, 1.15fr) 164px minmax(360px, 1.25fr) minmax(260px, auto);
    align-items: center;
    gap: clamp(8px, 1vw, 16px);
    min-height: 76px;
}

.public-nav-mobile-row {
    display: none;
}

.public-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-mobile-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--site-header-text);
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.92;
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.public-brand-logo {
    width: 148px;
    height: 104px;
    object-fit: contain;
    display: block;
}

.public-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.public-brand-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--site-primary);
    letter-spacing: -0.4px;
}

.public-brand-subtitle {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--site-muted);
}

.public-brand-centered {
    justify-self: center;
    background: #fff;
    padding: 10px 18px 12px;
    border-radius: 0;
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.22);
    transform: translateY(24px);
    position: relative;
    z-index: 2;
}

.public-brand-centered .public-brand-copy {
    display: none;
}

.public-brand-centered .public-brand-logo {
    width: 128px;
    height: 92px;
}

.public-brand-fallback {
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: var(--site-primary);
}

.public-nav-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1vw, 16px);
    min-width: 0;
}

.public-nav-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 96px;
}

.public-nav-contact a {
    color: var(--site-header-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.78;
}

.public-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 0 2px;
    color: var(--site-header-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.84;
}

.public-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 0;
    background: transparent;
    transition: background-color 0.18s ease;
}

.public-nav-link:hover,
.public-nav-link.is-active {
    color: var(--site-header-text);
    opacity: 1;
}

.public-nav-link:hover::after,
.public-nav-link.is-active::after {
    background: var(--site-accent);
}

.public-nav-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.public-nav-social-link {
    width: 24px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--site-header-text);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
    opacity: 0.72;
}

.public-nav-social-link:hover {
    color: #d5a15b;
    transform: translateY(-1px);
    opacity: 1;
}

.public-nav-social-link.is-disabled {
    opacity: 0.42;
    cursor: default;
    pointer-events: none;
}

.public-nav-social-link.is-disabled:hover {
    color: var(--site-header-text);
    transform: none;
    opacity: 0.42;
}

.public-nav-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.24);
}

.public-nav-language {
    position: relative;
}

.public-nav-language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--site-header-text);
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.public-nav-language-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.public-nav-language-trigger i {
    font-size: 11px;
    opacity: 0.72;
}

.public-nav-language-current,
.public-nav-language-badge {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.public-nav-flag {
    width: 28px;
    height: 20px;
    display: inline-block;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08);
}

.public-nav-language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 172px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(21, 31, 43, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.26);
    z-index: 30;
}

.public-nav-language-menu.is-open {
    display: flex;
}

.public-nav-language-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--site-header-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    opacity: 0.86;
}

.public-nav-language-link:hover,
.public-nav-language-link.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--site-header-text);
    opacity: 1;
}

.public-nav-toggle {
    display: none;
    border: 0;
    border-radius: 14px;
    background: var(--site-accent);
    color: var(--site-header-text);
    font-weight: 800;
    padding: 10px 14px;
}

.public-nav-mobile {
    display: none;
    flex-direction: column;
    padding: 14px 0 18px;
    gap: 8px;
}

.public-nav-mobile.is-open {
    display: flex;
}

.public-nav-mobile-link {
    display: block;
    padding: 10px 14px;
    border-radius: 14px;
    color: var(--site-header-text);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.88;
}

.public-nav-mobile-language-title {
    margin-top: 10px;
    padding: 4px 14px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-nav-mobile-link .public-nav-flag {
    margin-right: 10px;
    vertical-align: middle;
}

.public-nav-mobile-link .public-nav-language-badge {
    min-width: 24px;
}

.public-nav-mobile-link.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--site-header-text);
    opacity: 1;
}

html[dir="rtl"] body.public-site-body {
    direction: rtl;
}

html[dir="rtl"] .public-nav-desktop,
html[dir="rtl"] .public-nav-mobile,
html[dir="rtl"] .public-footer,
html[dir="rtl"] .public-main {
    direction: rtl;
}

html[dir="rtl"] .public-nav-contact {
    justify-content: flex-end;
}

html[dir="rtl"] .public-nav-social {
    justify-content: flex-start;
}

html[dir="rtl"] .public-nav-language-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .public-brand-copy,
html[dir="rtl"] .public-nav-mobile-link,
html[dir="rtl"] .public-footer-block,
html[dir="rtl"] .public-section-title-wrap,
html[dir="rtl"] .public-section-copy {
    text-align: right;
}

html[dir="rtl"] .public-nav-mobile-link .public-nav-flag {
    margin-right: 0;
    margin-left: 10px;
}

.public-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.public-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}

.public-btn-solid {
    background: linear-gradient(135deg, var(--site-primary), #174a69);
    color: #fff;
}

.public-btn-outline {
    background: rgba(255, 255, 255, 0.82);
    color: var(--site-primary);
    border-color: rgba(12, 59, 86, 0.16);
}

.public-btn-accent {
    background: linear-gradient(135deg, var(--site-accent), #ff5b58);
    color: #fff;
}

.public-main {
    padding: 0 0 64px;
}

.public-flash-wrap {
    padding-top: 18px;
}

.public-section {
    margin-bottom: 28px;
}

.public-flash {
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 18px;
    font-weight: 700;
    box-shadow: var(--site-shadow);
}

.public-flash-success {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.24);
}

.public-flash-error {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.24);
}

[data-reveal] {
    --reveal-x: 0;
    --reveal-y: 36px;
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
    transition:
        opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay),
        transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay);
    will-change: opacity, transform;
}

[data-reveal="left"] {
    --reveal-x: -72px;
    --reveal-y: 0;
}

[data-reveal="right"] {
    --reveal-x: 72px;
    --reveal-y: 0;
}

[data-reveal="up"] {
    --reveal-x: 0;
    --reveal-y: 54px;
}

[data-reveal].is-revealed,
.is-revealed [style*="--reveal-delay"] {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-reveal] [style*="--reveal-delay"] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.64s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay),
        transform 0.64s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal] [style*="--reveal-delay"] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.home-slider-section {
    position: relative;
}

.home-slider {
    position: relative;
    background: #111827;
    overflow: hidden;
    min-height: clamp(520px, 76vh, 860px);
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.home-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-slide-image {
    width: 100%;
    height: clamp(520px, 76vh, 860px);
    object-fit: cover;
    display: block;
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 14, 23, 0.06) 0%, rgba(9, 14, 23, 0.08) 44%, rgba(9, 14, 23, 0.22) 100%),
        linear-gradient(90deg, rgba(9, 14, 23, 0.16) 0%, rgba(9, 14, 23, 0.02) 40%, rgba(9, 14, 23, 0.14) 100%);
}

.home-slide-copy-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 144px;
    z-index: 2;
}

.home-slide-copy {
    max-width: 720px;
    color: #fff;
    text-align: center;
}

.home-slide-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 16px 32px rgba(9, 14, 23, 0.18);
}

.home-slide-caption-band {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2;
    min-width: min(860px, calc(100vw - 72px));
    max-width: calc(100vw - 72px);
    padding: 18px 26px;
    background: rgba(255, 255, 255, 0.97);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.16);
}

.home-slide-caption-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.home-slide-caption-title {
    display: block;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-slide-caption-subtitle {
    display: block;
    max-width: 780px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #475569;
    text-transform: uppercase;
}

.home-slide-caption-button {
    flex: 0 0 auto;
    min-width: 140px;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 78px;
    border: 0;
    background: rgba(0, 0, 0, 0.86);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
}

.home-slider-arrow-prev {
    left: 0;
}

.home-slider-arrow-next {
    right: 0;
}

.home-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 116px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.home-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.38);
}

.home-slider-dot.is-active {
    background: #fff;
}

.home-stat-ribbon {
    position: relative;
    margin-top: 0;
    background:
        linear-gradient(90deg, rgba(22, 36, 153, 0.96) 0%, rgba(67, 23, 127, 0.94) 52%, rgba(194, 16, 50, 0.92) 100%),
        var(--site-background-image);
    color: #fff;
    box-shadow: 0 18px 36px rgba(35, 26, 98, 0.18);
}

.home-stat-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(var(--stat-count, 4), minmax(0, 1fr));
    gap: 0;
}

.home-stat-ribbon-item {
    padding: 30px 34px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.home-stat-ribbon-item:last-child {
    border-right: 0;
}

.home-stat-ribbon-value {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    font-weight: 900;
    color: #fff;
}

.home-stat-ribbon-label {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: 0.04em;
}

.site-hero,
.page-hero,
.glass-card,
.metric-card,
.section-card,
.product-card,
.service-card,
.announcement-card,
.media-card,
.form-card,
.contact-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    box-shadow: var(--site-shadow);
}

.site-hero {
    overflow: hidden;
}

.site-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 18px;
    padding: 24px;
}

.site-hero-copy {
    padding: 10px;
}

.site-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 17, 34, 0.08);
    color: var(--site-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-hero-title,
.page-hero-title {
    margin: 16px 0 12px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 900;
    color: var(--site-primary);
    letter-spacing: -0.06em;
}

.site-hero-subtitle,
.page-hero-text {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    max-width: 720px;
}

.site-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.site-stats-grid,
.feature-grid,
.service-grid,
.announcement-grid,
.media-grid,
.contact-grid,
.product-grid,
.form-grid,
.detail-spec-grid,
.section-grid,
.metric-grid {
    display: grid;
    gap: 18px;
}

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

.metric-card {
    padding: 18px;
    min-height: 140px;
}

.metric-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--site-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-value {
    margin-top: 12px;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: var(--site-primary);
}

.metric-detail {
    margin-top: 8px;
    color: #475569;
    font-size: 13px;
}

.hero-visual {
    position: relative;
    border-radius: var(--site-radius-xl);
    overflow: hidden;
    min-height: 440px;
    background: linear-gradient(140deg, rgba(12, 59, 86, 0.92), rgba(17, 74, 105, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    border: 1px solid rgba(255,255,255,0.14);
}

.hero-visual-image {
    position: absolute;
    inset: 24px 24px 96px 24px;
    width: calc(100% - 48px);
    height: calc(100% - 120px);
    object-fit: contain;
    mix-blend-mode: screen;
}

.hero-visual-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
}

.hero-visual-badge {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    color: var(--site-primary);
    font-weight: 800;
}

.hero-visual-band {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--site-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.page-hero {
    padding: 24px;
    margin-bottom: 18px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.page-breadcrumb a {
    color: var(--site-primary);
    text-decoration: none;
}

.page-hero-split,
.page-shell,
.catalog-shell {
    display: grid;
    gap: 20px;
}

.page-hero-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
}

.page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-visual {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(12, 59, 86, 0.95), rgba(18, 70, 102, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-visual-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 14, 23, 0.08) 0%, rgba(9, 14, 23, 0.22) 44%, rgba(9, 14, 23, 0.72) 100%),
        linear-gradient(135deg, rgba(12, 59, 86, 0.28) 0%, rgba(255, 17, 34, 0.08) 100%);
}

.page-hero-visual-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    padding: 24px;
    color: #fff;
}

.page-hero-visual-content h2 {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.page-hero-visual-content p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    font-size: 14px;
}

.page-shell,
.catalog-shell {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: start;
}

.page-sidebar,
.catalog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-main,
.catalog-main {
    min-width: 0;
}

.side-card {
    padding: 20px;
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    box-shadow: var(--site-shadow);
}

.side-card-title {
    margin-bottom: 14px;
    color: var(--site-primary);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.side-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.side-nav-link:hover,
.side-nav-link.is-active {
    transform: translateY(-1px);
    border-color: rgba(12, 59, 86, 0.24);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.side-nav-link.is-active {
    background: linear-gradient(135deg, rgba(12, 59, 86, 0.98), rgba(23, 74, 105, 0.92));
    color: #fff;
}

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

.side-metric-item {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 59, 86, 0.05), rgba(12, 59, 86, 0.12));
    border: 1px solid rgba(12, 59, 86, 0.1);
}

.side-metric-item strong {
    display: block;
    color: var(--site-primary);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.side-metric-item span {
    display: block;
    margin-top: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.catalog-filter-card form,
.catalog-filter-card .form-grid {
    gap: 14px;
}

.catalog-filter-actions {
    margin-top: 2px;
}

.page-hero-title {
    font-size: clamp(28px, 3.2vw, 42px);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--site-primary);
    letter-spacing: -0.04em;
    margin: 0;
}

.section-description {
    max-width: 720px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.home-intro-section {
    position: relative;
    margin-bottom: 0;
    padding: clamp(46px, 5vw, 74px) 0 clamp(50px, 5vw, 82px);
    background:
        radial-gradient(circle, rgba(15, 23, 42, 0.14) 1px, transparent 1.4px) 0 0 / 8px 8px,
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.home-intro-section::after {
    content: "HONOR";
    position: absolute;
    top: 22px;
    right: max(7vw, 72px);
    z-index: 0;
    color: rgba(15, 23, 42, 0.08);
    font-size: clamp(110px, 18vw, 260px);
    line-height: 0.8;
    font-weight: 900;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.home-intro-section > .container-xxl {
    position: relative;
    z-index: 1;
    max-width: min(100% - 56px, 1180px);
}

.home-intro-layout,
.home-offer-grid,
.home-highlight-grid {
    display: grid;
    gap: 18px;
}

.home-intro-layout {
    grid-template-columns: minmax(460px, 0.94fr) minmax(420px, 1.06fr);
    align-items: start;
    column-gap: clamp(48px, 6vw, 88px);
    row-gap: 0;
}

.home-intro-card,
.home-highlight-panel,
.home-product-stack {
    padding: 24px;
}

.home-intro-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
    overflow: hidden;
}

.home-intro-section .home-intro-card,
.home-intro-section .home-intro-visual-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-intro-section .section-kicker {
    width: max-content;
    border-radius: 0;
    padding: 12px 16px;
    background: var(--site-accent);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.home-intro-section .section-title {
    font-size: clamp(40px, 4.1vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: #05070b;
}

.home-intro-lead {
    margin: 0;
    max-width: 610px;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.95;
}

.home-intro-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-feature-strips,
.home-feature-strip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-feature-strip-row {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 62px);
    margin-top: clamp(40px, 5vw, 70px);
    padding-top: clamp(30px, 3vw, 40px);
    border-top: 1px solid rgba(12, 59, 86, 0.22);
}

.home-intro-section .home-feature-strips {
    display: none;
}

.home-feature-strip {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12, 59, 86, 0.04), rgba(12, 59, 86, 0.1));
    border: 1px solid rgba(12, 59, 86, 0.1);
    min-height: 174px;
}

.home-feature-strip-row .home-feature-strip {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.home-feature-strip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    color: #008fe4;
    font-size: 42px;
}

.home-feature-strip-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 17, 34, 0.08);
    color: var(--site-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-feature-strip-title,
.home-stack-title,
.home-intro-product-title {
    margin: 12px 0 8px;
    font-size: 24px;
    font-weight: 900;
    color: var(--site-primary);
    letter-spacing: -0.04em;
}

.home-feature-strip-row .home-feature-strip-title {
    margin: 0;
    color: #001a52;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.home-feature-strip-row .home-feature-strip p {
    margin: 20px 0 0;
    max-width: 300px;
    color: #243244;
    font-size: 15px;
    line-height: 1.72;
}

.home-feature-strips .home-feature-strip p,
.home-product-stack-item-copy span,
.home-announcement-item p,
.home-intro-product-summary p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.home-intro-visual-card {
    position: relative;
    min-height: clamp(360px, 34vw, 500px);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-intro-visual-image {
    position: relative;
    width: min(100%, 520px);
    height: auto;
    max-height: clamp(360px, 34vw, 500px);
    object-fit: contain;
    object-position: center;
    display: block;
}

.home-intro-section .home-intro-visual-overlay,
.home-intro-section .home-intro-visual-badge,
.home-intro-section .home-intro-product-summary {
    display: none;
}

.home-intro-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 14, 23, 0.08) 0%, rgba(9, 14, 23, 0.12) 36%, rgba(9, 14, 23, 0.64) 100%),
        linear-gradient(135deg, rgba(12, 59, 86, 0.28) 0%, rgba(255, 17, 34, 0.08) 100%);
}

.home-intro-visual-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-intro-product-summary {
    position: relative;
    z-index: 2;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.home-intro-product-summary .public-btn {
    margin-top: 16px;
}

.home-offer-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: start;
}

.home-offer-services {
    align-self: stretch;
}

.home-service-card {
    min-height: 100%;
    border: 1px solid rgba(12, 59, 86, 0.08);
}

.home-stack-header {
    margin-bottom: 8px;
}

.home-product-stack-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.home-product-stack-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-product-stack-item:first-of-type {
    padding-top: 8px;
}

.home-product-stack-item-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-product-stack-item-copy strong {
    color: var(--site-primary);
    font-size: 16px;
    font-weight: 900;
}

.home-stack-link {
    flex: 0 0 auto;
    color: var(--site-accent);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

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

.home-highlight-header {
    margin-bottom: 18px;
}

.home-announcement-stack {
    display: grid;
    gap: 14px;
}

.home-announcement-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

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

.home-media-mosaic-item {
    min-height: 100%;
}

.feature-grid,
.service-grid,
.announcement-grid,
.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card,
.service-card,
.announcement-card,
.media-card,
.product-card,
.contact-card,
.section-card,
.form-card {
    padding: 20px;
}

.feature-title,
.service-title,
.product-title,
.section-card-title,
.contact-title {
    margin: 12px 0 8px;
    font-size: 21px;
    font-weight: 900;
    color: var(--site-primary);
    letter-spacing: -0.03em;
}

.feature-card p,
.service-card p,
.announcement-card p,
.contact-card p,
.section-card p,
.product-summary {
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 0;
}

.service-highlight {
    display: inline-block;
    margin: 8px 0 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(12, 59, 86, 0.08);
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 800;
}

.tag-list,
.chip-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-item,
.chip-item {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #274159;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.chip-item.is-active {
    background: var(--site-primary);
    color: #fff;
    border-color: var(--site-primary);
}

.announcement-meta,
.product-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(12, 59, 86, 0.08);
    color: var(--site-primary);
}

.media-card {
    overflow: hidden;
    padding: 0;
}

.media-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #0f172a;
}

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

.product-card-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 59, 86, 0.05), rgba(12, 59, 86, 0.14));
    margin-bottom: 16px;
    overflow: hidden;
}

.product-card-image,
.detail-hero-image {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-card-footer,
.detail-hero-footer {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.product-group-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px dashed rgba(148, 163, 184, 0.4);
    border-radius: 24px;
}

.product-group-title {
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--site-primary);
    font-weight: 900;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-card .form-control,
.form-card .form-select {
    min-height: 48px;
    border-radius: 16px;
    border-color: rgba(148, 163, 184, 0.38);
    background: rgba(255,255,255,0.94);
}

.form-card textarea.form-control {
    min-height: 150px;
}

.form-card label {
    font-size: 13px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 8px;
}

.contact-card a,
.document-link,
.product-card a,
.public-footer a {
    color: inherit;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.24);
}

.document-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--site-primary);
}

.empty-state {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px dashed rgba(148, 163, 184, 0.42);
    color: #64748b;
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 20px;
}

.detail-hero {
    padding: 24px;
}

.detail-hero-image-wrap {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 59, 86, 0.05), rgba(12, 59, 86, 0.14));
}

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

.detail-spec-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.24);
}

.detail-spec-label {
    font-size: 12px;
    color: var(--site-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-spec-value {
    margin-top: 8px;
    font-size: 18px;
    color: var(--site-primary);
    font-weight: 900;
}

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

.section-card.is-selected {
    border-color: rgba(255, 17, 34, 0.38);
    box-shadow: 0 22px 46px rgba(255, 17, 34, 0.12);
}

.public-footer {
    background: linear-gradient(180deg, rgba(12, 59, 86, 0.98), rgba(7, 31, 46, 0.98));
    color: rgba(255, 255, 255, 0.88);
    padding: 34px 0 22px;
}

.public-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.public-footer-kicker,
.public-footer-title {
    display: inline-block;
    color: rgba(255,255,255,0.68);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    margin-bottom: 10px;
}

.public-footer h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 900;
}

.public-footer p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.78);
}

.public-footer a {
    text-decoration: none;
}

.public-footer-link {
    color: #fff;
    font-weight: 800;
}

.public-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
}

@media (max-width: 1600px) {
    .public-nav-desktop {
        grid-template-columns: minmax(72px, 0.45fr) minmax(270px, 1.05fr) 146px minmax(330px, 1.2fr) minmax(230px, auto);
        gap: 8px;
    }

    .public-brand-centered {
        padding: 9px 16px 11px;
        transform: translateY(22px);
    }

    .public-brand-centered .public-brand-logo {
        width: 118px;
        height: 84px;
    }

    .public-nav-group {
        gap: 10px;
    }

    .public-nav-link {
        font-size: 12px;
        letter-spacing: 0.01em;
    }

    .public-nav-social {
        gap: 6px;
    }

    .public-nav-social-link {
        width: 22px;
        font-size: 13px;
    }

    .public-nav-language-trigger {
        gap: 6px;
        padding: 0 10px;
    }
}

@media (max-width: 1199.98px) {
    .site-hero-grid,
    .detail-layout,
    .public-footer-grid {
        grid-template-columns: 1fr;
    }

    .public-nav-desktop {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    }

    .public-nav-contact,
    .public-nav-social {
        display: none;
    }

    .home-intro-section > .container-xxl {
        max-width: min(100% - 32px, 1140px);
    }

    .page-hero-split,
    .page-shell,
    .catalog-shell {
        grid-template-columns: 1fr;
    }

    .page-main,
    .catalog-main {
        order: 1;
    }

    .page-sidebar,
    .catalog-sidebar {
        order: 2;
    }

    .page-hero-visual {
        min-height: 300px;
    }

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

    .feature-grid,
    .service-grid,
    .announcement-grid,
    .product-grid,
    .contact-grid,
    .section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .public-nav-toggle {
        display: inline-flex;
    }

    .public-utility-row {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 10px 0;
    }

    .public-utility-links-right {
        justify-content: flex-start;
    }

    .public-nav-desktop {
        display: none;
    }

    .public-nav-mobile-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        min-height: 76px;
    }

    .public-brand-mobile {
        gap: 12px;
    }

    .public-brand-mobile .public-brand-logo {
        width: 72px;
        height: 52px;
    }

    .public-brand-mobile .public-brand-copy {
        display: flex;
    }

    .public-mobile-actions {
        display: flex;
    }

    .home-intro-layout,
    .home-offer-grid,
    .home-highlight-grid {
        grid-template-columns: 1fr;
    }

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

    .home-intro-visual-card {
        min-height: 360px;
    }

    .home-feature-strips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-feature-strip-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .home-slide-copy-wrap {
        padding-bottom: 132px;
    }

    .home-slide-caption-band {
        min-width: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        gap: 16px;
    }

    .home-slide-caption-title {
        font-size: clamp(18px, 2.4vw, 22px);
        letter-spacing: 0.16em;
    }
}

@media (max-width: 767.98px) {
    .public-flash-wrap {
        padding-top: 12px;
    }

    .site-stats-grid,
    .feature-grid,
    .service-grid,
    .announcement-grid,
    .media-grid,
    .contact-grid,
    .product-grid,
    .detail-spec-grid,
    .section-grid,
    .home-stat-ribbon-grid,
    .home-feature-strips,
    .home-media-mosaic {
        grid-template-columns: 1fr;
    }

    .home-feature-strip-row {
        grid-template-columns: 1fr;
    }

    .site-hero-grid,
    .page-hero,
    .feature-card,
    .service-card,
    .announcement-card,
    .product-card,
    .form-card,
    .contact-card,
    .section-card,
    .detail-hero {
        padding: 18px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .home-intro-card,
    .home-highlight-panel,
    .home-product-stack {
        padding: 18px;
    }

    .home-intro-visual-card {
        min-height: 300px;
    }

    .home-intro-section {
        padding: 42px 0;
    }

    .home-intro-section::after {
        right: 18px;
        font-size: 94px;
    }

    .home-intro-section .section-title {
        font-size: 38px;
    }

    .page-hero-visual {
        min-height: 260px;
    }

    .page-hero-visual-content,
    .side-card {
        padding: 18px;
    }

    .side-metric-grid {
        grid-template-columns: 1fr;
    }

    .home-intro-product-summary {
        width: calc(100% - 24px);
        margin: 0 12px 12px;
        padding: 16px;
    }

    .home-product-stack-item {
        flex-direction: column;
    }

    .hero-visual-image {
        inset: 18px 18px 82px 18px;
        width: calc(100% - 36px);
        height: calc(100% - 100px);
    }

    .public-utility-links {
        gap: 10px;
    }

    .public-brand-mobile .public-brand-name {
        font-size: 18px;
    }

    .home-slider,
    .home-slide-image {
        min-height: 420px;
        height: 420px;
    }

    .home-slide-copy-wrap {
        padding-bottom: 116px;
    }

    .home-slide-caption-band {
        min-width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        padding: 14px 16px;
        bottom: 18px;
        flex-direction: column;
        gap: 12px;
    }

    .home-slide-caption-title {
        font-size: 15px;
        letter-spacing: 0.1em;
    }

    .home-slide-caption-subtitle {
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    .home-slide-caption-button {
        width: 100%;
        min-width: 0;
    }

    .home-slider-dots {
        bottom: 88px;
    }

    .home-slider-arrow {
        width: 38px;
        height: 64px;
        font-size: 28px;
    }

    .home-stat-ribbon-item {
        min-height: auto;
        padding: 20px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .home-stat-ribbon-item:last-child {
        border-bottom: 0;
    }
}
