@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/outfit-v11-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/outfit-v11-latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Instrument Sans';
    src: url('/assets/fonts/instrument-sans-v1-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Instrument Sans';
    src: url('/assets/fonts/instrument-sans-v1-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Instrument Sans';
    src: url('/assets/fonts/instrument-sans-v1-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ct-navy: #091650;
    --ct-blue: #1B2EA6;
    --ct-vivid: #2C4CD4;
    --ct-orange: #EF7038;
    --ct-orange-lt: #F28B58;
    --ct-muted: #3A52B8;

    --surf-page: #F4F5FD;
    --surf-panel: #FFFFFF;
    --surf-tint: #ECEFFE;
    --surf-accent: rgba(44, 76, 212, 0.07);
    --surf-dark: #091650;

    --text-main: #091650;
    --text-sub: #1B2EA6;
    --text-soft: #4A62C0;
    --text-inv: #FFFFFF;

    --edge: rgba(27, 46, 166, 0.18);
    --glow: rgba(44, 76, 212, 0.12);
    --glow-orange: rgba(239, 112, 56, 0.18);

    --ff-head: 'Outfit', system-ui, sans-serif;
    --ff-body: 'Instrument Sans', -apple-system, sans-serif;

    --fw-reg: 400;
    --fw-med: 500;
    --fw-bd: 700;
    --fw-xbd: 800;

    --fz-display: clamp(2rem, 4.8vw, 3.75rem);
    --fz-section: clamp(1.625rem, 3.8vw, 2.75rem);
    --fz-title: clamp(1.25rem, 2.6vw, 1.75rem);
    --fz-body: 1.0625rem;
    --fz-meta: 0.875rem;

    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 3.5rem;
    --gap-xl: 6rem;

    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    .ct-action:hover { transform: none; }
}

body {
    font-family: var(--ff-body);
    font-size: var(--fz-body);
    font-weight: var(--fw-reg);
    line-height: 1.68;
    color: var(--ct-navy);
    background-color: var(--surf-page);
    min-height: 100vh;
}

.ct-display { font-family: var(--ff-head); font-size: var(--fz-display); font-weight: var(--fw-xbd); line-height: 1.1; letter-spacing: -0.028em; color: var(--text-main); }
.ct-heading { font-family: var(--ff-head); font-size: var(--fz-section); font-weight: var(--fw-bd); line-height: 1.22; letter-spacing: -0.018em; color: var(--text-main); }
.ct-label { font-family: var(--ff-head); font-size: var(--fz-title); font-weight: var(--fw-bd); line-height: 1.36; color: var(--text-main); }
.ct-text { font-family: var(--ff-body); font-size: var(--fz-body); font-weight: var(--fw-reg); line-height: 1.78; color: var(--ct-navy); }
.ct-meta { font-family: var(--ff-body); font-size: var(--fz-meta); font-weight: var(--fw-reg); line-height: 1.58; color: var(--text-soft); }

h1 { font-family: var(--ff-head); font-size: var(--fz-display); font-weight: var(--fw-xbd); line-height: 1.1; letter-spacing: -0.028em; color: var(--text-main); margin-bottom: 1.5rem; }
h2 { font-family: var(--ff-head); font-size: var(--fz-section); font-weight: var(--fw-bd); line-height: 1.22; letter-spacing: -0.018em; color: var(--text-main); margin-bottom: 1.25rem; }
h3 { font-family: var(--ff-head); font-size: var(--fz-title); font-weight: var(--fw-bd); line-height: 1.36; color: var(--text-main); margin-bottom: 1rem; }
p { line-height: 1.78; margin-bottom: 0.875rem; }
small { font-size: var(--fz-meta); line-height: 1.58; }

img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; transition: color 0.22s ease; }
a:not([class]) { text-decoration: underline; text-underline-offset: 3px; }
a:not([class]):hover { color: var(--ct-vivid); }
nav a, .ct-action { text-decoration: none; }

.ct-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.75rem);
}

.ct-ico { display: inline-block; width: 20px; height: 20px; object-fit: contain; vertical-align: -0.14em; flex-shrink: 0; }
.ct-ico--sm { width: 16px; height: 16px; }
.ct-ico--md { width: 24px; height: 24px; }
.ct-ico--lg { width: 36px; height: 36px; }
.ct-ico--white { filter: brightness(0) invert(1); }
.ct-ico--navy { filter: brightness(0) saturate(100%) invert(9%) sepia(68%) saturate(2400%) hue-rotate(224deg) brightness(86%) contrast(102%); }
.ct-ico--orange { filter: brightness(0) saturate(100%) invert(52%) sepia(58%) saturate(900%) hue-rotate(340deg) brightness(100%) contrast(96%); }

.ct-action {
    font-family: var(--ff-head);
    font-weight: var(--fw-bd);
    font-size: 15px;
    letter-spacing: 0.5px;
    height: 52px;
    padding: 0 26px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    gap: 0.42rem;
    border: none;
    transition: box-shadow 0.24s ease, background 0.24s ease, filter 0.24s ease;
}

.ct-action--primary {
    background: linear-gradient(160deg, #2155E8 0%, #1A2EA6 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 18px rgba(27, 46, 166, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.ct-action--primary:hover {
    background: linear-gradient(160deg, #2C63F5 0%, #1E35BF 100%);
    box-shadow: 0 6px 28px rgba(27, 46, 166, 0.58), 0 0 0 4px rgba(44, 76, 212, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    filter: brightness(1.06);
}
.ct-action--primary:active {
    filter: brightness(0.96);
    box-shadow: 0 2px 10px rgba(27, 46, 166, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ct-action--cta {
    background: linear-gradient(160deg, #F5823A 0%, #E05E1A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 18px rgba(239, 112, 56, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.ct-action--cta:hover {
    background: linear-gradient(160deg, #F99052 0%, #E86B28 100%);
    box-shadow: 0 6px 30px rgba(239, 112, 56, 0.60), 0 0 0 4px rgba(239, 112, 56, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.06);
}
.ct-action--cta:active {
    filter: brightness(0.95);
    box-shadow: 0 2px 10px rgba(239, 112, 56, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ct-action--soft {
    background: #E8ECFA;
    color: var(--ct-navy);
    box-shadow: inset 0 1px 2px #C8D0F0, 0 1px 4px #D0D8F4;
}
.ct-action--soft:hover {
    background: #D6DEFA;
    color: var(--ct-vivid);
    box-shadow: 0 4px 18px #B8C4F0;
}
.ct-action--soft:active {
    background: #CBD5F8;
    box-shadow: inset 0 2px 4px #B0BEE8;
}

.ct-action--soft-inv {
    background: #1A2B6E;
    color: #C8D2F8;
    box-shadow: inset 0 1px 0 #253580;
}
.ct-action--soft-inv:hover {
    background: #213280;
    color: #FFFFFF;
    box-shadow: 0 4px 16px #0A1640;
}
.ct-action--soft-inv:active {
    background: #162460;
    box-shadow: inset 0 2px 4px #0A1640;
}

.ct-action--lg { height: 56px; padding: 0 32px; padding-bottom: 1px; font-size: 15.5px; }
.ct-action--sm { height: 40px; padding: 0 16px; padding-bottom: 1px; font-size: 13px; letter-spacing: 0.3px; border-radius: 8px; }
.ct-action--full { width: 100%; }

.ct-action:focus-visible {
    outline: 2.5px solid var(--ct-orange);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--glow-orange);
}
a:focus-visible {
    outline: 2px solid var(--ct-vivid);
    outline-offset: 2px;
    border-radius: 2px;
}

.ct-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}
.ct-header.is-scrolled {
    box-shadow: 0 6px 36px rgba(9, 22, 80, 0.42);
}

.ct-header__main {
    background: var(--ct-navy);
    background-image: radial-gradient(ellipse 90% 70% at 50% -5%, rgba(44, 76, 212, 0.20) 0%, transparent 68%);
}
.ct-header__main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 70px;
}

.ct-header__nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: #162060;
    border-radius: 50px;
    padding: 0.3rem 0.625rem;
}
.ct-header__nav-link {
    font-family: var(--ff-head);
    font-size: 13.5px;
    font-weight: var(--fw-bd);
    color: #B8CAEE;
    padding: 0.32rem 0.9rem;
    border-radius: 50px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.ct-header__nav-link:hover,
.ct-header__nav-link.is-active {
    background: #2040A0;
    color: #FFFFFF;
}

.ct-header__brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}
.ct-header__badge {
    font-family: var(--ff-head);
    font-size: 10px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    background: linear-gradient(135deg, #F5823A 0%, #D95214 100%);
    padding: 0.22rem 0.52rem 0.18rem;
    border-radius: 5px;
    line-height: 1;
    letter-spacing: 0.6px;
    align-self: flex-start;
    margin-top: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px #C04A10, inset 0 1px 0 #FFA070;
    text-transform: uppercase;
}
.ct-header__logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    flex-shrink: 0;
}
.ct-header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}
.ct-header__brand-name {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.ct-header__brand-name span {
    color: var(--ct-orange-lt);
}
.ct-header__brand-desc {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: var(--fw-bd);
    color: #7A9AF8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.ct-header__actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.ct-header__about {
    font-family: var(--ff-head);
    font-size: 13.5px;
    font-weight: var(--fw-bd);
    color: #BACEEE;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.ct-header__about:hover { color: #FFFFFF; }
.ct-header__cta {
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
}

.ct-header__trust {
    background: rgba(5, 10, 40, 0.96);
    max-height: 34px;
    overflow: hidden;
    transition: max-height 0.34s ease, opacity 0.34s ease;
}
.ct-header.is-scrolled .ct-header__trust {
    max-height: 0;
    opacity: 0;
}
.ct-header__trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    gap: 1rem;
}
.ct-header__trust-text {
    font-size: 12px;
    font-weight: var(--fw-bd);
    color: #8AA4D8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ct-header__trust-items {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
}
.ct-header__trust-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 12px;
    font-weight: var(--fw-bd);
    color: #9AB6E4;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ct-header__trust-link:hover { color: #FFFFFF; }
.ct-header__trust-sep {
    width: 1px;
    height: 12px;
    background: #2A3A7A;
    flex-shrink: 0;
}

.ct-header__burger {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(44, 76, 212, 0.16);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.ct-header__burger:hover { background: rgba(44, 76, 212, 0.30); }

.ct-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 22, 80, 0.70);
    z-index: 149;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ct-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ct-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 86vw);
    background: var(--surf-dark);
    background-image: radial-gradient(ellipse 120% 40% at 50% 0%, rgba(44, 76, 212, 0.28) 0%, transparent 55%);
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    overflow-y: auto;
}
.ct-mobile-menu.is-open { transform: translateX(0); }

.ct-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.ct-mobile-menu__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.ct-mobile-menu__logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}
.ct-mobile-menu__brand-name {
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
}
.ct-mobile-menu__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 76, 212, 0.16);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s ease;
}
.ct-mobile-menu__close:hover { background: rgba(44, 76, 212, 0.30); }

.ct-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}
.ct-mobile-menu__link {
    font-family: var(--ff-head);
    font-size: 17px;
    font-weight: var(--fw-bd);
    color: #D8E2F8;
    padding: 0.825rem 0.875rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease, color 0.2s ease;
}
.ct-mobile-menu__link:hover {
    background: rgba(44, 76, 212, 0.20);
    color: #FFFFFF;
}
.ct-mobile-menu__link img { opacity: 0.5; }

.ct-mobile-menu__footer {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ct-mobile-menu__responsible {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.46);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
}
.ct-mobile-menu__responsible:hover { color: rgba(255, 255, 255, 0.72); }

.ct-age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.ct-age-gate.is-hidden { display: none; }

.ct-age-gate__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 42, 0.97) 0%, rgba(9, 22, 80, 0.94) 100%);
    backdrop-filter: blur(10px);
}
.ct-age-gate__overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 640px;
    height: 440px;
    background: radial-gradient(ellipse at center, rgba(44, 76, 212, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.ct-age-gate__modal {
    position: relative;
    background: var(--surf-panel);
    border-radius: 20px;
    padding: 3rem 2.625rem 2.5rem;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(5, 10, 42, 0.60), 0 0 0 1px rgba(44, 76, 212, 0.08);
}

.ct-age-gate__badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #F5823A 0%, #D95A14 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.875rem;
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(239, 112, 56, 0.46), 0 0 0 8px rgba(239, 112, 56, 0.10);
}

.ct-age-gate__title {
    font-family: var(--ff-head);
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: var(--fw-xbd);
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.ct-age-gate__text {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.74;
    margin: 0 auto 2rem;
    max-width: 380px;
}
.ct-age-gate__text a {
    color: var(--ct-vivid);
}

.ct-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ct-age-gate__confirm {
    height: 52px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 12px;
}

.ct-age-gate__exit {
    height: 52px;
    padding: 0 26px;
    padding-bottom: 1px;
    border-radius: 12px;
    font-family: var(--ff-head);
    font-size: 14.5px;
    font-weight: var(--fw-bd);
    letter-spacing: 0.4px;
    color: var(--text-soft);
    background: rgba(9, 22, 80, 0.06);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 2px rgba(9, 22, 80, 0.06);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.ct-age-gate__exit:hover {
    background: rgba(9, 22, 80, 0.11);
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(9, 22, 80, 0.08);
}
.ct-age-gate__exit:active {
    background: rgba(9, 22, 80, 0.16);
    box-shadow: inset 0 2px 4px rgba(9, 22, 80, 0.10);
}

.ct-age-gate__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--surf-tint);
    border-radius: 10px;
    padding: 0.875rem 1.125rem;
}
.ct-age-gate__info-text {
    font-size: var(--fz-meta);
    color: var(--text-soft);
    line-height: 1.5;
}

.ct-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #FFFFFF;
    box-shadow: 0 -1px 0 #E0E6F8, 0 -8px 32px #C8D4F0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.ct-cookie.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}
.ct-cookie__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 4vw, 1.75rem);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.ct-cookie__text {
    flex: 1;
    min-width: 240px;
    font-size: 14.5px;
    font-weight: var(--fw-med);
    color: var(--text-sub);
    line-height: 1.6;
}
.ct-cookie__text a { color: var(--ct-vivid); font-weight: var(--fw-med); }
.ct-cookie__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.ct-cookie__btn {
    height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    font-family: var(--ff-head);
    font-size: 12.5px;
    font-weight: var(--fw-bd);
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: box-shadow 0.22s ease, background 0.22s ease, filter 0.22s ease;
}
.ct-cookie__btn--accept {
    background: linear-gradient(160deg, #F5823A 0%, #E05E1A 100%);
    color: #FFFFFF;
    box-shadow: 0 3px 12px #E0701A;
}
.ct-cookie__btn--accept:hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 18px #D06010, 0 0 0 3px #F8CDB0;
}
.ct-cookie__btn--partial {
    background: #E8ECFA;
    color: var(--ct-navy);
    box-shadow: inset 0 1px 0 #C8D0F0;
}
.ct-cookie__btn--partial:hover {
    background: #D6DEFA;
    box-shadow: 0 3px 12px #B8C4F0;
}
.ct-cookie__btn--reject {
    background: none;
    color: #7A90B8;
    box-shadow: none;
}
.ct-cookie__btn--reject:hover {
    color: var(--ct-navy);
    background: #F0F3FC;
}

@media (max-width: 960px) {
    .ct-header__nav,
    .ct-header__about,
    .ct-header__cta { display: none; }
    .ct-header__burger { display: flex; }
    .ct-header__main-inner { height: 60px; }
    .ct-header__brand { gap: 0.5rem; min-width: 0; flex: 1; }
    .ct-header__brand-text { min-width: 0; overflow: hidden; }
    .ct-header__brand-name { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .ct-header__brand-desc { display: none; }
}
@media (max-width: 600px) {
    .ct-header__trust-text { display: none; }
    .ct-header__trust-inner { justify-content: center; }
    .ct-age-gate__modal { padding: 2.25rem 1.375rem 1.875rem; border-radius: 16px; }
    .ct-age-gate__badge { width: 68px; height: 68px; font-size: 22px; margin-bottom: 1.5rem; }
    .ct-age-gate__overlay::after { display: none; }
    .ct-cookie__inner { gap: 0.875rem; }
    .ct-cookie__actions { width: 100%; }
    .ct-cookie__btn--accept { flex: 1; }
}
@media (max-width: 420px) {
    .ct-header__badge { display: none; }
    .ct-header__logo { width: 30px; height: 30px; }
    .ct-header__brand-name { font-size: 14px; }
}

.ct-header__brand-name .act { color: var(--ct-orange-lt); }

.ct-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 90vh, 860px);
    display: flex;
    flex-direction: column;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ct-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(4px) brightness(0.48) saturate(0.8);
    transform: scale(1.07);
}
.ct-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, #040A28 0%, #081444 50%, #0B1A60 100%);
    opacity: 0.82;
}

.ct-hero__decor {
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #2C4CD4 0%, #1A2CA3 36%, transparent 70%);
    opacity: 0.36;
    filter: blur(28px);
    pointer-events: none;
    animation: ct-float 9s ease-in-out infinite;
    z-index: 0;
}
.ct-hero__decor-shape {
    position: absolute;
    top: -40px;
    right: 4%;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    filter: blur(2px);
    animation: ct-drift 13s ease-in-out infinite;
}

@keyframes ct-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-26px); }
}
@keyframes ct-drift {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(4deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.ct-hero__body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: clamp(2.5rem, 4vw, 5rem);
    align-items: center;
    padding-top: clamp(3.5rem, 6vw, 5.5rem);
    padding-bottom: clamp(3rem, 5vw, 4rem);
}

.ct-hero__left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.875rem;
}
.ct-hero__eyebrow-line {
    width: 28px;
    height: 2.5px;
    background: var(--ct-orange);
    flex-shrink: 0;
    border-radius: 2px;
}
.ct-hero__eyebrow-text {
    font-family: var(--ff-head);
    font-size: 12px;
    font-weight: var(--fw-bd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ct-hero__headline {
    font-family: var(--ff-head);
    font-weight: var(--fw-xbd);
    line-height: 1.04;
    letter-spacing: -0.034em;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
}
.ct-hero__hl-sm {
    display: block;
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    color: #6A88C0;
    font-weight: var(--fw-bd);
    letter-spacing: -0.018em;
    margin-bottom: 0.08em;
}
.ct-hero__hl-lg {
    display: block;
    font-size: clamp(3.75rem, 7.4vw, 6.5rem);
    line-height: 0.94;
    color: #FFFFFF;
}
.ct-hero__hl-lg em {
    font-style: normal;
    color: var(--ct-orange-lt);
}
.ct-hero__hl-md {
    display: block;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    color: #FFFFFF;
    margin-top: 0.06em;
}

.ct-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.75rem;
}
.ct-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.ct-hero__stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #0F1D60;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px #020A28;
}
.ct-hero__stat-text {
    font-size: 15px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    line-height: 1.4;
}
.ct-hero__stat-text strong {
    color: #FFFFFF;
    font-weight: var(--fw-bd);
}

.ct-hero__cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ct-hero__right {
    position: relative;
    height: 540px;
}

.ct-hero__op {
    position: absolute;
    background: #0C1A62;
    border-radius: 20px;
    padding: 1.625rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 24px 64px #010716, 0 0 0 1px #1A2A7A;
    transition: background 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
    text-decoration: none;
}
.ct-hero__op:first-child {
    top: 0;
    left: 0;
    right: 80px;
    background: #0F1E70;
    z-index: 2;
}
.ct-hero__op:last-child {
    bottom: 0;
    left: 80px;
    right: 0;
    background: #0A1650;
    z-index: 1;
}
.ct-hero__op:hover {
    background: #142490;
    box-shadow: 0 28px 72px #020C30, 0 0 0 1px #2C4CC0;
    transform: translateY(-3px);
    z-index: 3;
}

.ct-hero__op-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    background: #060E38;
    box-shadow: inset 0 0 0 1px #1A2870;
}
.ct-hero__op-logo {
    width: 72%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ct-hero__op-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.ct-hero__op-left {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.ct-hero__op-name {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.01em;
}
.ct-hero__op-stars {
    display: flex;
    align-items: center;
    gap: 0.18rem;
}
.ct-hero__op-star {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(700%) hue-rotate(330deg) brightness(108%);
}
.ct-hero__op-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}
.ct-hero__op-lic {
    font-family: var(--ff-head);
    font-size: 9.5px;
    font-weight: var(--fw-xbd);
    color: #3FD98A;
    background: #072A1E;
    border-radius: 5px;
    padding: 0.22rem 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}
.ct-hero__op-num {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.02em;
}
.ct-hero__op-num span {
    font-size: 14px;
    color: #3A5498;
    font-weight: var(--fw-med);
}
.ct-hero__op-cta {
    font-family: var(--ff-head);
    font-size: 13.5px;
    font-weight: var(--fw-bd);
    color: #4A70E0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}
.ct-hero__op:hover .ct-hero__op-cta { color: #7A9AF8; }

.ct-hero__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
.ct-hero__resp {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    background: #060E38;
    border-radius: 50px;
    padding: 0.7rem 1.5rem 0.7rem 0.875rem;
    box-shadow: 0 4px 28px #010614, 0 0 0 1px #0E1E5A;
}
.ct-hero__resp-badge {
    font-family: var(--ff-head);
    font-size: 10.5px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    background: linear-gradient(135deg, #F5823A 0%, #D95214 100%);
    padding: 0.26rem 0.56rem 0.22rem;
    border-radius: 5px;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px #C04A10, inset 0 1px 0 #FFA070;
    text-transform: uppercase;
    line-height: 1;
    flex-shrink: 0;
}
.ct-hero__resp-items {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.ct-hero__resp-txt {
    font-size: 13px;
    font-weight: var(--fw-bd);
    color: #5A78B0;
}
.ct-hero__resp-sep {
    width: 1px;
    height: 13px;
    background: #162268;
    flex-shrink: 0;
}
.ct-hero__resp-link {
    font-size: 13px;
    font-weight: var(--fw-bd);
    color: #4A6AAA;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ct-hero__resp-link:hover { color: #8AAAD0; }

@media (max-width: 1000px) {
    .ct-hero__body { grid-template-columns: 1fr; }
    .ct-hero__right { height: 480px; max-width: 520px; }
    .ct-hero__op:first-child { right: 56px; }
    .ct-hero__op:last-child { left: 56px; }
    .ct-hero__decor-shape { display: none; }
    .ct-hero__hl-lg { font-size: clamp(3.25rem, 9vw, 5.5rem); }
}
@media (max-width: 600px) {
    .ct-hero__body { gap: 2rem; }
    .ct-hero__right { height: auto; }
    .ct-hero__op { position: static; }
    .ct-hero__op:first-child { margin-right: 0; }
    .ct-hero__op:last-child { margin-left: 0; }
    .ct-hero__right { display: flex; flex-direction: column; gap: 0.875rem; }
    .ct-hero__cta { flex-direction: column; }
    .ct-hero__cta .ct-action { width: 100%; }
    .ct-hero__op-logo-wrap { height: 110px; }
    .ct-hero__resp-sep, .ct-hero__resp-link { display: none; }
}

.ct-pick {
    background: var(--surf-page);
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.ct-pick__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.ct-pick__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-head);
    font-size: 11.5px;
    font-weight: var(--fw-bd);
    color: var(--ct-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.ct-pick__title {
    font-family: var(--ff-head);
    font-size: clamp(1.75rem, 3.6vw, 2.625rem);
    font-weight: var(--fw-xbd);
    color: var(--ct-navy);
    letter-spacing: -0.022em;
    line-height: 1.16;
    margin-bottom: 0.875rem;
}
.ct-pick__sub {
    font-size: 1.0625rem;
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.68;
}

.ct-pick__pills-wrap {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 20px #D4DCF4;
    margin-bottom: 1.75rem;
}
.ct-pick__pills-label {
    font-family: var(--ff-head);
    font-size: 12.5px;
    font-weight: var(--fw-bd);
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.ct-pick__reset {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: var(--fw-med);
    color: #9AAAD0;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.2s ease;
    padding: 0;
    display: none;
}
.ct-pick__reset.is-visible { display: block; }
.ct-pick__reset:hover { color: var(--ct-blue); }

.ct-pick__pills {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.625rem;
}
.ct-pick__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 1.125rem;
    border-radius: 50px;
    background: #F0F3FC;
    border: 2px solid #E0E8F8;
    font-family: var(--ff-head);
    font-size: 13.5px;
    font-weight: var(--fw-bd);
    color: var(--ct-navy);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    user-select: none;
}
.ct-pick__pill:hover {
    background: #E4EAFC;
    border-color: #B8CCF4;
}
.ct-pick__pill.is-active {
    background: var(--ct-navy);
    border-color: var(--ct-navy);
    color: #FFFFFF;
    box-shadow: 0 4px 16px #0B1A5040;
    transform: scale(1.03);
}
.ct-pick__pill.is-active img {
    filter: brightness(0) invert(1);
}
.ct-pick__pill img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(14%) sepia(60%) saturate(1400%) hue-rotate(218deg) brightness(88%);
}

.ct-pick__status {
    min-height: 28px;
    margin-bottom: 1.875rem;
    text-align: center;
    transition: opacity 0.3s ease;
}
.ct-pick__status-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: var(--fw-bd);
    color: var(--ct-blue);
}
.ct-pick__status-text img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(70%) saturate(1200%) hue-rotate(218deg);
}

.ct-pick__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    transition: gap 0.36s ease;
}
.ct-pick__cards.has-featured {
    grid-template-columns: 58fr 42fr;
    gap: 1.25rem;
}
.ct-pick__cards.has-featured-right {
    grid-template-columns: 42fr 58fr;
}

.ct-pick__card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.875rem;
    box-shadow: 0 4px 24px #C8D4EC;
    transition: box-shadow 0.32s ease, transform 0.32s ease, opacity 0.32s ease, background 0.32s ease;
    position: relative;
    overflow: hidden;
}
.ct-pick__card.is-secondary {
    opacity: 0.68;
    box-shadow: 0 2px 12px #D4DCF0;
    transform: scale(0.98);
}
.ct-pick__card.is-featured {
    box-shadow: 0 12px 48px #B0C0E840, 0 0 0 2px var(--ct-vivid);
}

.ct-pick__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #2155E8 0%, #1A2EA6 100%);
    color: #FFFFFF;
    font-family: var(--ff-head);
    font-size: 10.5px;
    font-weight: var(--fw-xbd);
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
    box-shadow: 0 3px 12px #1A2EA650;
}
.ct-pick__card.is-featured .ct-pick__badge {
    opacity: 1;
    transform: translateY(0);
}

.ct-pick__card-logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: #060E38;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    overflow: hidden;
    box-shadow: 0 4px 14px #0A1440;
}
.ct-pick__card-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.ct-pick__card-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.ct-pick__card-info { flex: 1; }
.ct-pick__card-name {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: var(--fw-xbd);
    color: var(--ct-navy);
    letter-spacing: -0.015em;
    margin-bottom: 0.3rem;
}
.ct-pick__card-lic {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: var(--fw-xbd);
    color: #2AAD6A;
    background: #E6F9F0;
    border-radius: 5px;
    padding: 0.2rem 0.52rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.ct-pick__card-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
}
.ct-pick__card-num {
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: var(--fw-xbd);
    color: var(--ct-navy);
    line-height: 1;
    letter-spacing: -0.02em;
}
.ct-pick__card-num span { font-size: 13px; color: #8AAAD0; font-weight: var(--fw-med); }
.ct-pick__card-stars {
    display: flex;
    gap: 0.15rem;
}
.ct-pick__card-star {
    width: 12px;
    height: 12px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(60%) saturate(700%) hue-rotate(330deg) brightness(108%);
}

.ct-pick__card-feats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.ct-pick__feat {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 14px;
    font-weight: var(--fw-med);
    color: var(--ct-navy);
}
.ct-pick__feat img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(20%) sepia(70%) saturate(1200%) hue-rotate(218deg);
}

.ct-pick__card-why {
    font-size: 13px;
    font-weight: var(--fw-med);
    color: var(--ct-blue);
    margin-bottom: 1.25rem;
    min-height: 1.4em;
    transition: opacity 0.28s ease;
    opacity: 0;
}
.ct-pick__card.is-featured .ct-pick__card-why { opacity: 1; }

.ct-pick__card-cta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.ct-pick__card-btn {
    height: 50px;
    font-size: 14.5px;
}
.ct-pick__card-link {
    text-align: center;
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: var(--fw-bd);
    color: var(--ct-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.ct-pick__card-link:hover { color: var(--ct-navy); }

.ct-pick__hint {
    text-align: center;
    margin-top: 2rem;
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #9AAAD0;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.ct-pick__hint.is-hidden { opacity: 0; pointer-events: none; }

@media (max-width: 860px) {
    .ct-pick__cards,
    .ct-pick__cards.has-featured,
    .ct-pick__cards.has-featured-right {
        grid-template-columns: 1fr;
    }
    .ct-pick__card.is-secondary { transform: scale(1); }
    .ct-pick__pills-wrap { padding: 1.375rem; }
}
@media (max-width: 520px) {
    .ct-pick__pill { height: 42px; font-size: 13px; padding: 0 1rem; }
    .ct-pick__pills { grid-template-columns: repeat(2, auto); }
    .ct-pick__card { padding: 1.375rem; }
    .ct-pick__card-num { font-size: 22px; }
}

.ct-ops {
    background: linear-gradient(160deg, #060D36 0%, #091650 55%, #0C1C6A 100%);
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
    position: relative;
    overflow: hidden;
}

.ct-ops__decor {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.28;
    filter: blur(1px);
    animation: ct-drift 14s ease-in-out infinite;
}
.ct-ops__glow {
    position: absolute;
    top: 20%;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #2C4CD4 0%, transparent 68%);
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.ct-ops__inner {
    position: relative;
    z-index: 1;
}

.ct-ops__intro {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}
.ct-ops__intro-label {
    font-family: var(--ff-head);
    font-size: 11.5px;
    font-weight: var(--fw-bd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ct-ops__intro-label span {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--ct-orange);
    border-radius: 2px;
}
.ct-ops__intro-title {
    font-family: var(--ff-head);
    font-size: clamp(1.75rem, 3.4vw, 2.75rem);
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.024em;
    line-height: 1.14;
    margin-bottom: 1rem;
}
.ct-ops__intro-desc {
    font-size: 1.0625rem;
    color: #9AB8E0;
    font-weight: var(--fw-med);
    line-height: 1.74;
    max-width: 460px;
}

.ct-ops__trust {
    background: #0B1650;
    border-radius: 16px;
    padding: 1.5rem 1.625rem;
    box-shadow: 0 8px 32px #020A28, 0 0 0 1px #182878;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ct-ops__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.ct-ops__trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #0F1E64;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-ops__trust-body {}
.ct-ops__trust-title {
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: var(--fw-bd);
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}
.ct-ops__trust-text {
    font-size: 13px;
    color: #8AAAD8;
    font-weight: var(--fw-med);
    line-height: 1.5;
}

.ct-ops__featured {
    background: #0D1B68;
    border-radius: 22px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 20px 60px #010818, 0 0 0 1px #1A2E80;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.ct-ops__featured-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.ct-ops__featured-logo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    background: #060E38;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px #010818, 0 0 0 1px #182470;
    flex-shrink: 0;
    overflow: hidden;
}
.ct-ops__featured-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.ct-ops__featured-body {}
.ct-ops__featured-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.ct-ops__featured-name {
    font-family: var(--ff-head);
    font-size: clamp(1.375rem, 2.4vw, 1.875rem);
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.018em;
}
.ct-ops__featured-badge {
    font-family: var(--ff-head);
    font-size: 9.5px;
    font-weight: var(--fw-xbd);
    color: var(--ct-orange-lt);
    background: #1A1008;
    border-radius: 5px;
    padding: 0.22rem 0.56rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px #EF703830;
}
.ct-ops__featured-lic {
    font-family: var(--ff-head);
    font-size: 9.5px;
    font-weight: var(--fw-xbd);
    color: #3FD98A;
    background: #072A1E;
    border-radius: 5px;
    padding: 0.22rem 0.56rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ct-ops__featured-rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}
.ct-ops__featured-stars {
    display: flex;
    gap: 0.18rem;
}
.ct-ops__featured-star {
    width: 15px;
    height: 15px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(700%) hue-rotate(330deg) brightness(108%);
}
.ct-ops__featured-score {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.02em;
}
.ct-ops__featured-score span { font-size: 13px; color: #3A5498; font-weight: var(--fw-med); }

.ct-ops__featured-desc {
    font-size: 15px;
    color: #9AB8E0;
    font-weight: var(--fw-med);
    line-height: 1.68;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.ct-ops__featured-facts {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.ct-ops__fact {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #0A1448;
    border-radius: 8px;
    padding: 0.42rem 0.875rem;
    font-size: 13px;
    font-weight: var(--fw-bd);
    color: #8AAAD8;
}
.ct-ops__fact img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(30%) saturate(600%) hue-rotate(200deg);
}

.ct-ops__featured-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 180px;
}
.ct-ops__featured-btn { height: 50px; font-size: 14.5px; }
.ct-ops__featured-link {
    text-align: center;
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: var(--fw-bd);
    color: #4A6AAA;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ct-ops__featured-link:hover { color: #8AAAD8; }

.ct-ops__secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.ct-ops__card {
    background: #0A1450;
    border-radius: 18px;
    padding: 1.625rem;
    box-shadow: 0 8px 32px #010818, 0 0 0 1px #162070;
    transition: background 0.24s ease, box-shadow 0.24s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ct-ops__card:hover {
    background: #0C1A62;
    box-shadow: 0 12px 40px #010C24, 0 0 0 1px #1E2E8A;
}

.ct-ops__card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.ct-ops__card-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #060E38;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px #010818;
    overflow: hidden;
}
.ct-ops__card-logo {
    width: 78%;
    height: 78%;
    object-fit: contain;
}
.ct-ops__card-meta {}
.ct-ops__card-name {
    font-family: var(--ff-head);
    font-size: 17px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.015em;
    margin-bottom: 0.3rem;
}
.ct-ops__card-lic {
    font-family: var(--ff-head);
    font-size: 10px;
    font-weight: var(--fw-xbd);
    color: #3FD98A;
    background: #072A1E;
    border-radius: 4px;
    padding: 0.18rem 0.44rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ct-ops__card-desc {
    font-size: 14.5px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    line-height: 1.66;
    margin-bottom: 1.25rem;
}

.ct-ops__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.375rem;
}
.ct-ops__tag {
    font-family: var(--ff-head);
    font-size: 11.5px;
    font-weight: var(--fw-bd);
    color: #9ABAF0;
    background: #0A1448;
    border-radius: 6px;
    padding: 0.28rem 0.625rem;
    letter-spacing: 0.2px;
}

.ct-ops__card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.ct-ops__card-stars {
    display: flex;
    gap: 0.15rem;
}
.ct-ops__card-star {
    width: 13px;
    height: 13px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(700%) hue-rotate(330deg) brightness(108%);
}
.ct-ops__card-score {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.015em;
}
.ct-ops__card-score span { font-size: 12px; color: #3A5498; font-weight: var(--fw-med); }

.ct-ops__card-strip {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.375rem;
}
.ct-ops__strip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #081040;
    border-radius: 8px;
}
.ct-ops__strip-label {
    font-size: 12.5px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
}
.ct-ops__strip-val {
    font-family: var(--ff-head);
    font-size: 12.5px;
    font-weight: var(--fw-bd);
    color: #8AAAD8;
}

.ct-ops__card-cta {
    display: flex;
    gap: 0.625rem;
}
.ct-ops__card-btn { height: 46px; font-size: 13.5px; flex: 1; }
.ct-ops__card-btn-sec {
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    font-family: var(--ff-head);
    font-size: 13.5px;
    font-weight: var(--fw-bd);
    color: #6A8AC8;
    background: #0A1448;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.ct-ops__card-btn-sec:hover { background: #0F1C68; color: #AACCF0; }

.ct-ops__footer {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-ops__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-head);
    font-size: 15px;
    font-weight: var(--fw-bd);
    color: #4A6AAA;
    text-decoration: none;
    transition: color 0.22s ease;
}
.ct-ops__footer-link:hover { color: #8AAAD8; }

@media (max-width: 1000px) {
    .ct-ops__featured-inner { grid-template-columns: auto 1fr; }
    .ct-ops__featured-cta { grid-column: 1 / -1; flex-direction: row; }
    .ct-ops__featured-btn { flex: 1; }
}
@media (max-width: 860px) {
    .ct-ops__intro { grid-template-columns: 1fr; }
    .ct-ops__secondary { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .ct-ops__featured-inner { grid-template-columns: 1fr; }
    .ct-ops__featured-logo-wrap { width: 80px; height: 80px; }
    .ct-ops__featured-cta { flex-direction: column; }
    .ct-ops__card-cta { flex-direction: column; }
    .ct-ops__card-btn-sec { flex: 1; }
}

.ct-ops__info-panel {
    background: #0A1450;
    border-radius: 18px;
    padding: 1.875rem 1.75rem;
    box-shadow: 0 8px 32px #010818, 0 0 0 1px #162070;
    display: flex;
    flex-direction: column;
    gap: 1.625rem;
    justify-content: center;
}
.ct-ops__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}
.ct-ops__info-num {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: var(--fw-xbd);
    color: var(--ct-orange-lt);
    line-height: 1;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    min-width: 52px;
}
.ct-ops__info-title {
    font-family: var(--ff-head);
    font-size: 14.5px;
    font-weight: var(--fw-bd);
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}
.ct-ops__info-text {
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    line-height: 1.58;
}

.ct-meth {
    background: linear-gradient(155deg, #050B30 0%, #081444 48%, #0C1C6A 100%);
    padding: clamp(4.5rem, 8vw, 7rem) 0 0;
    position: relative;
    overflow: hidden;
}

.ct-meth__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #2845D6 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}
.ct-meth__decor {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.13;
    filter: blur(2px);
    animation: ct-drift 15s ease-in-out infinite;
}
.ct-meth__glow {
    position: absolute;
    bottom: 10%;
    left: -80px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #2C4CD4 0%, transparent 66%);
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.ct-meth__inner {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.ct-meth__intro {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.ct-meth__label {
    font-family: var(--ff-head);
    font-size: 11.5px;
    font-weight: var(--fw-bd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ct-meth__label-line {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--ct-orange);
    border-radius: 2px;
}
.ct-meth__title {
    font-family: var(--ff-head);
    font-size: clamp(1.875rem, 3.6vw, 2.875rem);
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.026em;
    line-height: 1.12;
    margin-bottom: 1.125rem;
}
.ct-meth__desc {
    font-size: 1.0625rem;
    color: #9AB8E0;
    font-weight: var(--fw-med);
    line-height: 1.74;
    max-width: 480px;
}

.ct-meth__promise {
    background: #0B1652;
    border-radius: 16px;
    padding: 1.625rem;
    box-shadow: 0 8px 32px #010818, 0 0 0 1px #182878;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.ct-meth__promise-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.125rem;
}
.ct-meth__promise-row + .ct-meth__promise-row {
    border-top: 1px solid #152060;
    padding-bottom: 0;
    padding-top: 0;
}
.ct-meth__promise-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #0F1E64;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-meth__promise-text {
    font-size: 14.5px;
    font-weight: var(--fw-bd);
    color: #C0D8F8;
    line-height: 1.4;
}

.ct-meth__main-panel {
    background: #0D1B68;
    border-radius: 22px;
    padding: clamp(2rem, 3.5vw, 3rem);
    box-shadow: 0 20px 56px #010818, 0 0 0 1px #1A2E80;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}
.ct-meth__main-panel-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #2C4CD4 0%, transparent 65%);
    opacity: 0.12;
    pointer-events: none;
}
.ct-meth__main-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.ct-meth__main-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1A2EA6 0%, #0F1E6A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px #0A1440;
}
.ct-meth__main-title {
    font-family: var(--ff-head);
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.018em;
}
.ct-meth__main-sub {
    font-size: 13.5px;
    color: #6A88C0;
    font-weight: var(--fw-med);
}

.ct-meth__main-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2.5rem;
}
.ct-meth__main-block {}
.ct-meth__main-block-title {
    font-family: var(--ff-head);
    font-size: 15px;
    font-weight: var(--fw-bd);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ct-meth__main-block-title img {
    width: 15px;
    height: 15px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(50%) saturate(700%) hue-rotate(330deg);
}
.ct-meth__main-block-text {
    font-size: 14.5px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    line-height: 1.66;
}

.ct-meth__cards {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 1.125rem;
    margin-bottom: 1.25rem;
}

.ct-meth__card {
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 6px 28px #010818;
    position: relative;
    overflow: hidden;
}
.ct-meth__card:nth-child(1) { background: #0A1450; box-shadow: 0 6px 28px #010818, 0 0 0 1px #162070; }
.ct-meth__card:nth-child(2) { background: #0C1860; box-shadow: 0 6px 28px #010C2A, 0 0 0 1px #1A2878; }
.ct-meth__card:nth-child(3) { background: #0A1448; box-shadow: 0 6px 28px #010818, 0 0 0 1px #142068; }

.ct-meth__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #0F1E64;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    box-shadow: 0 3px 12px #010818;
}
.ct-meth__card-title {
    font-family: var(--ff-head);
    font-size: 15.5px;
    font-weight: var(--fw-bd);
    color: #FFFFFF;
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
}
.ct-meth__card-text {
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    line-height: 1.64;
}
.ct-meth__card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: var(--fw-bd);
    color: #7090C8;
    background: #081040;
    border-radius: 5px;
    padding: 0.2rem 0.52rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.ct-meth__ribbon {
    background: #04091E;
    padding: 1.625rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.ct-meth__ribbon-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #150C00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px #EF703820;
}
.ct-meth__ribbon-body { flex: 1; }
.ct-meth__ribbon-title {
    font-family: var(--ff-head);
    font-size: 14.5px;
    font-weight: var(--fw-bd);
    color: var(--ct-orange-lt);
    margin-bottom: 0.5rem;
}
.ct-meth__ribbon-text {
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #7A98C8;
    line-height: 1.68;
}
.ct-meth__ribbon-status {
    flex-shrink: 0;
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: var(--fw-bd);
    color: #5A78B0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: center;
}

@media (max-width: 960px) {
    .ct-meth__intro { grid-template-columns: 1fr; }
    .ct-meth__main-body { grid-template-columns: 1fr; gap: 1rem; }
    .ct-meth__cards { grid-template-columns: 1fr 1fr; }
    .ct-meth__cards .ct-meth__card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .ct-meth__cards { grid-template-columns: 1fr; }
    .ct-meth__cards .ct-meth__card:last-child { grid-column: auto; }
    .ct-meth__ribbon { flex-direction: column; gap: 0.875rem; }
    .ct-meth__ribbon-status { align-self: flex-start; }
}

.ct-disc {
    background: linear-gradient(160deg, #030820 0%, #060D36 50%, #08124A 100%);
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
}
.ct-disc__glow {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #1A2CA3 0%, transparent 66%);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.ct-disc__panel {
    position: relative;
    z-index: 1;
    background: #080F3C;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 56px #010612, 0 0 0 1px #101E6A;
    max-width: 960px;
    margin: 0 auto;
}

.ct-disc__header {
    background: linear-gradient(135deg, #0A1550 0%, #0D1A66 100%);
    padding: 1.875rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 1.375rem;
}
.ct-disc__badge {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    background: linear-gradient(145deg, #D42020 0%, #A81010 100%);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px #8A101040, inset 0 1px 0 #F04040;
    letter-spacing: 0.5px;
}
.ct-disc__header-body {}
.ct-disc__header-title {
    font-family: var(--ff-head);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.015em;
    margin-bottom: 0.3rem;
}
.ct-disc__header-sub {
    font-size: 14.5px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
}

.ct-disc__body {
    padding: 2rem 2.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}

.ct-disc__block {}
.ct-disc__block-title {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: var(--fw-xbd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ct-disc__block-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 13px;
    background: var(--ct-orange);
    border-radius: 2px;
    flex-shrink: 0;
}
.ct-disc__block-text {
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #9AB8E0;
    line-height: 1.68;
}

.ct-disc__strip {
    background: #04091E;
    padding: 1.125rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.ct-disc__strip-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.ct-disc__strip-badge {
    font-family: var(--ff-head);
    font-size: 10px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    background: #A81010;
    border-radius: 5px;
    padding: 0.22rem 0.52rem;
    letter-spacing: 0.5px;
    line-height: 1;
}
.ct-disc__strip-text {
    font-size: 13px;
    font-weight: var(--fw-med);
    color: #6A88C0;
    font-size: 13.5px;
}
.ct-disc__strip-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.ct-disc__strip-link {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: var(--fw-bd);
    color: #7A98C8;
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.ct-disc__strip-link:hover { color: #C0D8F8; }

.ct-disc__footer-legal {
    padding: clamp(2rem, 3.5vw, 3rem) 0;
    text-align: center;
}
.ct-disc__footer-legal-text {
    font-size: 12.5px;
    font-weight: var(--fw-med);
    color: #4A6298;
    font-size: 13px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .ct-disc__body { grid-template-columns: 1fr; }
    .ct-disc__strip { flex-direction: column; align-items: flex-start; }
    .ct-disc__strip-links { gap: 1rem; }
    .ct-disc__header { padding: 1.5rem; gap: 1rem; }
    .ct-disc__badge { width: 52px; height: 52px; font-size: 18px; border-radius: 11px; }
}

.ct-footer {
    background: linear-gradient(170deg, #04091E 0%, #060D36 60%, #08123A 100%);
    position: relative;
    overflow: hidden;
}
.ct-footer__top-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #1A2CA3 0%, transparent 65%);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}
.ct-footer__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #2845D6 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.ct-footer__main {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid #0E1E5A;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.ct-footer__brand {}
.ct-footer__brand-name {
    font-family: var(--ff-head);
    font-size: 19px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.ct-footer__brand-name span { color: var(--ct-orange-lt); }
.ct-footer__brand-desc {
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    font-size: 14.5px;
    line-height: 1.68;
    margin-bottom: 1.5rem;
    max-width: 280px;
}
.ct-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ct-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13.5px;
    font-weight: var(--fw-med);
    color: #7A98C8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ct-footer__contact-item:hover { color: #C0D8F8; }
.ct-footer__contact-item img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(55%) sepia(50%) saturate(700%) hue-rotate(330deg);
    width: 16px;
    height: 16px;
}

.ct-footer__nav-title {
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: var(--fw-xbd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.125rem;
}
.ct-footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ct-footer__nav-link {
    font-size: 14px;
    font-weight: var(--fw-med);
    color: #8AAAD8;
    font-size: 14.5px;
    font-weight: var(--fw-med);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ct-footer__nav-link:hover { color: #C0D8F8; }

.ct-footer__nav-col { display: flex; flex-direction: column; gap: 2rem; }

.ct-footer__trust {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-bottom: 1px solid #0E1E5A;
}
.ct-footer__trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}
.ct-footer__trust-section {}
.ct-footer__trust-label {
    font-family: var(--ff-head);
    font-size: 10.5px;
    font-weight: var(--fw-xbd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ct-footer__trust-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--ct-orange);
    border-radius: 2px;
}
.ct-footer__logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.25rem 2rem;
}
.ct-footer__logo-link {
    display: block;
    opacity: 0.75;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.ct-footer__logo-link:hover { opacity: 1; transform: scale(1.04); }
.ct-footer__logo-img { height: 40px; width: auto; display: block; }

.ct-footer__ribbon {
    position: relative;
    z-index: 1;
    background: #030818;
    padding: 1.375rem 0;
    border-bottom: 1px solid #0A1640;
}
.ct-footer__ribbon-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}
.ct-footer__ribbon-badge {
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: var(--fw-xbd);
    color: #FFFFFF;
    background: linear-gradient(145deg, #C01010 0%, #8A0808 100%);
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px #80080830, inset 0 1px 0 #F03030;
    letter-spacing: 0.3px;
}
.ct-footer__ribbon-body { flex: 1; }
.ct-footer__ribbon-title {
    font-family: var(--ff-head);
    font-size: 13.5px;
    font-weight: var(--fw-bd);
    color: #C0D8F8;
    font-size: 14px;
    margin-bottom: 0.3rem;
}
.ct-footer__ribbon-text {
    font-size: 12.5px;
    font-weight: var(--fw-med);
    color: #7A98C8;
    font-size: 13.5px;
    font-weight: var(--fw-med);
    line-height: 1.62;
}
.ct-footer__ribbon-text a { color: #4A6298; transition: color 0.2s ease; }
.ct-footer__ribbon-text a:hover { color: #7A98C8; }

.ct-footer__bottom {
    position: relative;
    z-index: 1;
    padding: 1.125rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.ct-footer__copy {
    font-size: 12.5px;
    font-weight: var(--fw-med);
    color: #5A78B0;
    font-size: 13px;
    font-weight: var(--fw-med);
    line-height: 1.5;
}
.ct-footer__copy span { display: block; font-size: 12.5px; color: #3A5288; margin-top: 0.2rem; }
.ct-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.ct-footer__bottom-link {
    font-family: var(--ff-head);
    font-size: 12.5px;
    font-weight: var(--fw-bd);
    color: #5A78B0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ct-footer__bottom-link:hover { color: #A0C0E8; }

@media (max-width: 900px) {
    .ct-footer__main { grid-template-columns: 1fr 1fr; }
    .ct-footer__brand { grid-column: 1 / -1; }
    .ct-footer__trust-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
    .ct-footer__main { grid-template-columns: 1fr; }
    .ct-footer__bottom { flex-direction: column; align-items: flex-start; }
    .ct-footer__bottom-links { gap: 0.875rem; }
}

.ct-header__nav-drop {
    position: relative;
}
.ct-header__nav-drop-btn {
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.ct-header__nav-drop-ico {
    filter: brightness(0) saturate(100%) invert(75%) sepia(20%) saturate(500%) hue-rotate(195deg);
    transition: transform 0.22s ease;
}
.ct-header__nav-drop.is-open .ct-header__nav-drop-ico {
    transform: rotate(180deg);
}
.ct-header__nav-drop-btn.is-active,
.ct-header__nav-drop.is-open .ct-header__nav-drop-btn {
    background: #2040A0;
    color: #FFFFFF;
}

.ct-header__drop-menu {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #0C1860;
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: 0 16px 48px #010818, 0 0 0 1px #1A2E80;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 10;
}
.ct-header__nav-drop.is-open .ct-header__drop-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ct-header__drop-group-label {
    font-family: var(--ff-head);
    font-size: 10px;
    font-weight: var(--fw-xbd);
    color: var(--ct-orange-lt);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem 0.5rem;
}
.ct-header__drop-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: var(--fw-bd);
    color: #C0D8F8;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}
.ct-header__drop-link:hover {
    background: #1A2E80;
    color: #FFFFFF;
}
.ct-header__drop-tag {
    font-size: 10px;
    font-weight: var(--fw-xbd);
    color: #3FD98A;
    background: #072A1E;
    border-radius: 4px;
    padding: 0.16rem 0.42rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1;
    flex-shrink: 0;
}