* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --c1-bg: #ffffff;
    --c1-surface: #f6f8fb;
    --c1-navy: #0b1f3b;
    --c1-navy-2: #163a66;
    --c1-text: #22324a;
    --c1-muted: #5b6b82;
    --c1-line: #dde5ef;
    --c1-orange: #f97316;
    --c1-orange-2: #fb8a3a;
    --c1-shadow: 0 10px 30px rgba(11, 31, 59, .08);
    --c1-radius: 4px;
    --c1-max: 1180px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.65;
    color: var(--c1-text);
    background: var(--c1-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit
}

.c1-wrap {
    max-width: var(--c1-max);
    margin: 0 auto;
    padding: 0 20px
}

.c1-topbar {
    background: var(--c1-navy);
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    padding: 10px 0;
}

.c1-head {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--c1-line);
}

.c1-headin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    gap: 16px;
}

.c1-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c1-navy);
}

.c1-mark {
    width: 38px;
    height: 38px;
    border: 2px solid var(--c1-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: .04em;
}

.c1-brandtxt {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.c1-brandtxt strong {
    font-size: 15px
}

.c1-brandtxt span {
    font-size: 12px;
    color: var(--c1-muted);
    font-weight: 600
}

.c1-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.c1-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .02em;
    color: var(--c1-text);
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
}

.c1-nav a:hover {
    border-bottom-color: var(--c1-orange);
    color: var(--c1-navy)
}

.c1-hero {
    padding: 48px 0 22px;
    background: linear-gradient(180deg, #fff 0%, var(--c1-surface) 100%);
    border-bottom: 1px solid var(--c1-line);
}

.c1-hgrid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c1-hleft {
    flex: 1;
    min-width: 280px
}

.c1-hright {
    width: 320px;
    min-width: 280px
}

.c1-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--c1-line);
    padding: 8px 12px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #fff;
}

.c1-title {
    margin-top: 14px;
    font-size: 40px;
    line-height: 1.1;
    color: var(--c1-navy);
    letter-spacing: -.02em;
}

.c1-sub {
    margin-top: 14px;
    color: var(--c1-muted);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    max-width: 720px;
}

.c1-kpis {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.c1-kpi {
    background: #fff;
    border: 1px solid var(--c1-line);
    padding: 12px 14px;
    min-width: 160px;
}

.c1-kpi strong {
    display: block;
    font-size: 20px;
    color: var(--c1-navy);
}

.c1-kpi span {
    display: block;
    color: var(--c1-muted);
    font-size: 12px;
    font-weight: 700
}

.c1-card {
    background: #fff;
    border: 1px solid var(--c1-line);
    box-shadow: var(--c1-shadow);
    padding: 18px;
}

.c1-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c1-navy);
    margin-bottom: 10px;
}

.c1-note {
    color: var(--c1-muted);
    font-size: 14px;
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.c1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .02em;
    font-size: 14px;
    min-height: 44px;
    background: linear-gradient(135deg, var(--c1-orange), var(--c1-orange-2));
    color: #1b130c;
}

.c1-btn:active {
    transform: translateY(1px)
}

.c1-btn2 {
    background: #fff;
    border: 1px solid var(--c1-line);
    color: var(--c1-navy);
}

.c1-sect {
    padding: 44px 0
}

.c1-sectalt {
    background: var(--c1-surface);
    border-top: 1px solid var(--c1-line);
    border-bottom: 1px solid var(--c1-line)
}

.c1-h2 {
    font-size: 28px;
    color: var(--c1-navy);
    letter-spacing: -.02em
}

.c1-p {
    margin-top: 10px;
    color: var(--c1-muted);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px
}

.c1-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    background: #fff;
    border: 1px solid var(--c1-line);
}

.c1-table th,
.c1-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--c1-line);
    vertical-align: middle;
}

.c1-table th {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c1-muted);
    background: #fbfcfe;
}

.c1-op {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.c1-opimg {
    width: 92px;
    height: 56px;
    border: 1px solid var(--c1-line);
    background: #000;
    display: flex;
    padding: 3px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c1-opimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.c1-opmeta strong {
    display: block;
    color: var(--c1-navy);
    font-size: 14px
}

.c1-opmeta span {
    display: block;
    color: var(--c1-muted);
    font-size: 12px;
    font-weight: 700
}

.c1-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .04em;
    padding: 6px 10px;
    background: #fff6ee;
    border: 1px solid rgba(249, 115, 22, .35);
    color: #7a3b12;
}

.c1-small {
    font-size: 12px;
    color: var(--c1-muted);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

.c1-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c1-li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.c1-ico {
    width: 30px;
    height: 30px;
    border: 1px solid var(--c1-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--c1-navy);
    background: #fff;
    flex: 0 0 auto;
}

.c1-li p {
    margin: 0;
    color: var(--c1-muted);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

.c1-revgrid {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.c1-rev {
    flex: 1;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--c1-line);
    padding: 16px;
}

.c1-revhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.c1-revname {
    font-weight: 900;
    color: var(--c1-navy)
}

.c1-revdate {
    font-size: 12px;
    color: var(--c1-muted);
    font-weight: 800
}

.c1-revtxt {
    margin-top: 10px;
    color: var(--c1-muted);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

.c1-stars {
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 900;
    color: #b45309
}

.c1-faq {
    margin-top: 18px;
    border: 1px solid var(--c1-line);
    background: #fff
}

.c1-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--c1-line);
    cursor: pointer;
    font-weight: 900;
    color: var(--c1-navy);
    background: #fff;
    user-select: none;
}

.c1-q span:last-child {
    font-weight: 900;
    color: var(--c1-orange)
}

.c1-a {
    display: none;
    padding: 12px;
    color: var(--c1-muted);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.c1-a.is-open {
    display: block
}

.c1-q.is-open {
    background: #fbfcfe
}

.c1-foot {
    background: var(--c1-navy);
    color: rgba(255, 255, 255, .86);
    padding: 34px 0 18px;
    margin-top: 30px;
}

.c1-fgrid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: space-between;
    align-items: flex-start;
}

.c1-fcol {
    min-width: 220px;
    flex: 1
}

.c1-fcol h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.c1-fcol ul {
    list-style: none
}

.c1-fcol li {
    margin-bottom: 8px
}

.c1-fcol a {
    text-decoration: none;
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
    font-size: 13px
}

.c1-fcol a:hover {
    color: #fff
}

.c1-icons {
    margin: 22px 0 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.c1-icons a,
.c1-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.c1-icons img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9
}

.c1-icons .c1-i18 img {
    filter: none;
    opacity: 1
}

.c1-fbot {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
    padding-top: 14px;
}

.c1-age {
    position: fixed;
    inset: auto 0 0 0;
    background: rgba(255, 255, 255, .98);
    border-top: 3px solid var(--c1-orange);
    box-shadow: 0 -14px 30px rgba(0, 0, 0, .12);
    display: none;
    z-index: 10000;
}

.c1-age.is-on {
    display: block
}

.c1-agein {
    max-width: var(--c1-max);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.c1-agetxt {
    min-width: 240px;
    flex: 1;
    color: var(--c1-text);
    font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

.c1-agebtns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.c1-op {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.c1-opimg {
    flex: 0 0 92px;
    width: 92px;
    height: 56px;
    border: 1px solid var(--c1-line); 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c1-opimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.c1-opmeta {
    min-width: 0;
}

.c1-opmeta strong {
    display: block;
    color: var(--c1-navy);
    font-size: 14px;
    line-height: 1.15;
}

.c1-opmeta span {
    display: block;
    color: var(--c1-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width:860px) {
    .c1-title {
        font-size: 34px
    }

    .c1-hright {
        width: 100%
    }

    .c1-nav ul {
        justify-content: flex-start
    }

    .c1-head {
        position: sticky
    }

    .c1-headin {
        position: relative;
        align-items: center;
        padding: 12px;
    }

    .c1-burger {
        display: inline-flex
    }

    .c1-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: auto;
        background: #fff;
        border-bottom: 1px solid var(--c1-line);
        box-shadow: 0 18px 30px rgba(11, 31, 59, .10);
        display: none;
    }

    .c1-nav.is-open {
        display: block
    }

    .c1-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 10px 20px 14px;
        margin: 0;
    }

    .c1-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--c1-line);
    }

    .c1-nav li:last-child a {
        border-bottom: none
    }

    .c1-nav a:hover {
        border-bottom-color: var(--c1-line)
    }

    .c1-brandtxt strong {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width:520px) {
    .c1-title {
        font-size: 30px
    }

    .c1-table th:nth-child(2),
    .c1-table td:nth-child(2) {
        display: none
    }

    .c1-op {
        display: grid;
        grid-template-columns: 78px 1fr;
        align-items: center;
        gap: 12px;
    }

    .c1-opimg {
        width: 78px;
        height: 52px;
        padding: 6px;
        flex: none;
    }

    .c1-opimg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

}

.c1-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--c1-line);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.c1-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c1-navy);
}

.c1-burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.c1-burger.is-open span:nth-child(2) {
    opacity: 0
}

.c1-burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.c1-burger span {
    transition: transform .2s ease, opacity .2s ease
}