/*--flags--*/
.fib,
.fi {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    line-height: 1em
}

.fi:before {
    content: " "
}

.fi.fis {
    width: 1em
}

.fi-cn {
    background-image: url(../libs/flags/4x3/cn.svg)
}

.fi-de {
    background-image: url(../libs/flags/4x3/de.svg)
}

.fi-fr {
    background-image: url(../libs/flags/4x3/fr.svg)
}

.fi-gb {
    background-image: url(../libs/flags/4x3/gb.svg)
}

.fi-it {
    background-image: url(../libs/flags/4x3/it.svg)
}

.fi-kz {
    background-image: url(../libs/flags/4x3/kz.svg)
}

.fi-nl {
    background-image: url(../libs/flags/4x3/nl.svg)
}

.fi-pl {
    background-image: url(../libs/flags/4x3/pl.svg)
}

.fi-ru {
    background-image: url(../libs/flags/4x3/ru.svg)
}

.fi-tr {
    background-image: url(../libs/flags/4x3/tr.svg)
}

.fi-ua {
    background-image: url(../libs/flags/4x3/ua.svg)
}

.fi-eg {
    background-image: url(../libs/flags/4x3/eg.svg)
}

.fi-es {
    background-image: url(../libs/flags/4x3/es.svg)
}

.fi-jp {
    background-image: url(../libs/flags/4x3/jp.svg)
}

/*--main-style--*/

:root {
    /* --bg: #06060f; */
    --bg: #EEF2F7;

    /* --bg2: #0b0b1a; */
    --bg2: #FFFFFF;


    --bg3: #101026;
    --violet: #7c3aed;
    --violet-l: #9f5cf7;
    --neon: #d946ef;
    --blue: #3b82f6;
    --blue-l: #818cf8;

    /* --text: #eeeeff; */
    --text: #111827;

    /* --text-muted: #9896c0; */
    --text-muted: #475569;


    /* --border: rgba(124, 58, 237, 0.3); */
    --border: #E5E7EB;
    --card-bg: rgba(16, 16, 38, 0.85)
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Syne, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 40%, #fdf4ff 100%);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: .6
}

.container {
    width: 100%;
    max-width: 1360px;
    padding: 0 15px;
    margin: 0 auto
}

.btn-primary {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(90deg, #7B61FF, #D16BFF);
    color: #fff;
    font-family: Syne, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: box-shadow .3s, transform .2s
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(124, 58, 237, .5);
    transform: translateY(-2px)
}

.btn-primary:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px
}

.btn-primary svg {
    flex-shrink: 0
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    color: #1e293b;
    font-family: Syne, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all .2s ease;
}

.btn-ghost:hover {
    border-color: var(--neon);
    color: var(--text);
    transform: translateY(-2px);
}

.btn-ghost:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(120deg, var(--blue-l) 0, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.logo img {
    width: 170px;
    max-width: 100%;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0 0;
    margin: 0 0
}

.header__list-item {
    padding: 0 10px
}

.header__list-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .2s
}

.header__list-link:hover {
    color: #0f172a;
}

.header__list-link:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px;
    border-radius: 2px
}

.header__list-link.active {
    color: var(--text)
}

.block__social {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.block__social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.block__social-btn.wa {
    border: none;
    background: #25D366;
    color: #fff;
}

.block__social-btn.tg {
    border: none;
    background: #229ED9;
    color: #fff;
}

.block__social-btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.block__social-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lang-switcher {
    border-radius: 4px;
    border: 1px solid var(--border);
    position: relative;
    display: inline-flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 7px 14px;
    transition: border-color .2s, color .2s, transform .2s;
}

.lang-switcher:hover {
    border-color: var(--neon);
    color: var(--text);
    transform: translateY(-1px);
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: 0 0;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s
}

.lang-trigger:hover {
    color: var(--text)
}

.lang-trigger:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px;
    border-radius: 2px
}

.lang-trigger.open {
    color: var(--text)
}

.lang-flag {
    width: 18px;
    height: 13px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0
}

.lang-code {
    text-transform: uppercase
}

.lang-chevron {
    width: 10px;
    height: 6px;
    opacity: .45;
    transition: transform .2s;
    flex-shrink: 0
}

.lang-trigger.open .lang-chevron {
    transform: rotate(180deg);
    opacity: .7
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 100%;
    background: rgba(6, 6, 15, .96);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 3px;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s, transform .18s
}

.lang-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.lang-dropdown li {
    display: flex
}

.language-block__link {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 7px 10px;
    border-radius: 3px;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .15s;
    white-space: nowrap
}

.language-block__link:hover {
    border: 1px solid var(--neon);
    color: var(--text)
}

.burger {
    width: 25px;
    height: auto;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    padding: 6px 0 0 0;
    display: none
}

.burger__item {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(120deg, var(--blue-l), var(--neon));
    margin: 0 0 6px 0
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .2s
}

.back-btn svg {
    width: 16px;
    height: 16px
}

.back-btn:hover {
    color: var(--text)
}

.back-btn:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px;
    border-radius: 2px
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 700px;
    max-width: 100%;
    height: 450px;
    background-image: url(/images/text-bg-lg.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    margin: 0 0 28px 0;
}

@media screen and (max-width: 1240px) {
    .hero-content__text {
        width: 510px;
        height: 375px;
        background-image: url(/images/text-bg-md.png);
        background-position: 0 0;
    }
}

@media screen and (max-width: 920px) {
    .hero-content__text {
        width: 320px;
        height: 345px;
        background-image: url(/images/text-bg-sm.png);
    }
}

@media screen and (max-width: 350px) {
    .hero-content__text {
        background-size: contain;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--neon);
    background: rgba(217, 70, 239, .07);
    margin-bottom: 24px
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon);
    animation: pulse 2s ease-in-out infinite
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.01em;
    margin-bottom: 16px
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(90deg, #6d28d9, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    position: static;
    right: auto;
    bottom: auto
}

.stat {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 14px 18px;
    backdrop-filter: blur(6px);
    transition: all .3s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-num {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    pointer-events: none;
    z-index: 1
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0, transparent 40%);
    z-index: 2
}

.hero-visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, var(--bg) 0, transparent 100%);
    z-index: 2
}

.hero-visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    display: block;
    opacity: .85
}

.agents-section {
    padding: 60px 0;
    position: relative
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px
}

.agents-count {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400
}

.agents-count strong {
    color: var(--text);
    font-weight: 700
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 52px
}

.agent-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
    aspect-ratio: 3/4
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.agent-card:hover .agent-photo img {
    transform: scale(1.06)
}

.agent-card:hover::before {
    opacity: 1
}

.agent-card:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px
}

.agent-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--neon), var(--blue));
    opacity: 0;
    transition: opacity .3s;
    z-index: 4
}

.agent-photo {
    position: absolute;
    inset: 0;
    background: var(--bg3);
    overflow: hidden
}

.agent-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.agent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.25) 40%, transparent 70%);
    pointer-events: none;
}

.agent-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 22px 22px;
    z-index: 3
}

.agent-top-labels {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4
}

.agent-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.agent-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.agent-status.online {
    color: #4ade80;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.agent-status.online::before {
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse 2s ease-in-out infinite
}

.agent-status.offline {
    color: var(--text-muted);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.agent-status.offline::before {
    background: var(--text-muted);
    opacity: .5
}

.agent-vip {
    padding: 4px 10px;
    background: var(--neon);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #fff;
}

.agent-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 8px
}

.agent-age-inline {
    font-weight: 300;
    color: var(--text-muted)
}

.agent-contacts {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
}

.agent-contacts .agent-contact-btn {
    flex: 1;
    justify-content: center
}

.agent-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .2s, transform .2s
}

.agent-contact-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.agent-contact-btn:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.agent-contact-btn.wa {
    border: none;
    background: #22c55e;
    box-shadow: 0 4px 12px rgba(34,197,94,0.25);
    color: #fff;
}

.agent-contact-btn.tg {
    border: none;
    background: #38bdf8;
    box-shadow: 0 4px 12px rgba(56,189,248,0.25);
    color: #fff;
}

.agent-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.agent-city {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.agent-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(217, 70, 239, .4);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.agent-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--neon);
    fill: none;
    transition: stroke .2s
}

.agent-card:hover .agent-arrow {
    background: var(--neon);
    border-color: var(--neon);
}

.agent-card:hover .agent-arrow svg {
    stroke: #fff
}

.page {
    padding-top: 74px
}

.agent-hero {
    display: grid;
    grid-template-columns: minmax(420px, 40%) 1fr;
    min-height: calc(100vh - 74px)
}

.slider-col {
    position: relative;
    overflow: hidden
}

.slider-sticky {
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.slider-track {
    flex: 1;
    position: relative;
    overflow: hidden
}

.slider-slides {
    display: flex;
    height: 100%;
    transition: transform .55s cubic-bezier(.77, 0, .175, 1)
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative
}

.slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, var(--bg) 100%), linear-gradient(180deg, transparent 70%, rgba(6, 6, 15, .6) 100%);
    pointer-events: none
}

.slide-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .5)
}

.slide-counter strong {
    color: var(--neon)
}

.slider-arrows {
    display: flex;
    gap: 10px;
    background: rgba(6, 6, 15, .6);
    align-items: center;
    padding: 16px 15px;
    margin: 0 0 20px 0
}

.thumb-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1
}

.thumb-row::-webkit-scrollbar {
    display: none
}

.thumb {
    width: 54px;
    height: 72px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s, opacity .2s;
    opacity: .5;
    flex-shrink: 0;
    padding: 0;
    background: 0 0
}

.thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.thumb:hover {
    opacity: .8
}

.thumb.active {
    border-color: var(--neon);
    opacity: 1
}

.thumb:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 2px
}

.agent-detail {
    min-width: 0;
    padding: 80px 64px 80px 56px;
    display: flex;
    flex-direction: column
}

.agent-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.meta-badge {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--neon);
    background: rgba(217, 70, 239, .07)
}

.meta-id {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: .1em
}

.agent-name-big {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 5vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 8px
}

.agent-surname {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 300;
    font-style: italic;
    color: var(--neon);
    margin-bottom: 32px
}

.agent-desc {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 48px
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 48px
}

.stat-box {
    padding: 24px 20px;
    background: var(--bg2);
    text-align: center
}

.stat-box-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue-l), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 6px
}

.stat-box-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.block-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 18px
}

.block-title.langs-title {
    color: var(--blue-l)
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px
}

.service-chip {
    padding: 10px 20px;
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .3);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--text);
    transition: background .2s, border-color .2s
}

.service-chip:hover {
    background: rgba(124, 58, 237, .22);
    border-color: rgba(217, 70, 239, .5)
}

.langs-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 52px
}

.lang-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(59, 130, 246, .3);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-l);
    background: rgba(59, 130, 246, .07)
}

.rates {
    border-radius: 6px;
    border: 1px solid var(--border);
    background-color: var(--bg2)
}

.rates__list {
    list-style: none;
    padding: 0 0;
    margin: 0 0
}

.rates__list-item {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center
}

.rates__list-item--head {
    display: flex;
    align-items: center
}

.rates__list-item--head span {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-l)
}

.rates__list-item:not(:last-child) {
    border-bottom: 1px solid var(--border)
}

.rates span {
    padding: 15px 15px
}

.rates__list-name {
    width: 50%
}

.rates__list-inc {
    width: 25%
}

.rates__list-out {
    width: 25%
}

.cta-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 15px;
    margin: 0 0 40px 0
}

.cta-block .btn-primary {
    padding: 18px 44px
}

.cta-block .btn-ghost {
    padding: 18px 32px
}

.more-section {
    padding: 100px 56px;
    border-top: 1px solid var(--border)
}

.more-section .section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 14px
}

.more-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    margin-bottom: 48px
}

.more-section h2 em {
    font-style: italic;
    color: var(--neon)
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.mini-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--card-bg);
    transition: transform .3s, box-shadow .3s;
    aspect-ratio: 3/4;
    position: relative
}

.mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 0 1px rgba(217, 70, 239, .25)
}

.mini-card:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px
}

.mini-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--neon), var(--blue));
    opacity: 0;
    transition: opacity .3s;
    z-index: 4
}

.mini-card:hover::before {
    opacity: 1
}

.mini-photo {
    position: absolute;
    inset: 0
}

.mini-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(6, 6, 15, .95) 100%)
}

.mini-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px
}

.mini-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600
}

.mini-age {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px
}

.pagination {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 0;
    margin: 0 0;
}

.page-btn {
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: Syne, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s
}

.page-btn:hover {
    border-color: var(--neon);
    color: var(--text);
    background: rgba(217, 70, 239, .08)
}

.page-btn.active {
    background: linear-gradient(135deg, var(--violet), var(--blue));
    border-color: transparent;
    color: #fff
}

.page-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none
}

.page-btn:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px
}

.footer {
    padding: 50px 0 0 0;
    border-top: 1px solid var(--border)
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 15px;
    margin: 0 0 30px 0;
}

.footer-logo {
    display: inline-block;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(120deg, var(--blue-l), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 30px 0;
}

.footer__list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.footer__list-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .2s;
    margin: 0 0 10px 0;
}

.footer__list-link:hover {
    color: var(--neon);
}

.footer__text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__copy {
    text-align: center;
    padding: 20px 0;
}

.footer__copy-text {
    text-align: center;
    color: rgba(152, 150, 192, .5);
    font-size: 12px;
    letter-spacing: .08em;
    margin: 0 0;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-30px, 40px)
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(40px, -30px)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.card-appear {
    transform: translateY(24px);
    transition: opacity .5s cubic-bezier(.22, 1, .36, 1), transform .5s cubic-bezier(.22, 1, .36, 1)
}

.card-appear.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) forwards
}

.fade-up:nth-child(1) {
    animation-delay: .1s
}

.fade-up:nth-child(2) {
    animation-delay: .22s
}

.fade-up:nth-child(3) {
    animation-delay: .34s
}

.fade-up:nth-child(4) {
    animation-delay: .46s
}

.slide-in {
    opacity: 0;
    transform: translateX(24px);
    animation: slideIn .65s cubic-bezier(.22, 1, .36, 1) forwards
}

.slide-in:nth-child(1) {
    animation-delay: .1s
}

.slide-in:nth-child(2) {
    animation-delay: .2s
}

.slide-in:nth-child(3) {
    animation-delay: .3s
}

.slide-in:nth-child(4) {
    animation-delay: .4s
}

.slide-in:nth-child(5) {
    animation-delay: .5s
}

.slide-in:nth-child(6) {
    animation-delay: .6s
}

.slide-in:nth-child(7) {
    animation-delay: .7s
}

.slide-in:nth-child(8) {
    animation-delay: .8s
}

/*------------- inner page ------------*/

.inner-page {
    padding-top: 74px;
    min-height: 100vh;
}

.inner-hero {
    position: relative;
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, transparent 70%);
    pointer-events: none;
}

.inner-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--neon);
    background: rgba(217, 70, 239, .07);
    margin-bottom: 24px;
}

.inner-hero__label::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon);
    animation: pulse 2s ease-in-out infinite;
}

.inner-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 20px;
}

.inner-hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--blue-l), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inner-hero__desc {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
}

/* About sections */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>* {
    direction: ltr;
}

.about-text__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 16px;
}

.about-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-text h2 em {
    font-style: italic;
    color: var(--neon);
}

.about-text p {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-visual {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    background: var(--bg2);
}

.about-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, .15), rgba(217, 70, 239, .08));
    z-index: 1;
}

.about-visual-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.about-visual-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--violet), var(--neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.about-visual-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
}

/* Values */
.values-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.values-head {
    text-align: center;
    margin-bottom: 60px;
}

.values-head .section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 14px;
}

.values-head h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
}

.values-head h2 em {
    font-style: italic;
    color: var(--neon);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color .3s, transform .3s;
}

.value-card:hover {
    border-color: rgba(217, 70, 239, .5);
    transform: translateY(-4px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .2), rgba(217, 70, 239, .15));
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--neon);
    fill: none;
}

.value-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Stats */
.about-stats {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.about-stat {
    padding: 40px 32px;
    background: var(--bg2);
    text-align: center;
}

.about-stat__num {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue-l), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* CTA */
.about-cta {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.about-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    margin-bottom: 16px;
}

.about-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--blue-l), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ layout */
.faq-section {
    padding: 80px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-sidebar__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.faq-cats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--text-muted);
    font-family: Syne, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    transition: color .2s, border-color .2s, background .2s;
}

.faq-cat-btn:hover {
    color: var(--text);
    border-color: var(--border);
}

.faq-cat-btn.active {
    color: var(--neon);
    background: rgba(217, 70, 239, .07);
    border-color: rgba(217, 70, 239, .3);
}

.faq-cat-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-group__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.faq-group__title em {
    font-style: italic;
    color: var(--neon);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: Syne, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 20px;
    transition: color .2s;
}

.faq-question:hover,
.faq-question.open {
    color: var(--neon);
}

.faq-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}

.faq-chevron svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    transition: transform .3s;
}

.faq-question.open .faq-chevron {
    background: rgba(217, 70, 239, .1);
    border-color: rgba(217, 70, 239, .4);
}

.faq-question.open .faq-chevron svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1);
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 0 24px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA */
.faq-cta {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.faq-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    margin-bottom: 14px;
}

.faq-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--blue-l), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-cta p {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-cats {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Contacts layout */
.contacts-section {
    padding: 80px 0;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contacts-info__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 16px;
}

.contacts-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contacts-info h2 em {
    font-style: italic;
    color: var(--neon);
}

.contacts-info__desc {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.contact-card:hover {
    border-color: rgba(217, 70, 239, .5);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.contact-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon.wa {
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .3);
}

.contact-card__icon.tg {
    background: rgba(40, 167, 228, .12);
    border: 1px solid rgba(40, 167, 228, .3);
}

.contact-card__icon svg {
    width: 24px;
    height: 24px;
}

.contact-card__icon.wa svg {
    fill: #25d366;
}

.contact-card__icon.tg svg {
    fill: #29a8e8;
}

.contact-card__body {
    flex: 1;
}

.contact-card__title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.contact-card__title.wa {
    color: #25d366;
}

.contact-card__title.tg {
    color: #29a8e8;
}

.contact-card__sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--text-muted);
}

.contact-card__arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.contact-card__arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    transition: stroke .2s;
}

.contact-card:hover .contact-card__arrow {
    background: var(--neon);
    border-color: var(--neon);
}

.contact-card:hover .contact-card__arrow svg {
    stroke: #fff;
}

.contacts-extra {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-extra__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.contacts-extra__row svg {
    width: 18px;
    height: 18px;
    stroke: var(--neon);
    fill: none;
    flex-shrink: 0;
}

.contacts-extra__text {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    color: var(--text-muted);
}

.contacts-extra__text strong {
    color: var(--text);
}

/* Right side */
.contacts-models__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue-l);
    margin-bottom: 16px;
}

.contacts-models h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
}

.contacts-models h2 em {
    font-style: italic;
    color: var(--neon);
}

.contacts-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.contacts-mini-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--card-bg);
    transition: transform .3s, box-shadow .3s;
    aspect-ratio: 3/4;
    position: relative;
}

.contacts-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(217, 70, 239, .25);
}

.contacts-mini-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--neon), var(--blue));
    opacity: 0;
    transition: opacity .3s;
    z-index: 4;
}

.contacts-mini-card:hover::before {
    opacity: 1;
}

.contacts-mini-photo {
    position: absolute;
    inset: 0;
}

.contacts-mini-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contacts-mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(6, 6, 15, .95) 100%);
}

.contacts-mini-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    z-index: 3;
}

.contacts-mini-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 600;
}

.contacts-mini-age {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.contacts-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Promise */
.response-promise {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.response-promise__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.promise-box {
    padding: 40px 32px;
    background: var(--bg2);
    text-align: center;
}

.promise-box__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .2), rgba(217, 70, 239, .15));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.promise-box__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--neon);
    fill: none;
}

.promise-box h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.promise-box p {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .response-promise__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contacts-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*------------- inner page /-----------*/

@media (max-width:1200px) {
    .agents-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:1100px) {
    .agent-detail {
        padding: 60px 40px
    }
}

@media (max-width:992px) {
    header {
        padding: 0 24px
    }

    .header__nav {
        display: none
    }

    .header__nav.active {
        width: 97%;
        border-radius: 0 0 6px 6px;
        border: 1px solid var(--border);
        background-color: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 30px 15px;
        display: flex
    }

    .header__list {
        flex-direction: column;
        align-items: flex-start;
        order: 2
    }

    .header__list-item {
        padding: 10px 0
    }

    .header__list-link {
        font-size: 16px
    }

    .block__social {
        justify-content: center;
    }

    .lang-switcher {
        order: 1
    }

    .burger {
        display: block
    }

    .hero {
        min-height: auto;
        padding: 140px 0 60px
    }

    .agents-section {
        padding: 80px 0
    }

    .agent-hero {
        grid-template-columns: 1fr
    }

    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .footer {
        padding: 48px 0 0 0;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-right {
        justify-content: center
    }
}

@media (max-width:768px) {
    .agent-hero {
        grid-template-columns: 1fr
    }

    .slide-overlay {
        background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 15, .85) 100%)
    }

    .agent-detail {
        padding: 40px 15px
    }

    .more-section {
        padding: 60px 15px
    }

    .more-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }
}

@media (max-width: 640px) {
    .hero-visual {
        display: none;
    }
}

@media (max-width:520px) {
    .agents-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .hero h1 {
        font-size: 42px
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:460px) {
    .agents-grid {
        grid-template-columns: 1fr
    }

    .cta-block .btn-primary {
        width: 100%;
        justify-content: center
    }

    .cta-block .btn-ghost {
        width: 100%;
        justify-content: center
    }
}