:root {
    --ink: #0c1733;
    --ink-2: #1e2b4f;
    --primary: #2563eb;
    --sky: #38bdf8;
    --green: #16a34a;
    --soft: #f4f7fc;
    --tint: #eaf1ff;
    --line: #e3e8f2;
    --muted: #5b6478;
    --white: #fff;
    --grad: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --wrap: 1320px;
    --gutter: clamp(16px, 3vw, 28px);
    --radius: 18px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --shadow-sm: 0 1px 2px rgba(12, 23, 51, .05), 0 6px 18px rgba(12, 23, 51, .05);
    --shadow-lg: 0 28px 60px -14px rgba(12, 23, 51, .25);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.wrap {
    width: 100%;
    max-width: calc(var(--wrap) + var(--gutter) * 2);
    margin-inline: auto;
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
}
.icon { width: 1em; height: 1em; flex-shrink: 0; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.top-strip {
    background: var(--ink);
    color: rgba(255, 255, 255, .75);
    font-size: 13.5px;
    font-weight: 500;
}
.top-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
}
.top-strip__note { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.top-strip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .2);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); } }
.top-strip__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.top-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.top-strip__link .icon { font-size: 15px; color: var(--sky); }
.top-strip__link:hover { background: rgba(255, 255, 255, .08); color: var(--white); }
.top-strip__sep { width: 1px; height: 16px; background: rgba(255, 255, 255, .15); }
.top-strip__fb {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font-size: 16px;
    transition: background .2s;
}
.top-strip__fb:hover { background: #1877f2; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    background: var(--soft);
    transition: background .3s, padding .3s;
}
.site-header.is-scrolled { background: transparent; padding: 10px 0; }
.navbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 10px 12px 10px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s, min-height .3s, background .3s;
}
.site-header.is-scrolled .navbar {
    min-height: 68px;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: saturate(1.6) blur(14px);
    backdrop-filter: saturate(1.6) blur(14px);
    box-shadow: var(--shadow-lg);
}
.brand { display: inline-flex; flex-shrink: 0; margin-right: auto; }
.brand img { height: 40px; width: auto; transition: height .3s; }
.site-header.is-scrolled .brand img { height: 36px; }
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.nav__link:hover { background: var(--soft); color: var(--primary); }
.nav__item.is-active > .nav__link { background: var(--tint); color: var(--primary); }
.nav__caret { font-size: 14px; transition: transform .25s var(--ease); }
.nav__item--mega { position: static; }
.mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 10;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 8px;
    width: min(900px, calc(100vw - 48px));
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
@media (hover: hover) {
    .nav__item--mega:hover .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
    .nav__item--mega:hover .nav__caret { transform: rotate(180deg); }
    .nav__item--mega:hover > .nav__link { background: var(--soft); color: var(--primary); }
}
.nav__item--mega:focus-within .mega,
.nav__item--mega.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__item--mega.is-open .nav__caret { transform: rotate(180deg); }
.mega__intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 24px;
    border-radius: 16px;
    background: var(--ink) radial-gradient(circle at 100% 0, rgba(56, 189, 248, .35), transparent 55%);
    color: rgba(255, 255, 255, .72);
}
.mega__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); }
.mega__title { font-size: 21px; font-weight: 800; line-height: 1.3; letter-spacing: -.02em; color: var(--white); }
.mega__text { font-size: 14px; }
.mega__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}
.mega__all .icon { transition: transform .25s var(--ease); }
.mega__all:hover .icon { transform: translateX(4px); }
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 4px; }
.mega__link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    padding: 12px;
    border-radius: 14px;
    transition: background .2s;
}
.mega__link:hover,
.mega__link[aria-current="page"] { background: var(--soft); }
.mega__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--tint);
    color: var(--primary);
    font-size: 19px;
    transition: background .25s, color .25s;
}
.mega__link:hover .mega__icon,
.mega__link[aria-current="page"] .mega__icon { background: var(--grad); color: var(--white); }
.mega__link strong { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.mega__link small { display: block; margin-top: 2px; font-size: 12.5px; line-height: 1.4; color: var(--muted); }
.navbar__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-square {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--ink);
    font-size: 19px;
    transition: border-color .2s, color .2s, background .2s;
}
.icon-square:hover { border-color: var(--primary); background: var(--white); color: var(--primary); }
.call-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 16px 5px 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: border-color .2s, background .2s;
}
.call-chip:hover { border-color: var(--green); background: #f0fdf4; }
.call-chip__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--green);
    font-size: 16px;
}
.call-chip__text small { display: block; font-size: 11.5px; font-weight: 500; line-height: 1.2; color: var(--muted); }
.call-chip__text b { font-size: 14.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 46px;
    padding: 0 9px 0 20px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--grad);
    opacity: 0;
    transition: opacity .3s;
}
.cta:hover::before { opacity: 1; }
.cta__arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .15);
    font-size: 14px;
    transition: transform .3s var(--ease);
}
.cta:hover .cta__arrow { transform: rotate(45deg); }
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0 13px;
    border-radius: 14px;
    background: var(--ink);
}
.burger span { display: block; height: 2px; border-radius: 2px; background: var(--white); transition: width .25s var(--ease); }
.burger span:first-child { width: 20px; }
.burger span:last-child { width: 12px; }
.burger:hover span:last-child { width: 20px; }
.m-panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, .22), transparent 45%),
        radial-gradient(circle at 0 100%, rgba(37, 99, 235, .35), transparent 50%),
        var(--ink);
    color: var(--white);
    clip-path: circle(0 at calc(100% - 48px) 48px);
    visibility: hidden;
    transition: clip-path .55s var(--ease), visibility .55s;
}
.m-panel.is-open { clip-path: circle(150% at calc(100% - 48px) 48px); visibility: visible; }
.m-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px max(var(--gutter), env(safe-area-inset-right)) 18px max(var(--gutter), env(safe-area-inset-left));
}
.m-panel__logo { display: inline-flex; padding: 8px 12px; border-radius: 12px; background: var(--white); }
.m-panel__logo img { height: 26px; width: auto; }
.m-panel__close {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    font-size: 22px;
    transition: background .2s, transform .3s var(--ease);
}
.m-panel__close:hover { background: var(--primary); transform: rotate(90deg); }
.m-panel__body {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 4px max(var(--gutter), env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
}
.m-links { counter-reset: menu; }
.m-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.m-panel.is-open .m-links > li { opacity: 1; transform: none; }
.m-panel.is-open .m-links > li:nth-child(1) { transition-delay: .15s; }
.m-panel.is-open .m-links > li:nth-child(2) { transition-delay: .2s; }
.m-panel.is-open .m-links > li:nth-child(3) { transition-delay: .25s; }
.m-panel.is-open .m-links > li:nth-child(4) { transition-delay: .3s; }
.m-panel.is-open .m-links > li:nth-child(5) { transition-delay: .35s; }
.m-panel.is-open .m-links > li:nth-child(6) { transition-delay: .4s; }
.m-links__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.m-link {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    transition: color .2s;
}
.m-link::before {
    counter-increment: menu;
    content: counter(menu, decimal-leading-zero);
    min-width: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--sky);
}
.m-link:hover,
.m-link[aria-current="page"],
.m-links li.is-active .m-link { color: var(--sky); }
.m-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    font-size: 18px;
    transition: background .2s;
}
.m-toggle .icon { transition: transform .3s var(--ease); }
.m-toggle[aria-expanded="true"] { background: var(--primary); }
.m-toggle[aria-expanded="true"] .icon { transform: rotate(45deg); }
.m-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.m-sub.is-open { grid-template-rows: 1fr; }
.m-sub > div { min-height: 0; overflow: hidden; visibility: hidden; transition: visibility .35s; }
.m-sub.is-open > div { visibility: visible; }
.m-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 0 18px 34px; }
.m-chips a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    transition: background .2s, color .2s, border-color .2s;
}
.m-chips a:hover,
.m-chips a[aria-current="page"] { background: var(--white); border-color: var(--white); color: var(--ink); }
.m-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
    transition: background .2s;
}
.m-card:hover { background: rgba(255, 255, 255, .12); }
.m-card .icon { margin-bottom: 6px; font-size: 20px; color: var(--sky); }
.m-card small { font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, .6); }
.m-actions { display: flex; gap: 10px; }
.cta--full { flex: 1; justify-content: space-between; height: 56px; padding-left: 22px; background: var(--grad); font-size: 16px; }
.cta--full .cta__arrow { width: 38px; height: 38px; border-radius: 11px; }
.m-fb {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    font-size: 20px;
    transition: background .2s;
}
.m-fb:hover { background: #1877f2; }
.finder {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(20px, 12vh, 120px) var(--gutter) 20px;
    background: rgba(12, 23, 51, .55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.finder.is-open { opacity: 1; visibility: visible; }
.finder__box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 640px;
    max-height: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(.98);
    transition: transform .3s var(--ease);
}
.finder.is-open .finder__box { transform: none; }
.finder__form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px 8px 20px;
    border-bottom: 1px solid var(--line);
}
.finder__form > .icon { font-size: 20px; color: var(--primary); }
.finder__input {
    flex: 1;
    min-width: 0;
    height: 54px;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 17px;
    color: var(--ink);
    -webkit-appearance: none;
    appearance: none;
}
.finder__input::placeholder { color: #98a1b3; }
.finder__input::-webkit-search-cancel-button { -webkit-appearance: none; }
.finder__close {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--soft);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.finder__close:hover { border-color: var(--primary); color: var(--primary); }
.finder__close-icon { display: none; font-size: 18px; }
.finder__list { display: grid; gap: 2px; padding: 10px; overflow-y: auto; overscroll-behavior: contain; }
.finder__label { padding: 6px 12px 4px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.finder__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 12px;
    border-radius: 14px;
    transition: background .15s;
}
.finder__item:hover,
.finder__item:focus-visible { background: var(--soft); outline: none; }
.finder__item strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.finder__item small { display: block; font-size: 13px; color: var(--muted); }
.finder__type {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--tint);
    color: var(--primary);
    font-size: 11.5px;
    font-style: normal;
    font-weight: 700;
}
.finder__type--page { background: #f1f5f9; color: var(--muted); }
.finder__empty { padding: 28px 12px; text-align: center; color: var(--muted); }
.finder [hidden] { display: none !important; }
.site-footer {
    background: var(--soft);
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding: 64px 0 56px;
}
.footer-brand__logo { display: inline-flex; }
.footer-brand__logo img { height: 40px; width: auto; }
.footer-brand__text { max-width: 330px; margin-top: 20px; font-size: 15px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    color: var(--ink);
    font-size: 18px;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-social a:hover { background: var(--ink); border-color: var(--ink); color: var(--white); transform: translateY(-3px); }
.footer-col__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
}
.footer-col__title::before { content: ""; width: 8px; height: 8px; border-radius: 3px; background: var(--grad); }
.footer-links { display: grid; gap: 12px; }
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s, gap .25s var(--ease);
}
.footer-links a::before { content: ""; width: 0; height: 2px; border-radius: 2px; background: var(--primary); transition: width .25s var(--ease); }
.footer-links a:hover,
.footer-links a[aria-current="page"] { color: var(--primary); gap: 8px; }
.footer-links a:hover::before,
.footer-links a[aria-current="page"]::before { width: 12px; }
.footer-contact { display: grid; gap: 18px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 14px; }
.footer-contact__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    color: var(--primary);
    font-size: 19px;
}
.footer-contact__text { display: flex; flex-direction: column; min-width: 0; font-size: 15px; font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
.footer-contact__text small { font-size: 12px; font-weight: 600; color: var(--muted); }
.footer-contact__text a { transition: color .2s; }
.footer-contact__text a:hover { color: var(--primary); }
.footer-bottom { background: var(--ink); color: rgba(255, 255, 255, .7); font-size: 14px; }
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding-top: 14px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    padding-right: max(96px, env(safe-area-inset-right));
}
.footer-bottom__inner p:nth-child(2) { margin-left: auto; }
.footer-bottom__brand { font-weight: 700; color: var(--white); }
.to-top {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 900;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--grad);
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .9), 0 14px 30px -8px rgba(37, 99, 235, .55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s, visibility .3s, transform .3s var(--ease), background .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink); }
.to-top:hover .icon { animation: nudge-up .6s var(--ease); }
@keyframes nudge-up { 50% { transform: translateY(-4px); } }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--soft); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--tint);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.eyebrow--light { background: rgba(255, 255, 255, .1); color: var(--sky); }
.section-title {
    margin-top: 16px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
}
.section-text { margin-top: 18px; font-size: 17px; line-height: 1.75; color: var(--muted); }
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px 64px;
    margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head > div { max-width: 640px; }
.section-head .section-text { max-width: 460px; margin-top: 0; }
.text-grad {
    display: block;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 15.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.btn .icon { font-size: 18px; }
.btn__icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-right: -12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .18);
    transition: transform .3s var(--ease);
}
.btn__icon .icon { font-size: 16px; }
.btn:hover .btn__icon { transform: translateX(3px); }
.btn--primary { background: var(--grad); color: var(--white); box-shadow: 0 14px 30px -12px rgba(37, 99, 235, .6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(37, 99, 235, .7); }
.btn--ghost { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--primary); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light .btn__icon { background: var(--tint); color: var(--primary); }
.btn--light:hover { background: var(--sky); color: var(--ink); }
.btn--outline-light { border-color: rgba(255, 255, 255, .3); color: var(--white); }
.btn--outline-light .icon { color: var(--sky); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); }
.avatar {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
}
.avatar--lg { width: 58px; height: 58px; font-size: 18px; }
img.avatar { object-fit: cover; background: none; box-shadow: 0 0 0 3px rgba(255, 255, 255, .15); }
.person { display: flex; align-items: center; gap: 14px; }
.person strong { display: block; font-size: 16px; font-weight: 700; color: var(--ink); }
.person small { display: block; font-size: 13px; color: var(--muted); }
.hero { padding: 16px 0 clamp(56px, 7vw, 96px); background: var(--soft); overflow: hidden; }
.hero__slides { display: grid; }
.hero__slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s var(--ease), visibility .7s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__content > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero__slide.is-active .hero__content > * { opacity: 1; transform: none; }
.hero__slide.is-active .hero__content > :nth-child(2) { transition-delay: .1s; }
.hero__slide.is-active .hero__content > :nth-child(3) { transition-delay: .2s; }
.hero__slide.is-active .hero__content > :nth-child(4) { transition-delay: .3s; }
.hero__slide.is-active .hero__content > :nth-child(5) { transition-delay: .4s; }
.hero__title {
    margin: 20px 0 22px;
    font-size: clamp(36px, 5.2vw, 66px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.035em;
}
.hero__text { max-width: 540px; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero__points li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.hero__points .icon { font-size: 18px; color: var(--green); }
.hero__media { position: relative; aspect-ratio: 1 / 1.02; }
.hero__media::before {
    content: "";
    position: absolute;
    inset: 6% -4% -4% 6%;
    border-radius: 36px;
    background: var(--grad);
    opacity: .16;
    transform: rotate(3deg);
}
.hero__media img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
    transform: scale(.96);
    transition: transform 1.2s var(--ease);
}
.hero__slide.is-active .hero__media img { transform: none; }
.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity .6s var(--ease) .5s, transform .6s var(--ease) .5s;
}
.hero__badge--top { top: 9%; left: -32px; transform: translateX(-16px); }
.hero__badge--bottom { right: -24px; bottom: 10%; transform: translateX(16px); }
.hero__slide.is-active .hero__badge { opacity: 1; transform: none; }
.hero__badge-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--tint);
    color: var(--primary);
    font-size: 21px;
}
.hero__badge--bottom .hero__badge-icon { background: #dcfce7; color: var(--green); }
.hero__badge strong { display: block; font-size: 19px; font-weight: 800; line-height: 1.2; color: var(--ink); }
.hero__badge small { display: block; font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.hero__controls { display: flex; align-items: center; gap: 16px; margin-top: clamp(32px, 4vw, 48px); }
.slider-btn {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    color: var(--ink);
    font-size: 20px;
    transition: background .2s, color .2s, border-color .2s;
}
.slider-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.hero__progress { display: flex; align-items: center; gap: 14px; }
.hero__count { font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.hero__count b { font-size: 18px; font-weight: 800; color: var(--ink); }
.hero__bar { position: relative; width: 140px; height: 4px; border-radius: 4px; background: var(--line); overflow: hidden; }
.hero__bar i { position: absolute; inset: 0; width: 0; border-radius: inherit; background: var(--grad); }
.hero__bar.is-running i { animation: hero-progress 6s linear forwards; }
@keyframes hero-progress { to { width: 100%; } }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.about__media { position: relative; padding-bottom: 72px; }
.about__img { width: 86%; aspect-ratio: 1 / 1.08; object-fit: cover; border-radius: 32px; }
.about__chip {
    position: absolute;
    top: 32px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.about__chip-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    font-size: 17px;
}
.about__quote {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(360px, 72%);
    margin: 0;
    padding: 28px;
    border-radius: 24px;
    background: var(--ink) radial-gradient(circle at 100% 0, rgba(56, 189, 248, .3), transparent 55%);
    box-shadow: var(--shadow-lg);
}
.about__quote-icon { font-size: 30px; color: var(--sky); }
.about__quote blockquote { margin: 14px 0 22px; font-size: 16px; font-weight: 600; line-height: 1.6; color: var(--white); }
.about__quote .person strong { color: var(--white); }
.about__quote .person small { color: var(--sky); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 36px; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.feature:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--tint);
    color: var(--primary);
    font-size: 21px;
}
.feature:nth-child(2) .feature__icon { background: #fef3c7; color: #d97706; }
.feature:nth-child(3) .feature__icon { background: #dcfce7; color: var(--green); }
.feature:nth-child(4) .feature__icon { background: #ede9fe; color: #7c3aed; }
.feature strong { display: block; font-size: 16px; font-weight: 700; color: var(--ink); }
.feature small { display: block; margin-top: 2px; font-size: 14px; line-height: 1.45; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { position: relative; display: flex; flex: 1; flex-direction: column; gap: 6px; padding: 40px 26px 26px; }
.service-card__icon {
    position: absolute;
    top: -30px;
    left: 26px;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 4px solid var(--white);
    border-radius: 18px;
    background: var(--grad);
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 12px 24px -10px rgba(37, 99, 235, .6);
}
.service-card__title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.service-card__text { font-size: 15px; color: var(--muted); }
.service-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
}
.service-card__more .icon { transition: transform .3s var(--ease); }
.service-card:hover .service-card__more .icon { transform: translateX(4px); }
.stats {
    padding: clamp(56px, 7vw, 88px) 0;
    background:
        radial-gradient(circle at 0 0, rgba(37, 99, 235, .45), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(56, 189, 248, .25), transparent 45%),
        var(--ink);
    color: var(--white);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px clamp(16px, 3vw, 40px);
    border-left: 1px solid rgba(255, 255, 255, .12);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    color: var(--sky);
    font-size: 23px;
}
.stat__value { font-size: clamp(36px, 4.4vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--white); }
.stat__label { font-size: 15.5px; font-weight: 600; color: rgba(255, 255, 255, .7); }
.protect__card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--ink) 0%, #1e3a8a 60%, var(--primary) 100%);
}
.protect__media { position: relative; min-height: 400px; }
.protect__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.protect__content { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: clamp(36px, 5vw, 72px); color: var(--white); }
.protect__content .eyebrow { align-self: flex-start; }
.protect__title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: var(--white); }
.protect__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.reviews__intro .btn { margin-top: 32px; }
.reviews__card { position: relative; isolation: isolate; padding: 0 22px 22px 0; }
.reviews__card::before {
    content: "";
    position: absolute;
    inset: 22px 0 0 22px;
    z-index: -1;
    border-radius: 30px;
    background: var(--grad);
}
.review {
    position: relative;
    margin: 0;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.review__mark { position: absolute; top: 28px; right: 32px; font-size: 64px; color: var(--tint); }
.review__stars { display: flex; gap: 4px; font-size: 20px; color: #f59e0b; }
.review__text {
    position: relative;
    margin: 22px 0 30px;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.6;
    color: var(--ink);
}
.gallery { padding: clamp(56px, 7vw, 96px) 0; overflow-x: auto; scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery.is-ready { overflow: hidden; }
.gallery__track { display: flex; width: max-content; }
.gallery.is-ready .gallery__track { animation: gallery-marquee 50s linear infinite; }
.gallery.is-ready:hover .gallery__track,
.gallery.is-ready:focus-within .gallery__track { animation-play-state: paused; }
@keyframes gallery-marquee { to { transform: translateX(-50%); } }
.gallery__list { display: flex; gap: 20px; padding-right: 20px; }
.gallery__item {
    position: relative;
    display: block;
    width: clamp(220px, 22vw, 300px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 26px;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(12, 23, 51, .85) 100%);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}
.gallery__label .icon {
    width: 36px;
    height: 36px;
    padding: 9px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .18);
    transition: background .25s, transform .3s var(--ease);
}
.gallery__item:hover .gallery__label .icon { background: var(--primary); transform: rotate(45deg); }
.blog { padding-top: 0; }
.blog__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; }
.post { overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.post__media { position: relative; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.post__meta .icon { font-size: 15px; color: var(--primary); }
.post__dot { width: 4px; height: 4px; border-radius: 50%; background: #c3cad8; }
.post__title { font-weight: 800; line-height: 1.3; letter-spacing: -.02em; color: var(--ink); }
.post--feature { display: flex; flex-direction: column; border-radius: 28px; }
.post--feature .post__media { flex: 1; min-height: 280px; }
.post__date {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    min-width: 64px;
    padding: 10px 12px;
    border-radius: 16px;
    background: var(--white);
    line-height: 1.1;
    box-shadow: var(--shadow-sm);
}
.post__date strong { font-size: 24px; font-weight: 800; color: var(--ink); }
.post__date small { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.post--feature .post__body { display: flex; flex-direction: column; gap: 12px; padding: clamp(22px, 3vw, 32px); }
.post--feature .post__title { font-size: clamp(21px, 2vw, 26px); }
.post__text { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.blog__list { display: grid; gap: 16px; }
.post--row {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 20px;
    padding: 14px;
    border-radius: 22px;
    transition: box-shadow .3s, border-color .3s;
}
.post--row:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.post--row .post__media { aspect-ratio: 1 / 1; border-radius: 16px; }
.post--row .post__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.post--row .post__title { font-size: 17px; }
.page-hero { padding: 8px 0 0; background: var(--soft); }
.page-hero__card {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    min-height: clamp(240px, 26vw, 340px);
    padding: clamp(28px, 5vw, 56px);
    overflow: hidden;
    border-radius: 32px;
    background: var(--ink);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 75% 50%; }
.page-hero__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 23, 51, .55) 0%, rgba(12, 23, 51, 0) 55%);
}
.page-hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .icon { font-size: 14px; color: var(--sky); }
.breadcrumb span { color: var(--white); }
.page-hero__title { font-size: clamp(40px, 6vw, 76px); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: var(--white); }
.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.about-intro__media { position: relative; padding-bottom: 22%; }
.about-intro__main { width: 78%; aspect-ratio: 1 / 1.08; object-fit: cover; border-radius: 32px; }
.about-intro__sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54%;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
    border: 8px solid var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}
.about-intro__badge {
    position: absolute;
    top: 28px;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
    padding: 14px 18px 14px 14px;
    border-radius: 20px;
    background: var(--ink);
    box-shadow: var(--shadow-lg);
}
.about-intro__badge-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--grad);
    color: var(--white);
    font-size: 21px;
}
.about-intro__badge strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.about-intro__badge small { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .65); }
.about-intro__content .section-text + .section-text { margin-top: 14px; }
.about-intro__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 34px; }
.call-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 22px 8px 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.call-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.call-card__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #dcfce7;
    color: var(--green);
    font-size: 21px;
}
.call-card small { display: block; font-size: 13px; font-weight: 500; color: var(--muted); }
.call-card strong { display: block; font-size: 17px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.mv-card__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--grad);
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 14px 28px -12px rgba(37, 99, 235, .6);
}
.mv-card__num {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--line);
}
.mv-card__title { margin-bottom: 14px; font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.03em; }
.mv-card__text { font-size: 16px; line-height: 1.8; color: var(--muted); }
.mv-card--dark {
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, .28), transparent 50%),
        var(--ink);
}
.mv-card--dark .mv-card__title { color: var(--white); }
.mv-card--dark .mv-card__text { color: rgba(255, 255, 255, .72); }
.mv-card--dark .mv-card__num { -webkit-text-stroke-color: rgba(255, 255, 255, .18); }
.page-hero__text { max-width: 560px; font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; line-height: 1.6; color: rgba(255, 255, 255, .8); }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center > .section-title { max-width: 760px; }
.steps__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.step { position: relative; display: flex; flex-direction: column; }
.step__top { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.step__num {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 0 0 6px var(--tint);
}
.step__line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.step__icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--tint);
    color: var(--primary);
    font-size: 26px;
    transition: background .3s, color .3s, transform .3s var(--ease);
}
.step:hover .step__icon { background: var(--grad); color: var(--white); transform: translateY(-4px); }
.step__title { margin-bottom: 10px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.step__text { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.quote-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    margin-top: 28px;
    padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, .45), transparent 50%),
        linear-gradient(120deg, var(--ink) 0%, #1e3a8a 70%, var(--primary) 100%);
}
.quote-banner__text { display: flex; align-items: center; gap: 20px; }
.quote-banner__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
    color: var(--sky);
    font-size: 27px;
}
.quote-banner__title { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; color: var(--white); }
.quote-banner .btn { flex-shrink: 0; }
.why__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.why__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
}
.why__item:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.why__check {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #dcfce7;
    color: var(--green);
    font-size: 15px;
}
.why__media { position: relative; }
.why__media img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 32px; }
.why__badge {
    position: absolute;
    left: -24px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 14px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.why__badge-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--grad);
    color: var(--white);
    font-size: 21px;
}
.why__badge strong { display: block; font-size: 16px; font-weight: 800; color: var(--ink); }
.why__badge small { display: block; font-size: 12.5px; color: var(--muted); }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 3.5vw, 40px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--white);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.benefit:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.benefit__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.benefit__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--tint);
    color: var(--primary);
    font-size: 28px;
    transition: background .3s, color .3s;
}
.benefit:hover .benefit__icon { background: var(--grad); color: var(--white); }
.benefit__num { font-size: 15px; font-weight: 800; letter-spacing: .1em; color: #c3cad8; }
.benefit__title { margin-bottom: 12px; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.benefit__text { font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.benefit--featured {
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, .3), transparent 55%),
        var(--ink);
}
.benefit--featured .benefit__icon { background: var(--grad); color: var(--white); }
.benefit--featured .benefit__title { color: var(--white); }
.benefit--featured .benefit__text { color: rgba(255, 255, 255, .72); }
.benefit--featured .benefit__num { color: var(--sky); }
.join__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.join__lead {
    margin-top: 22px;
    padding-left: 18px;
    border-left: 4px solid var(--primary);
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 1.55;
    color: var(--ink-2);
}
.join__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 34px; }
.join__media { position: relative; padding: 0 0 48px 32px; }
.join__media img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; border-radius: 32px; }
.join__note {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 340px;
    padding: 22px 24px;
    border-radius: 22px;
    background: var(--grad);
    color: var(--white);
    box-shadow: 0 20px 40px -16px rgba(37, 99, 235, .6);
}
.join__note-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .18);
    font-size: 23px;
}
.join__note p { font-size: 16px; font-weight: 700; line-height: 1.45; }
.career__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: clamp(40px, 6vw, 88px);
}
.career__intro { position: sticky; top: 130px; }
.career__perks { display: grid; gap: 12px; margin-top: 30px; }
.career__perks li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.career__perk-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--tint);
    color: var(--primary);
    font-size: 18px;
}
.career__mail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    padding: 16px 20px 16px 16px;
    border-radius: 20px;
    background: var(--ink);
    color: var(--white);
    transition: background .25s;
}
.career__mail:hover { background: var(--primary); }
.career__mail-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: var(--sky);
    font-size: 21px;
}
.career__mail small { display: block; font-size: 13px; color: rgba(255, 255, 255, .7); }
.career__mail strong { display: block; font-size: 16px; font-weight: 800; overflow-wrap: anywhere; }
.form-card {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.form-card__head { margin-bottom: 24px; }
.form-card__title { font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.02em; }
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
.alert .icon { margin-top: 2px; font-size: 20px; }
.alert--success { background: #dcfce7; color: #166534; }
.alert--error { background: #fee2e2; color: #991b1b; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field__label { font-size: 14px; font-weight: 700; color: var(--ink); }
.field__req { color: #e11d48; }
.field__input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
    font: inherit;
    font-size: 16px;
    color: var(--ink);
    transition: border-color .2s, background .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}
.field__input::placeholder { color: #98a1b3; }
.field__input:hover { border-color: #c9d2e3; }
.field__input:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); }
.field__input.is-invalid,
.field__group.is-invalid { border-color: #e11d48; }
.field__error { font-size: 13px; font-weight: 600; color: #e11d48; }
.field__group {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
    overflow: hidden;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.field__group:focus-within { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); }
.field__group .field__input { height: 51px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.field__prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    height: 51px;
    padding: 0 12px 0 14px;
    border-right: 1.5px solid var(--line);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.field__flag { width: 24px; height: 16px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(12, 23, 51, .12); }
.file-drop {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1.5px dashed #b9c4d8;
    border-radius: 16px;
    background: var(--soft);
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.file-drop:hover,
.file-drop:focus-within,
.file-drop.is-dragover { border-color: var(--primary); background: var(--tint); }
.file-drop.is-invalid { border-color: #e11d48; }
.file-drop__input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
    color: var(--primary);
    font-size: 21px;
    box-shadow: var(--shadow-sm);
}
.file-drop__text { display: flex; flex: 1; flex-direction: column; min-width: 0; }
.file-drop__text strong { font-size: 15px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-drop__text small { font-size: 13px; color: var(--muted); }
.file-drop__btn {
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
.form__submit { width: 100%; margin-top: 26px; }
.form__submit:disabled { opacity: .7; cursor: wait; transform: none; }
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: clamp(40px, 6vw, 88px);
}
.contact__intro { position: sticky; top: 130px; }
.contact__list { display: grid; gap: 14px; margin-top: 34px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px 16px 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.contact-item:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.contact-item__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--grad);
    color: var(--white);
    font-size: 24px;
}
.contact-item__text { display: flex; flex: 1; flex-direction: column; min-width: 0; }
.contact-item__text small { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.contact-item__text strong { font-size: 17px; font-weight: 800; color: var(--ink); overflow-wrap: anywhere; }
.contact-item__arrow { flex-shrink: 0; font-size: 18px; color: #c3cad8; transition: color .25s, transform .3s var(--ease); }
.contact-item:hover .contact-item__arrow { color: var(--primary); transform: rotate(45deg); }
.field__textarea { height: auto; min-height: 160px; padding: 14px 16px; line-height: 1.6; resize: vertical; }
.map-section { padding-bottom: clamp(64px, 9vw, 120px); }
.map-section .quote-banner { margin: 0 0 24px; }
.map-card { position: relative; overflow: hidden; border-radius: 32px; background: var(--soft); box-shadow: var(--shadow-sm); }
.map-card__frame { display: block; width: 100%; height: clamp(360px, 36vw, 480px); border: 0; }
.loan__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: start;
    gap: clamp(32px, 4vw, 56px);
}
.loan__side { position: sticky; top: 130px; display: grid; gap: 20px; }
.side-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, .35), transparent 55%),
        var(--ink);
    text-align: center;
    color: var(--white);
}
.side-call__icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: var(--grad);
    font-size: 30px;
    box-shadow: 0 16px 30px -12px rgba(56, 189, 248, .7);
}
.side-call__title { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.side-call__text { width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 15px; color: rgba(255, 255, 255, .7); }
.side-call__phone { margin-top: 4px; font-size: 22px; font-weight: 800; transition: color .2s; }
.side-call__phone:hover { color: var(--sky); }
.loan-nav { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.loan-nav__title { margin-bottom: 12px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.loan-nav ul { display: grid; gap: 4px; }
.loan-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
    transition: background .2s, color .2s;
}
.loan-nav a::after { content: "\203A"; font-size: 20px; line-height: 1; color: #c3cad8; transition: color .2s, transform .2s; }
.loan-nav a:hover,
.loan-nav a[aria-current="page"] { background: var(--tint); color: var(--primary); }
.loan-nav a:hover::after,
.loan-nav a[aria-current="page"]::after { color: var(--primary); transform: translateX(3px); }
.loan__main { min-width: 0; }
.photo-slider { position: relative; overflow: hidden; border-radius: 30px; background: var(--soft); }
.photo-slider__track { display: grid; }
.photo-slider__slide {
    position: relative;
    grid-area: 1 / 1;
    margin: 0;
    aspect-ratio: 16 / 9.5;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity .8s var(--ease), transform 1.2s var(--ease), visibility .8s;
}
.photo-slider__slide.is-active { opacity: 1; visibility: visible; transform: none; }
.photo-slider__slide img { width: 100%; height: 100%; object-fit: cover; }
.photo-slider__caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 80px;
    background: linear-gradient(135deg, rgba(12, 23, 51, .78), rgba(37, 99, 235, .55));
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.photo-slider__caption strong {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    letter-spacing: -.02em;
    transform: translateY(12px);
    transition: transform .45s var(--ease);
}
.photo-slider__caption span {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .14);
    color: var(--white);
    transform: translateY(12px);
    transition: transform .45s var(--ease) .05s;
}
.photo-slider:hover .photo-slider__caption,
.photo-slider:focus-within .photo-slider__caption { opacity: 1; }
.photo-slider:hover .photo-slider__caption strong,
.photo-slider:hover .photo-slider__caption span,
.photo-slider:focus-within .photo-slider__caption strong,
.photo-slider:focus-within .photo-slider__caption span { transform: none; }
.photo-slider__btn {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    font-size: 20px;
    transform: translateY(-50%);
    box-shadow: var(--shadow-sm);
    transition: background .2s, color .2s;
}
.photo-slider__btn:hover { background: var(--ink); color: var(--white); }
.photo-slider__btn--prev { left: 18px; }
.photo-slider__btn--next { right: 18px; }
.photo-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(12, 23, 51, .45);
    transform: translateX(-50%);
}
.photo-slider__dots button { width: 8px; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .5); transition: width .3s var(--ease), background .3s; }
.photo-slider__dots button.is-active { width: 26px; background: var(--white); }
.loan__content { margin-top: 40px; }
.loan__highlight {
    margin-top: 22px;
    padding: 22px 24px;
    border-left: 4px solid var(--primary);
    border-radius: 0 18px 18px 0;
    background: var(--soft);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.75;
    color: var(--ink-2);
}
.loan__subtitle { margin-top: 34px; font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.loan__why { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.loan__why li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.loan-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.loan__subtitle + .loan-steps { margin-top: 16px; }
.loan-steps--four { grid-template-columns: repeat(2, 1fr); }
.loan-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.loan-step:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.loan-step__num { position: absolute; top: 22px; right: 24px; font-size: 14px; font-weight: 800; letter-spacing: .1em; color: #c3cad8; }
.loan-step__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 17px;
    background: var(--tint);
    color: var(--primary);
    font-size: 25px;
    transition: background .3s, color .3s;
}
.loan-step:hover .loan-step__icon { background: var(--grad); color: var(--white); }
.loan-step strong { padding-right: 28px; font-size: 17px; font-weight: 800; line-height: 1.35; color: var(--ink); }
.docs__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.docs__media { position: relative; }
.docs__media::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border-radius: 40px;
    background: var(--grad);
    opacity: .15;
}
.docs__media img { position: relative; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 34px; }
.docs__list { display: grid; gap: 14px; margin-top: 32px; }
.doc-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    transition: box-shadow .3s, border-color .3s;
}
.doc-item:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.doc-item__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--grad);
    color: var(--white);
    font-size: 26px;
}
.doc-item strong { font-size: 17px; font-weight: 800; line-height: 1.4; color: var(--ink); }
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
    gap: clamp(40px, 6vw, 88px);
}
.faq__left { display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; gap: 20px; }
.faq__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 30px; }
.faq__rings { display: grid; gap: 20px; }
.ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    text-align: center;
}
.ring__value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background:
        radial-gradient(closest-side, var(--white) 80%, transparent 81%),
        conic-gradient(var(--primary) calc(var(--p) * 1%), var(--tint) 0);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
}
.ring__label { font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.faq__list { display: grid; gap: 14px; margin-top: 30px; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: border-color .25s, box-shadow .25s; }
.faq-item[open] { border-color: transparent; box-shadow: var(--shadow-lg); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--ink);
    list-style: none;
    cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--tint);
    color: var(--primary);
    font-size: 17px;
    transition: background .25s, color .25s, transform .3s var(--ease);
}
.faq-item[open] .faq-item__icon { background: var(--grad); color: var(--white); transform: rotate(45deg); }
.faq-item p { padding: 0 22px 22px; font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.apply-cta__card {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    padding: clamp(32px, 5vw, 64px);
    overflow: hidden;
    border-radius: 32px;
    background: var(--ink);
}
.apply-cta__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.apply-cta__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 23, 51, .94) 0%, rgba(30, 58, 138, .8) 60%, rgba(37, 99, 235, .55) 100%);
}
.apply-cta__title { max-width: 620px; font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: var(--white); }
.apply-cta .btn { flex-shrink: 0; }
.hero__badge strong span { font-variant-numeric: tabular-nums; }
.offer__controls { display: flex; gap: 12px; flex-shrink: 0; }
.offer__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px 18px;
    margin: -6px -2px 0;
}
.offer__track::-webkit-scrollbar { display: none; }
.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 28px 32px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    scroll-snap-align: start;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.offer-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.offer-card:hover::after { transform: scaleX(1); }
.offer-card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.offer-card__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--tint);
    color: var(--primary);
    font-size: 30px;
    transition: background .3s, color .3s;
}
.offer-card:hover .offer-card__icon { background: var(--grad); color: var(--white); }
.offer-card__num { font-size: 34px; font-weight: 800; line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--line); }
.offer-card__title { margin-top: 10px; font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.offer-card__title span { display: block; font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--primary); }
.offer-card__text { font-size: 15.5px; line-height: 1.7; }
.offer__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.offer__dots button { width: 10px; height: 10px; border-radius: 10px; background: var(--line); transition: width .3s var(--ease), background .3s; }
.offer__dots button.is-active { width: 30px; background: var(--primary); }
.quote__grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(32px, 5vw, 72px); }
.quote__media { position: relative; margin-top: 32px; border-radius: 30px; overflow: hidden; aspect-ratio: 5 / 4; background: var(--tint); }
.quote__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.quote__media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(12, 23, 51, .06); }
.quote-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 26px; padding: 6px; border-radius: 18px; background: var(--soft); }
.quote-tab { position: relative; cursor: pointer; }
.quote-tab input { position: absolute; opacity: 0; pointer-events: none; }
.quote-tab span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    transition: background .2s, color .2s, box-shadow .2s;
}
.quote-tab .icon { font-size: 22px; }
.quote-tab:hover span { color: var(--ink); }
.quote-tab input:checked + span { background: var(--ink); color: var(--white); box-shadow: 0 10px 22px -10px rgba(12, 23, 51, .6); }
.quote-tab input:checked + span .icon { color: var(--sky); }
.quote-tab input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }
.field__select {
    appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    cursor: pointer;
}
.range__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.range__value { padding: 4px 12px; border-radius: 999px; background: var(--tint); font-size: 15px; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.range {
    --fill: 68%;
    width: 100%;
    height: 28px;
    margin: 4px 0 0;
    background: transparent;
    appearance: none;
    cursor: pointer;
}
.range:focus { outline: none; }
.range::-webkit-slider-runnable-track { height: 8px; border-radius: 8px; background: linear-gradient(90deg, #2563eb 0%, #38bdf8 var(--fill), var(--line) var(--fill)); }
.range::-moz-range-track { height: 8px; border-radius: 8px; background: linear-gradient(90deg, #2563eb 0%, #38bdf8 var(--fill), var(--line) var(--fill)); }
.range::-webkit-slider-thumb { appearance: none; width: 24px; height: 24px; margin-top: -8px; border: 5px solid var(--white); border-radius: 50%; background: var(--ink); box-shadow: 0 4px 12px rgba(12, 23, 51, .35); }
.range::-moz-range-thumb { width: 14px; height: 14px; border: 5px solid var(--white); border-radius: 50%; background: var(--ink); box-shadow: 0 4px 12px rgba(12, 23, 51, .35); }
.range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 5px rgba(37, 99, 235, .25); }
