/*--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-th {
    background-image: url(../libs/flags/4x3/th.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--*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #CCD6F6;
    background: #0A192F;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Mono', monospace;
    line-height: 1.3;
    font-weight: 700;
}

/* --- Scanline Overlay --- */
.scanline-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(100, 255, 218, .015) 2px,
            rgba(100, 255, 218, .015) 4px);
    animation: scanlineScroll 8s linear infinite;
}

@keyframes scanlineScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100vh;
    }
}

/* --- Matrix Rain Canvas --- */
.matrix-rain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .04;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 820px;
}

.accent {
    color: #64FFDA;
}

/* Code-style text helpers */
.code-comment {
    text-transform: uppercase;
    color: #546e7a;
    font-family: 'Space Mono', monospace;
    font-size: .85em;
}

.code-keyword {
    color: #c792ea;
    font-family: 'Space Mono', monospace;
}

.code-var {
    color: #82aaff;
    font-family: 'Space Mono', monospace;
}

.code-string {
    color: #c3e88d;
}

.terminal-prompt {
    color: #64FFDA;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

/* --- Terminal Window Component --- */
.terminal-window {
    background: rgb(17 34 64 / .7);
    border: 1px solid rgba(100, 255, 218, .15);
    border-radius: 8px;
    overflow: hidden;
}

.terminal-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(100, 255, 218, .05);
    border-bottom: 1px solid rgba(100, 255, 218, .1);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.terminal-titlebar-text {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
    margin-left: 8px;
}

.terminal-body {
    padding: 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: .85rem;
    transition: all .3s;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    letter-spacing: .5px;
}

.btn-accent {
    background: #64FFDA;
    color: #0A192F;
    border-color: #64FFDA;
}

.btn-accent:hover {
    background: transparent;
    color: #64FFDA;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

.btn-outline {
    background: transparent;
    color: #64FFDA;
    border-color: #64FFDA;
}

.btn-outline:hover {
    background: #64FFDA;
    color: #0A192F;
}

.btn-outline-light {
    background: transparent;
    color: #64FFDA;
    border-color: #64FFDA;
}

.btn-outline-light:hover {
    background: #64FFDA;
    color: #0A192F;
}

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all .35s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 25, 47, .95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 255, 218, .08);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.navbar-brand img {
    width: 200px;
    max-width: 100%;
}

.brand-icon {
    font-weight: 700;
    font-size: 1.3rem;
    color: #e63946;
    display: inline-block;
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.15);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.brand-text {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    color: #CCD6F6;
    letter-spacing: 1px;
}

.nav-menu {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    min-width: 0;
}

.dropdown-item {
    position: relative;
}

.dropdown-item::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #8892B0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

@media screen and (max-width: 992px) {
    .dropdown-item::after {
        border-top: 4px solid #64FFDA;
        top: 25px;
        right: 15px;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .nav-item--lang {
        order: 1;
        margin: 0 0 20px 0;
    }

    .nav-item {
        width: 100%;
        order: 2;
    }
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    font-weight: 400;
    color: #8892B0;
    border-radius: 4px;
    transition: all .25s;
    letter-spacing: .5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nav-link:hover,
.nav-link.active {
    color: #64FFDA;
}

.nav-link.active {
    background: rgba(100, 255, 218, .08);
}

/*------------------------ mega-menu --------------------*/

.mega-menu {
    width: 160px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, .15);
    background: rgb(17 34 64 / .95);
    scrollbar-width: thin;
    scrollbar-color: #64FFDA rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 10px;
    display: none;
}

@media screen and (max-width: 992px) {
    .mega-menu {
        width: 100%;
        max-height: none;
        overflow-y: visible;
        position: static;
        display: none;
    }

    .mega-menu.is-visible {
        display: block;
    }
}

.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background-color: #64FFDA;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background-color: #64FFDA;
    filter: brightness(1.2);
}

@media (min-width: 992px) {
    .dropdown-item:hover>.mega-menu {
        display: block;
    }
}

.mega-menu__item {
    padding: 5px 0;
}

/*------------------------- Language --------------------*/

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 3px 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.language-block-head {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.8rem;
    color: #8892B0;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .3s ease;
}

.language-block-head:hover {
    color: #64FFDA;
}

.language-block-head span {
    margin-right: 5px;
}

.language-block-head::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #8892B0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

.language-block-head:hover::after {
    border-top: 4px solid #64FFDA;
}

.language-block-list {
    list-style: none;
    width: 90px;
    border-radius: 5px;
    background-color: #112240;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(100, 255, 218, .15);
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    display: none;
}

@media screen and (max-width: 768px) {
    .language-block-list {
        right: auto;
        left: 0;
    }
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    padding: 5px 15px;
}

.language-block-list li:hover {
    background: #152e49;
}

.language-block-list li a {
    display: block;
    color: #fff;
    text-align: left;
}

/*--------------------- social-mobile ------------------*/

.social-mobile {
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
    display: none;
}

@media screen and (max-width: 992px) {
    .social-mobile {
        display: flex;
    }
}

.social-mobile__link {
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    background-color: #0A192F;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.social-mobile__link.btn_wa {
    background-color: #19D66B;
}

.social-mobile__link.btn_tg {
    background-color: #0088cc;
}

.social-mobile__link.btn_ph {
    background-color: #E11D48;
}

.social-mobile__link.btn_ln {
    background-color: #06C755;
}

/*----------------------- Hamburger ---------------------*/

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px 0;
    background: #64FFDA;
    transition: all .3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0A192F;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 15px 80px;
}

.terminal-hero {
    max-width: 780px;
    margin-bottom: 48px;
}

.terminal-hero .terminal-body {
    padding: 32px;
}

.hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    font-weight: 400;
    color: #8892B0;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #CCD6F6;
    margin-bottom: 8px;
    display: inline;
}

.hero-desc {
    font-size: 1rem;
    color: #8892B0;
    margin: 20px 0 32px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 48px;
    padding: 24px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .1);
    border-radius: 8px;
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
}

.hero-stat {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
    .hero-stat {
        width: 100%;
    }
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: #64FFDA;
}

.hero-stat-label {
    display: block;
    font-size: .75rem;
    color: #546e7a;
    width: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: #64FFDA;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* --- Page Hero --- */

.page-hero {
    background: #0A192F;
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(100, 255, 218, .08);
}

.page-hero .hero-tag {
    font-size: .8rem;
    color: #8892B0;
    margin-bottom: 16px;
}

.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #CCD6F6;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1rem;
    color: #8892B0;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs-wrap {
    padding: 10px 15px;
}

.breadcrumbs {
    list-style: none;
    color: #CCD6F6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0;
}

.breadcrumbs li {
    position: relative;
    padding: 0;
}

.breadcrumbs li:not(:last-child) {
    margin-right: 25px;
}

.breadcrumbs li:first-child {
    padding-left: 0;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    position: absolute;
    top: 0;
    right: -15px;
}

.breadcrumbs li a {
    color: #64FFDA;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section.custom-padding {
    padding: 50px 0;
}

.section-models {
    padding: 100px 0 0 0;
}

.section-models.custom-padding {
    padding: 50px 0;
}

.section-dark {
    background: #0A192F;
    color: #CCD6F6;
}

.section:not(.section-dark):not(.section-cta-banner) {
    background: #112240;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-models__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-editorial {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    font-weight: 400;
    color: #546e7a;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    color: #CCD6F6;
}

.section-title-editorial {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    color: #CCD6F6;
}

.page-hero__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    color: #CCD6F6;
}

.section-desc {
    font-size: .95rem;
    color: #8892B0;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Models Grid (IDE Tab Style) --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.model-card {
    border-radius: 8px;
    overflow: hidden;
    background: #0A192F;
    border: 1px solid rgba(100, 255, 218, .1);
    transition: all .35s;
}

.model-card:hover {
    border-color: #64FFDA;
    box-shadow: 0 0 30px rgba(100, 255, 218, .08);
    transform: translateY(-4px);
}

.model-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.model-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    filter: grayscale(20%);
}

.model-card:hover .model-img img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.model-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.model-cat {
    background: #64FFDA;
    color: #0A192F;
    padding: 4px 14px;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-info {
    padding: 0;
}

.model-tab-bar {
    display: flex;
    background: rgba(100, 255, 218, .05);
    border-bottom: 1px solid rgba(100, 255, 218, .1);
    border-top: 1px solid rgba(100, 255, 218, .1);
}

.model-tab {
    padding: 8px 16px;
    font-family: 'Space Mono', monospace;
    font-size: .7rem;
    color: #8892B0;
    border-right: 1px solid rgba(100, 255, 218, .1);
}

.model-tab.active {
    color: #CCD6F6;
    background: #0A192F;
}

.model-info h3 {
    font-size: .95rem;
    margin: 12px 16px 4px;
    color: #E6F1FF;
}

.model-meta {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
    padding: 0 16px 14px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .08);
    transition: all .3s;
}

.service-card:hover {
    border-color: #64FFDA;
    box-shadow: 0 0 24px rgba(100, 255, 218, .06);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(100, 255, 218, .08);
    color: #64FFDA;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 218, .15);
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #E6F1FF;
}

.service-card p {
    font-size: .9rem;
    color: #8892B0;
    line-height: 1.7;
}

/* --- Services Detail (JSON Display) --- */
.json-display {
    margin-bottom: 60px;
}

.json-body {
    overflow-x: auto;
}

.json-pre {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    line-height: 1.8;
    color: #CCD6F6;
    white-space: pre;
}

.json-key {
    color: #82aaff;
}

.json-string {
    color: #c3e88d;
}

.json-number {
    color: #f78c6c;
}

.json-boolean {
    color: #c792ea;
}

.json-brace {
    color: #89ddff;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-card {
    display: flex;
    gap: 32px;
    padding: 32px;
    border-radius: 8px;
    background: #0A192F;
    border: 1px solid rgba(100, 255, 218, .1);
    transition: all .3s;
}

.service-detail-card:hover {
    border-color: #64FFDA;
    box-shadow: 0 0 24px rgba(100, 255, 218, .06);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(100, 255, 218, .08);
    border: 1px solid rgba(100, 255, 218, .15);
    color: #64FFDA;
    font-size: 1.4rem;
}

.service-detail-content h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #E6F1FF;
}

.service-detail-content h2 .code-comment {
    color: #546e7a;
}

.service-detail-content p {
    color: #8892B0;
    margin-bottom: 16px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-features li {
    font-size: .85rem;
    color: #CCD6F6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: #64FFDA;
    font-size: .7rem;
}

/* --- Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 28px 16px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .08);
    border-radius: 8px;
    transition: all .3s;
}

.process-step:hover {
    border-color: #64FFDA;
}

.process-num {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #64FFDA;
    opacity: .5;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #E6F1FF;
}

.process-step p {
    font-size: .85rem;
    color: #8892B0;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: 8px;
    background: #0A192F;
    border: 1px solid rgba(100, 255, 218, .1);
    transition: all .3s;
}

.testimonial-card:hover {
    border-color: #64FFDA;
    box-shadow: 0 0 24px rgba(100, 255, 218, .06);
}

.testimonial-stars {
    color: #64FFDA;
    margin-bottom: 16px;
    font-size: .8rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .9rem;
    color: #8892B0;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(100, 255, 218, .2);
}

.testimonial-author strong {
    display: block;
    font-size: .85rem;
    color: #E6F1FF;
    font-family: 'Space Mono', monospace;
}

.testimonial-author span {
    font-size: .75rem;
    color: #8892B0;
}

/* --- CTA Banner --- */
.section-cta-banner {
    background: #0A192F;
    padding: 80px 0;
}

.cta-banner {
    text-align: center;
    padding: 48px 40px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .12);
}

.cta-banner .terminal-titlebar {
    margin: -48px -40px 32px;
    border-radius: 8px 8px 0 0;
}

.cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #CCD6F6;
    margin-bottom: 16px;
}

.cta-banner p {
    color: #8892B0;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: .95rem;
}

/* --- About Story --- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-story-img img {
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, .1);
}

.about-story-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #E6F1FF;
}

.about-story-content p {
    color: #8892B0;
    margin-bottom: 16px;
}

/* --- Stats (Circular Gauges) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .08);
    transition: all .3s;
}

.stat-card:hover {
    border-color: #64FFDA;
}

.stat-gauge {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.stat-gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #64FFDA;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
}

.gauge-bg {
    fill: none;
    stroke: rgba(100, 255, 218, .08);
    stroke-width: 6;
}

.gauge-fill {
    fill: none;
    stroke: #64FFDA;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease-out;
}

.stat-circle .stat-num,
.stat-gauge .stat-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #64FFDA;
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
    margin-top: 8px;
}

/* --- Values --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .08);
    transition: all .3s;
}

.value-card.dark-bg {
    background: #0A192F;
}

.value-card:hover {
    border-color: #64FFDA;
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(100, 255, 218, .08);
    border: 1px solid rgba(100, 255, 218, .15);
    color: #64FFDA;
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #E6F1FF;
}

.value-card p {
    font-size: .85rem;
    color: #8892B0;
}

/* --- Pricing (Terminal Windows) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    transition: all .3s;
}

.pricing-card:hover {
    box-shadow: 0 0 30px rgba(100, 255, 218, .08);
}

.pricing-card .terminal-body {
    padding: 32px;
}

.pricing-featured {
    border-color: #64FFDA !important;
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: 44px;
    right: 16px;
    background: #64FFDA;
    color: #0A192F;
    padding: 4px 14px;
    border-radius: 2px;
    font-size: .7rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(100, 255, 218, .1);
}

.pricing-header h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #E6F1FF;
}

.pricing-desc {
    font-size: .85rem;
    color: #8892B0;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.pricing-currency {
    font-size: .85rem;
    color: #8892B0;
    vertical-align: super;
    font-family: 'Space Mono', monospace;
}

.pricing-amount {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #CCD6F6;
}

.pricing-featured .pricing-amount {
    color: #64FFDA;
}

.pricing-period {
    font-size: .8rem;
    color: #8892B0;
    margin-top: 4px;
    font-family: 'Space Mono', monospace;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: .85rem;
    color: #CCD6F6;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(100, 255, 218, .06);
    font-family: 'Space Mono', monospace;
}

.pricing-features li .code-comment {
    color: #64FFDA;
    font-size: .8rem;
}

/* --- Custom Pricing --- */
.custom-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.custom-item {
    padding: 28px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .08);
    transition: all .3s;
}

.custom-item:hover {
    border-color: #64FFDA;
}

.custom-item h3 {
    font-size: .95rem;
    margin-bottom: 12px;
    color: #E6F1FF;
}

.custom-item p {
    font-size: .85rem;
    color: #8892B0;
}

/* --- Events --- */
.events-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.events-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid rgba(100, 255, 218, .15);
    background: #112240;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    font-weight: 400;
    cursor: pointer;
    transition: all .25s;
    color: #8892B0;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(100, 255, 218, .08);
    color: #64FFDA;
    border-color: #64FFDA;
}

.events-month-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.month-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(100, 255, 218, .15);
    background: #112240;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    color: #CCD6F6;
}

.month-nav-btn:hover {
    background: rgba(100, 255, 218, .08);
    color: #64FFDA;
    border-color: #64FFDA;
}

.month-nav-label {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: .9rem;
    min-width: 160px;
    text-align: center;
    color: #CCD6F6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    border-radius: 8px;
    overflow: hidden;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, .08);
    cursor: pointer;
    transition: all .35s;
}

.event-card:hover {
    border-color: #64FFDA;
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(100, 255, 218, .06);
}

.event-img {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    filter: grayscale(20%);
}

.event-card:hover .event-img img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0A192F;
    color: #64FFDA;
    padding: 8px 14px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Space Mono', monospace;
    line-height: 1.2;
    border: 1px solid rgba(100, 255, 218, .15);
}

.event-date-badge .day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.event-date-badge .month {
    display: block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CCD6F6;
}

.event-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #64FFDA;
    color: #0A192F;
    padding: 4px 12px;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.event-info {
    padding: 18px;
}

.event-info h3 {
    font-size: .95rem;
    margin-bottom: 8px;
    color: #E6F1FF;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.events-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #8892B0;
    font-size: .9rem;
    font-family: 'Space Mono', monospace;
}

.events-empty {
    text-align: center;
    padding: 60px 20px;
    color: #8892B0;
}

.events-empty i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    color: #546e7a;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, .9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #112240;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, .15);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(100, 255, 218, .15);
    background: #0A192F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #CCD6F6;
    z-index: 10;
    transition: all .25s;
}

.modal-close:hover {
    border-color: #64FFDA;
    color: #64FFDA;
}

.modal-body img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.modal-content {
    padding: 28px;
}

.modal-content h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #E6F1FF;
}

.modal-content .event-meta {
    margin-bottom: 20px;
}

.modal-content p {
    color: #8892B0;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: .9rem;
}

.modal-content .modal-talent {
    color: #64FFDA;
    font-weight: 700;
    font-size: .85rem;
    font-family: 'Space Mono', monospace;
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid #64FFDA;
    border-radius: 8px;
    overflow: hidden;
    background: #0A192F;
    transition: all .3s;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    font-weight: 400;
    color: #CCD6F6;
    text-align: left;
    gap: 16px;
    transition: all .25s;
}

.faq-question:hover {
    color: #64FFDA;
    background: rgba(100, 255, 218, .03);
}

.faq-icon {
    color: #64FFDA;
    transition: transform .3s;
    font-size: .8rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #8892B0;
    line-height: 1.8;
    font-size: .9rem;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
}

.contact-form-wrap .terminal-window {
    margin-bottom: 0;
}

.contact-form-wrap h2 {
    font-size: 1.2rem;
    margin-bottom: 28px;
    color: #E6F1FF;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: #CCD6F6;
}

.form-group input:not([type='checkbox']),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(100, 255, 218, .15);
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .9rem;
    color: #CCD6F6;
    background: #0A192F;
    transition: all .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64FFDA;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, .1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #546e7a;
}

.form-group select {
    appearance: auto;
}

.form-group select option {
    background: #0A192F;
    color: #CCD6F6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #64FFDA;
}

.form-check label {
    font-size: .8rem;
    color: #8892B0;
    font-weight: 400;
    font-family: 'IBM Plex Sans', sans-serif;
}

.form-check label a {
    color: #64FFDA;
    font-weight: 600;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 3rem;
    color: #64FFDA;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #E6F1FF;
}

.form-success p {
    color: #8892B0;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    overflow: hidden;
}

.contact-info-card .terminal-body h3 {
    font-size: .95rem;
    margin-bottom: 20px;
    color: #E6F1FF;
}

.contact-info-card .terminal-body ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card .terminal-body li {
    display: flex;
    gap: 14px;
}

.contact-info-card .terminal-body li i {
    color: #64FFDA;
    font-size: .9rem;
    margin-top: 4px;
}

.contact-info-card .terminal-body li strong {
    display: block;
    font-size: .8rem;
    margin-bottom: 2px;
    color: #CCD6F6;
    font-family: 'Space Mono', monospace;
}

.contact-info-card .terminal-body li p {
    font-size: .85rem;
    color: #8892B0;
}

.contact-info-card .terminal-body li a {
    color: #8892B0;
    transition: color .25s;
}

.contact-info-card .terminal-body li a:hover {
    color: #64FFDA;
}

.contact-social {
    display: flex;
    gap: 10px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #0A192F;
    border: 1px solid rgba(100, 255, 218, .15);
    color: #64FFDA;
    font-size: .95rem;
    transition: all .25s;
}

.contact-social a:hover {
    background: #64FFDA;
    color: #0A192F;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, .1);
}

/* --- Legal Content --- */
.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #E6F1FF;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #CCD6F6;
}

.legal-content p {
    color: #8892B0;
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    color: #8892B0;
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.legal-content a {
    color: #64FFDA;
    font-weight: 500;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: .85rem;
    font-family: 'Space Mono', monospace;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(100, 255, 218, .08);
}

.legal-table th {
    background: rgba(100, 255, 218, .05);
    font-weight: 700;
    color: #CCD6F6;
}

.legal-table td {
    color: #8892B0;
}

/* --- 404 --- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A192F;
    text-align: center;
    position: relative;
    z-index: 1;
}

.terminal-404 {
    max-width: 560px;
    width: 100%;
}

.terminal-404 .terminal-body {
    padding: 48px 40px;
}

.error-code {
    font-family: 'Space Mono', monospace;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: #CCD6F6;
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h1 {
    font-size: 1.4rem;
    color: #E6F1FF;
    margin-bottom: 16px;
}

.error-content .code-comment {
    display: block;
    font-size: .85rem;
    color: #546e7a;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.error-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- Pagination --- */

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 60px 0 20px 0;
    margin: 0 0;
}

.pagination__link {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-weight: 500;
    color: #64FFDA;
    font-size: 16px;
    text-align: center;
    line-height: 1.3;
    border-radius: 4px;
    border: 1px solid #64FFDA;
    background-color: transparent;
    padding: 10px 10px;
    transition: all .3s ease;
}

.pagination__link.active,
.pagination__link:hover {
    text-decoration: none;
    color: #0A192F;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

.cta-diagonal {
    text-align: center;
    padding: 100px 0;
}

.cta-diagonal__text {
    text-align: center;
    margin: 0 0 20px 0;
}

/* ============================================
   Seo-articles
   ============================================ */

.seo-section {
    border-bottom: 1px solid rgba(100, 255, 218, .08);
}

.seo-articles h1 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles h3 {
    font-size: clamp(20px, 3.2vw, 28px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles p {
    color: #CCD6F6;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- Footer --- */

.footer {
    background: #0A192F;
    color: #8892B0;
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(100, 255, 218, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(100, 255, 218, .06);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 150px;
    max-width: 100%;
}

.footer-about {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(100, 255, 218, .15);
    color: #8892B0;
    font-size: .85rem;
    transition: all .25s;
}

.footer-social a:hover {
    border-color: #64FFDA;
    color: #64FFDA;
    background: rgba(100, 255, 218, .05);
}

.footer h4 {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    color: #CCD6F6;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    font-size: .85rem;
}

.footer-col li a {
    transition: color .25s;
}

.footer-col li a:hover {
    color: #64FFDA;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: .8rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: #64FFDA;
    margin-top: 4px;
    font-size: .75rem;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .75rem;
    font-family: 'Space Mono', monospace;
    overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    .models-grid,
    .services-grid,
    .testimonials-grid,
    .pricing-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .team-grid,
    .values-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .custom-pricing {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-featured {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0A192F;
        border-left: 1px solid rgba(100, 255, 218, .1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px;
        gap: 4px;
        transition: right .35s;
    }

    .nav-menu.active {
        max-height: 100vh;
        overflow-y: auto;
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: .85rem;
    }
}

@media (max-width: 768px) {

    .models-grid,
    .services-grid,
    .testimonials-grid,
    .pricing-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 20px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-stats {
        gap: 24px;
        flex-direction: column;
    }

    .events-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner .terminal-titlebar {
        margin: -48px -40px 24px;
    }

    .terminal-hero .terminal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-content {
        padding: 100px 15px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .error-btns {
        flex-direction: column;
    }

    .cta-banner {
        padding: 48px 20px;
    }

    .cta-banner .terminal-titlebar {
        margin: -48px -20px 24px;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Particle --- */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #64FFDA;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: .5;
    }

    90% {
        opacity: .05;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* --- Progress bar stat variant --- */
.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(100, 255, 218, .08);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    background: #64FFDA;
    border-radius: 2px;
    transition: width 2s ease-out;
    width: 0;
}

/* ============================================
   Dating Extensions — Models Grid
   ============================================ */

.model-card-xl--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.model-card-xl__params {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-grid-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .3s ease;
}

.model-grid-card:hover {
    transform: translateY(-6px);
    color: inherit;
}

.model-grid-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 0;
}

.model-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.model-grid-card:hover .model-grid-card__image img {
    transform: scale(1.05);
}

.video-label {
    line-height: 1;
    border-radius: 4px;
    background-color: #64FFDA;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    padding: 0 8px;
}

.video-label svg {
    width: 25px;
    stroke: #0A192F;
}

.model-grid-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.model-grid-card:hover .model-grid-card__overlay {
    opacity: 1;
}

.model-grid-card__view {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 24px;
    border: 1px solid #fff;
}

.model-grid-card__info {
    padding: 16px 0;
}

.model-grid-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 4px;
}

/* --------- online indicator animation --------- */

.status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #ababab;
}

.status--online {
    background: #2ecc71;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.status--pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: statusPulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* --------- online indicator animation /-------- */

.model-grid-card__spec {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.model-grid-card__params {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 6px;
}

.model-grid-card__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray);
}

/* ============================================
   Page navigation
   ============================================ */

.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .page-navigation {
        position: sticky;
        top: 85px;
        z-index: 20;
    }
}

.page-nav-button {
    width: 50%;
    max-width: 190px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #64FFDA;
    line-height: 1.2;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #64FFDA;
    background-color: #112240;
    position: relative;
    padding: 14px 36px;
    transition: all .3s ease;
}

.page-nav-button:hover {
    text-decoration: none;
    background-color: #64FFDA;
    color: #0A192F;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

.page-nav-button.button-prev {
    margin-right: 1px;
}

.page-nav-button.button-prev::before {
    content: '';
    display: inline-block;
    border-top: 2px solid #64FFDA;
    border-left: 2px solid #64FFDA;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%) rotate(320deg);
    transition: border-color .3s ease;
}

.page-nav-button.button-next {
    margin-left: 1px;
}

.page-nav-button.button-next::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #64FFDA;
    border-left: 2px solid #64FFDA;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(132deg);
    transition: border-color .3s ease;
}

.page-nav-button:hover::before,
.page-nav-button:hover::after {
    border-top: 2px solid #0A192F;
    border-left: 2px solid #0A192F;
}

.page-nav-name {
    position: relative;
    z-index: 10;
}

/* ---------- animation page-navigation ----------- */

.next-timer {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    font-size: 12px;
    color: #2b4778;
    opacity: 0;
    transition: opacity 0.2s;
    transform: translateY(-50%);
}

.button-next.progress-run .next-timer {
    opacity: 1;
}

.button-next .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgb(193 225 200 / 50%);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.button-next.progress-run .progress {
    animation: fillProgress 20s linear forwards;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ---------- animation page-navigation /---------- */

/* ============================================
   Dating Extensions — Model Profile
   ============================================ */

.model-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.model-profile__details {
    min-width: 0;
}

.model-profile__name-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0 0 15px 0;
}

.model-profile__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.single-social__link {
    width: 42px;
    height: 42px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 10px 10px;
    transition: all .3s ease;
}

.single-social__link.btn_wa {
    background-color: #19D66B;
}

.single-social__link.btn_tg {
    background-color: #0088cc;
}

.single-social__link.btn_ph {
    background-color: #E11D48;
}

.single-social__link.btn_ln {
    background-color: #06C755;
}

.single-social__link:hover {
    box-shadow:
        0 0 5px rgba(100, 255, 218, 0.4),
        0 0 10px rgba(100, 255, 218, 0.3),
        0 0 20px rgba(100, 255, 218, 0.2);
}

.single-social__link .fa-brands,
.single-social__link .fab,
.single-social__link .fa {
    font-size: 20px;
}

/*------------------- Social animation ------------------- */

.social-button--neon.neon-active[data-attr="link_whatsapp"] {
    animation: neon-flicker-green 0.25s ease-in-out 6 alternate;
}

.social-button--neon.neon-active[data-attr="link_telegram"] {
    animation: neon-flicker-blue 0.25s ease-in-out 0.15s 6 alternate;
}

.social-button--neon.neon-active[data-attr="link_line"] {
    animation: neon-flicker-line 0.25s ease-in-out 0.3s 6 alternate;
}

.social-button--neon.neon-active[data-attr="link_mobile"] {
    animation: neon-flicker-red 0.25s ease-in-out 0.45s 6 alternate;
}

@keyframes neon-flicker-green {
    0% {
        box-shadow: none;
    }

    100% {
        box-shadow: 0 0 20px #25D366, inset 0 0 10px #25D366;
        border-color: #25D366;
    }
}

@keyframes neon-flicker-blue {
    0% {
        box-shadow: none;
    }

    100% {
        box-shadow: 0 0 20px #0088cc, inset 0 0 10px #0088cc;
        border-color: #0088cc;
    }
}

@keyframes neon-flicker-line {
    0% {
        box-shadow: none;
    }

    100% {
        box-shadow: 0 0 20px #06C755, inset 0 0 10px #06C755;
        border-color: #06C755;
    }
}

@keyframes neon-flicker-red {
    0% {
        box-shadow: none;
    }

    100% {
        box-shadow: 0 0 20px #cb2845, inset 0 0 10px #cb2845;
        border-color: #cb2845;
    }
}

/*------------------- Social animation ------------------- */

.model-profile__specialty {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 24px;
}

.model-profile__bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.model-profile__section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--subtle);
}

/* Parameters Grid */
.model-profile__params {
    margin-bottom: 40px;
}

.model-profile__params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.model-profile__param {
    text-align: center;
    padding: 16px 8px;
    background: var(--cream);
}

.model-profile__param-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 6px;
}

.model-profile__param-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
}

/* Services & Pricing */
.model-profile__services {
    margin-bottom: 40px;
}

.model-profile__services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 20px 0;
}

.model-profile__service-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
}

.model-profile__service-row:not(:last-child) {
    border-bottom: 1px solid #19394f;
}

.model-profile__service-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.model-profile__service-line {
    flex: 1;
    border-bottom: 1px dotted var(--gray-light);
    min-width: 40px;
}

.model-profile__service-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.model-profile__rates-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
}

.model-profile__rates-row:not(:last-child) {
    border-bottom: 1px solid #19394f;
}

#form-container .card-title {
    margin: 0 0 10px 0;
}

#form-container .btn-block {
    width: 100%;
    color: #0A192F;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    transition: all .3s ease;
}

#form-container .btn-block:hover {
    color: #64FFDA;
    background-color: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/* CTA */

.model-profile__cta {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.model-profile__cta .btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .model-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .model-profile__params-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-profile__cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === Models Carousel & Cards (from d001) === */

.models-hscroll {
    overflow: hidden;
    cursor: grab;
    position: relative;
    padding: 0 0 20px;
}

.models-hscroll:active {
    cursor: grabbing;
}

.custom-padding .models-hscroll {
    padding: 0 0;
}

.models-hscroll__track {
    display: flex;
    gap: 30px;
    padding: 0 80px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.model-card-xl {
    flex-shrink: 0;
    width: 320px;
    position: relative;
}

.model-card-xl__image {
    width: 100%;
    aspect-ratio: 3/4.2;
    overflow: hidden;
    position: relative;
}

.model-card-xl__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    filter: grayscale(20%);
}

.model-card-xl:hover .model-card-xl__image img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.model-card-xl__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.model-card-xl__name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 4px;
}

.model-card-xl__spec {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.models-hscroll__track {
    padding: 0 50px;
}

.model-card-xl {
    width: 280px;
}

.models-hscroll__track {
    padding: 0 30px;
    gap: 20px;
}

.model-card-xl {
    width: 260px;
}

.models-hscroll__track {
    padding: 0 20px;
}

.model-card-xl {
    width: 240px;
}

.model-card-xl--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.model-card-xl__params {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, border-color 0.2s;
        mix-blend-mode: difference;
    }

    .custom-cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
    }

    .custom-cursor.cursor-hover {
        width: 60px;
        height: 60px;
        border-color: var(--white);
    }
}

@media (max-width: 1200px) {
    .hero-split__left {
        padding: 120px 40px 80px 50px;
    }

    .models-hscroll__track {
        padding: 0 50px;
    }

    .model-card-xl {
        width: 280px;
    }

    .section-stats-editorial__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline__line {
        display: none;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 110px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header-nav-list li {
        width: 100%;
    }

    .header-nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--subtle);
        color: var(--primary) !important;
    }

    .header-nav-list a::after {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Hero Split */
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split__left {
        padding: 140px 30px 60px;
        order: 2;
    }

    .hero-split__right {
        height: 55vh;
        min-height: 400px;
        order: 1;
    }

    .hero-split__image-wrap {
        clip-path: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-split__title span {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section-models {
        padding: 80px 0 60px;
    }

    .models-hscroll__track {
        padding: 0 30px;
        gap: 20px;
    }

    .model-card-xl {
        width: 260px;
    }

    /* Grids */
    .services-icon-grid {
        grid-template-columns: 1fr;
    }

    .section-stats-editorial__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-editorial {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-editorial {
        grid-template-columns: 1fr;
    }

    .team-editorial {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .events-masonry {
        columns: 2;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero-minimal {
        padding: 130px 0 60px;
    }

    .page-hero-bleed {
        height: 50vh;
        min-height: 400px;
    }

    .cta-diagonal {
        padding: 100px 0;
    }

    .pricing-table__feature-head {
        position: static;
    }

    .pricing-table__feature {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-split__left {
        padding: 130px 20px 50px;
    }

    .hero-split__title span {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero-split__right {
        height: 45vh;
        min-height: 320px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header-editorial {
        margin-bottom: 50px;
    }

    .section-stats-editorial {
        padding: 70px 0;
    }

    .section-stats-editorial__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-editorial__number {
        font-size: 3rem;
    }

    .models-hscroll__track {
        padding: 0 20px;
    }

    .model-card-xl {
        width: 240px;
    }

    .events-masonry {
        columns: 1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer-inner {
        padding-left: 0;
    }

    .faq-number {
        display: none;
    }

    .testimonial-slide {
        padding: 0 10px;
    }

    .page-404__number {
        font-size: 8rem;
    }

    .cta-diagonal__bg {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    }

    .contact-info-card {
        padding: 35px 25px;
    }

    .modal-editorial {
        padding: 35px 25px;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ============================================================
   GALLERY SLIDER 
============================================================ */

.gallery {
    width: 100%;
    min-width: 0;
}

.main-slider {
    position: relative;
    overflow: hidden;
}

.main-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.prev::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(314deg);
}

.next {
    right: 10px;
}

.next::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.thumbs {
    overflow: hidden;
    margin-top: 8px;
}

.thumb-track {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.thumb {
    flex: 0 0 calc(25% - 5px);
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.thumb img {
    width: 100%;
    display: block;
}

/* ============================================================
   MODAL LOGIN 
============================================================ */

.login-btn {
    color: #0A192F;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    border: none;
    border-radius: 4px;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.login-btn:hover {
    color: #64FFDA;
    background-color: #0A192F;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    border-radius: 8px;
    background: rgb(17 34 64 / .7);
    border: 1px solid rgba(100, 255, 218, .15);
    padding: 50px 28px 28px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #64FFDA transparent;
}

.modal::-webkit-scrollbar {
    width: 5px;
}

.modal::-webkit-scrollbar-track {
    background: transparent;
}

.modal::-webkit-scrollbar-thumb {
    background-color: rgba(100, 255, 218, 0.3);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease;
}

.modal::-webkit-scrollbar-thumb:hover {
    background-color: #64FFDA;
    box-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.modal-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}

.modal-tab {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 7px;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.modal-tab.active {
    background: #64FFDA;
    color: #0A192F;
}

.modal-tab:not(.active):hover {
    color: rgba(255, 255, 255, 0.75);
}

.modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 24px;
}

.modal-panel {
    display: block;
}

.modal-panel.hidden {
    display: none;
}

.field-group {
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.field-input-wrap {
    position: relative;
}

.field-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.field-input-wrap .field-input {
    padding-right: 42px;
}

.field-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.field-input:focus {
    border-color: #64FFDA;
    background: rgba(232, 93, 38, 0.06);
}

.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
}

.toggle-pass:hover {
    color: rgba(255, 255, 255, 0.7);
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #64FFDA;
    text-decoration: none;
    margin-top: -8px;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}

.forgot-link:hover {
    opacity: 0.75;
}

.submit-btn {
    width: 100%;
    background: #64FFDA;
    color: #0A192F;
    border: none;
    border-radius: 4px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.submit-btn:hover {
    background: #64FFDA;
}

.submit-btn:active {
    transform: scale(0.98);
}

.switch-text {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 16px 0 0;
}

.switch-tab {
    background: none;
    border: none;
    color: #64FFDA;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.switch-tab:hover {
    text-decoration-color: #64FFDA;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: border-color 0.2s, background 0.2s;
}

.checkbox-label input:checked+.checkbox-custom {
    background: #64FFDA;
    border-color: #64FFDA;
}

.checkbox-label input:checked+.checkbox-custom::after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.checkbox-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.checkbox-text a {
    color: #64FFDA;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .modal {
        padding: 50px 18px 22px;
        border-radius: 14px;
    }

    .modal-title {
        font-size: 19px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/*------------------------ blog-pages ---------------------*/

.blog {
    padding: 100px 0;
}

.blog__grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
}

.blog__content {
    min-width: 0;
}

.blog__content-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}

@media screen and (max-width: 992px) {
    .blog__content-cards {
        grid-template-columns: 1fr;
    }
}

.blog__card-image {
    overflow: hidden;
    margin: 0 0 10px 0;
}

.blog__card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: .8;
    transition: transform .3s ease, opacity .3s ease;
}

.blog__card-image:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.blog__card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.blog-author {
    color: #64FFDA;
}

.blog-date {
    color: #546e7a;
}

.blog__card-title {
    font-size: 20px;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 5px 0;
}

@media screen and (max-width: 992px) {
    .blog__card-title {
        min-height: auto;
        margin: 0 0 10px 0;
    }
}

.blog__card-title a {
    font-weight: 700;
    color: var(--text);
    transition: color .3s ease;
}

.blog__card-title a:hover {
    color: #64FFDA;
}

.blog__card-description {
    color: #8892B0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    margin: 0 0 15px 0;
}

.blog__card-more {
    font-weight: 700;
    font-size: 14px;
    color: #64FFDA;
}

.blog__sidebar-item {
    margin: 0 0 30px 0;
}

.blog__sidebar-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 15px 0;
}

.blog__sidebar-list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.blog__sidebar-list-item {
    border-bottom: 1px solid rgba(100, 255, 218, .08);
    padding: 5px 0;
}

.blog__sidebar-list-link {
    font-size: 18px;
    color: #8892B0;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.blog__sidebar-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 0;
    margin: 0 0;
}

.blog__sidebar-tags-link {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #0A192F;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    padding: 5px 15px;
    transition: all .3s ease;
}

.blog__sidebar-tags-link:hover {
    color: #64FFDA;
    background: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/*------------------- blog-post --------------*/

.blog__post {
    margin: 0 0 40px 0;
}

.blog__post-image {
    margin: 0 0 10px 0;
}

.blog__post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog__post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.blog__post-content img {
    margin: 15px 0 15px 0;
}

.blog__post-content h2 {
    font-size: 28px;
    margin: 0 0 15px 0;
}

.blog__post-content h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.blog__post-content p {
    color: #8892B0;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.blog__post-content a {
    color: #64FFDA;
}

.blog__post-content ol {
    padding-left: 15px;
}

.blog__post-content ol li {
    padding: 5px 0;
}

.blog__post-content ul {
    list-style: none;
    padding-left: 15px;
}

.blog__post-content ul li {
    padding: 5px 0;
}

.blog__post-content ul li,
.blog__post-content ul li a {
    color: #546e7a;
}

.blog__post-content blockquote {
    font-style: italic;
    padding: 10px 20px;
    margin: 10px 0 20px 0;
    font-size: 17.5px;
    border-left: 5px solid #546e7a;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.blog__post-content table {
    width: 100%;
    border: 1px solid #546e7a;
    background-color: transparent;
    border-collapse: collapse;
    margin: 15px 0;
}

.blog__post-content table,
.blog__post-content td,
.blog__post-content th {
    border: 1px solid #546e7a;
    border-collapse: collapse;
    padding: 10px 15px;
}

.blog__post-content td,
.blog__post-content th {
    border: 1px solid #546e7a;
    border-collapse: collapse;
    padding: 10px 15px;
}

.articles-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0;
}

.articles-tags__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.articles-tags__item {
    font-weight: 500;
    font-size: 12px;
    color: #0A192F;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    padding: 5px 15px;
    transition: all .3s ease;
}

.articles-tags__item:hover {
    color: #64FFDA;
    background: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/*------------------- blog-comments ----------------*/

.blog__comments-title {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 20px 0;
}

.blog__comments-list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.blog__comments-item {
    border-bottom: 1px solid rgba(100, 255, 218, .08);
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
}

.blog__comments-head {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 0 0 15px 0;
}

.blog__comments-avatar {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.blog__comments-avatar img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog__comments-author {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: var(--text);
    margin: 0 0 5px 0;
}

.blog__comments-date {
    color: #546e7a;
}

.blog__comments-body {
    line-height: 1.4;
    color: #8892B0;
}

.comment-form__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 0 15px 0;
}

@media screen and (max-width: 640px) {
    .comment-form__group {
        grid-template-columns: 1fr;
    }
}

.comment-form__input {
    font-size: 14px;
    color: #fff;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    padding: 15px 15px;
}

.comment-form__textarea {
    width: 100%;
    min-height: 120px;
    font-size: 14px;
    color: #fff;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    resize: vertical;
    padding: 15px 15px;
    margin: 0 0 15px 0;
}

.button-submit {
    font-weight: 600;
    font-size: 15px;
    color: #0A192F;
    border: none;
    border-radius: 4px;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    padding: 15px 15px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all .3s ease;
}

.button-submit:hover {
    color: #64FFDA;
    background-color: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/*--------------------- video -------------------*/

.video-player__main {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    margin-top: 20px;
}

#main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    cursor: pointer;
    margin-top: 0;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.15s;
    pointer-events: none;
    opacity: 1;
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.video-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
    bottom: 48px;
}

/*-------------------- fixed-social -----------------*/

.fixed-social {
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 15px;
    display: none;
}

@media screen and (max-width: 992px) {
    .fixed-social {
        display: flex;
    }
}

.fixed-social__link {
    flex: 1;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    border-radius: 5px;
    transition: all .3s ease;
    padding: 10px 20px;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.4);
}

.fixed-social__link.btn_wa {
    background-color: #25D366;
}

.fixed-social__link.btn_tg {
    background-color: #0088cc;
}

.fixed-social__link svg {
    width: 20px;
    fill: #fff;
}

/*----------------- options-list ------------*/

.options-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 50px 0;
}

.options-list__link {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #64FFDA;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #64FFDA;
    background-color: transparent;
    padding: 7px 20px;
    transition: all .3s ease;
}

.options-list__link:hover {
    text-decoration: none;
    color: #0A192F;
    border: 1px solid #64FFDA;
    background-color: #64FFDA;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/*----------------- options-list /-----------*/
