/*--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 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0A0A0A;
    --surface: #141414;
    --accent: #E85D26;
    --accent-hover: #d14d1a;
    --accent-glow: rgba(232, 93, 38, 0.35);
    --accent-glow-soft: rgba(232, 93, 38, 0.15);
    --text: #E8E8E8;
    --text-muted: #666666;
    --text-dim: #444444;
    --card: #1A1A1A;
    --card-hover: #222222;
    --border: #2A2A2A;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(232, 93, 38, 0.12);
    --font-display: 'Bodoni Moda', 'Georgia', serif;
    --font-body: 'Syne', 'Helvetica Neue', sans-serif;
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.mt-4 {
    margin-top: 3rem;
}

/* ============================================
   ORANGE TOP LINE
   ============================================ */
.orange-top-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 10001;
}

/* ============================================
   GLASS-MORPHISM
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 25px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 3px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all var(--transition);
    background: transparent;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    position: relative;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: auto;
}

.navbar-brand img {
    width: 200px;
    max-width: 100%;
}

.brand-noir {
    color: var(--text);
}

.brand-dot {
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 1;
}

.brand-agency {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
}

.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: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 50px;
    background-color: rgb(0 0 0 / .3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.social-mobile__link.btn_wa {
    border: 2px solid #19D66B;
    color: #19D66B;
}

.social-mobile__link.btn_tg {
    border: 2px solid #0088cc;
    color: #0088cc;
}

.social-mobile__link.btn_ph {
    border: 2px solid #E11D48;
    color: #E11D48;
}

.social-mobile__link.btn_ln {
    border: 2px solid #06C755;
    color: #06C755;
}

.navbar-menu {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 992px) {
    .navbar-menu {
        flex-direction: column;
        align-items: flex-start;
    }
}

.navbar-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width: 992px) {
    .navbar-nav {
        order: 2;
    }
}

.nav-item {
    min-width: 0;
}

@media screen and (max-width: 992px) {
    .nav-item {
        width: 100%;
    }
}

.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 #fff;
    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 var(--accent);
        top: 25px;
        right: 15px;
        transform: translateY(0);
    }
}

.nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 10px;
    transition: color var(--transition);
    position: relative;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    transition: transform var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/*------------------------ mega-menu --------------------*/

.mega-menu {
    width: 160px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
    border: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    scrollbar-width: thin;
    scrollbar-color: var(--accent) 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: var(--accent);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent);
    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;
}

@media screen and (max-width: 992px) {
    .language-block {
        order: 1;
    }
}

.language-block-head {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.82rem;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .3s ease;
}

.language-block-head:hover {
    color: #fff;
}

.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 #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

.language-block-head:hover::after {
    border-top: 4px solid #fff;
}

.language-block-list {
    list-style: none;
    width: 90px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1010;
    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: var(--accent);
}

.language-block-list li a {
    display: block;
    color: #fff;
    text-align: left;
}

/* Hamburger */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 6px;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO — Fullscreen Cinematic
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-img.ken-burns {
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.12) translate(-1.5%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.7) 40%,
            rgba(10, 10, 10, 0.85) 100%);
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.6;
}

.hero-glow-sm {
    width: 300px;
    height: 300px;
    top: 40%;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.hero-scroll a:hover {
    color: var(--accent);
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-text {
    font-size: 12px;
    color: #666666;
    display: inline-block;
    animation: pulse-scroll 2s ease-in-out infinite;
}

@keyframes pulse-scroll {
    0% {
        transform: scale(1);
        color: #666666;
    }

    50% {
        transform: scale(1.25);
        color: #e85d26;
    }

    100% {
        transform: scale(1);
        color: #666666;
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 20px 0;
}

.page-hero-sm {
    min-height: 30vh;
    background: var(--surface);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
}

.page-hero-bg-img.ken-burns {
    animation: kenBurns 25s ease-in-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.8) 0%,
            rgba(10, 10, 10, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs-wrap {
    padding: 10px 15px;
}

.breadcrumbs {
    list-style: none;
    color: #fff;
    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: var(--accent);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--surface);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   Seo-articles
   ============================================ */

.light-border {
    border-bottom: 1px solid var(--glass-border);
}

.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: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================
   MODEL CARDS — Grayscale → Color on Hover
   ============================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.model-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(232, 93, 38, 0.15);
}

.model-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.model-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
    filter: grayscale(100%);
}

.model-card:hover .model-card-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.model-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.model-card:hover .model-card-overlay {
    opacity: 1;
}

.model-card-info {
    padding: 16px 20px;
    background: var(--surface);
}

.model-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.model-card-specialty {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   SERVICES TIMELINE — Vertical with Glowing Orange Line
   ============================================ */
.services-timeline {
    position: relative;
    padding-left: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-glow-soft), var(--accent));
    box-shadow: 0 0 15px var(--accent-glow), 0 0 30px var(--accent-glow-soft);
}

.timeline-service-item {
    position: relative;
    padding-bottom: 48px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.timeline-service-item:last-child {
    padding-bottom: 0;
}

.timeline-service-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-service-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all var(--transition);
}

.timeline-service-item:hover .timeline-service-dot {
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.timeline-service-dot i {
    color: var(--accent);
    font-size: 1rem;
    transition: color var(--transition);
}

.timeline-service-item:hover .timeline-service-dot i {
    color: #fff;
}

.timeline-service-content {
    flex: 1;
    padding-top: 4px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SERVICES GRID (services page cards)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(232, 93, 38, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(232, 93, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 1.3rem;
}

/* ============================================
   SERVICES DETAIL (services.php)
   ============================================ */
.services-detail-grid {
    display: grid;
    gap: 32px;
}

.service-detail-card {
    display: flex;
    gap: 30px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-detail-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(232, 93, 38, 0.08);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: rgba(232, 93, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.service-detail-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-detail-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* ============================================
   PROCESS GRID
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    transition: all var(--transition);
}

.process-step:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(232, 93, 38, 0.1);
}

.process-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   PRICING — Glass-morphism Cards
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 93, 38, 0.3);
}

.pricing-featured {
    border-color: var(--accent) !important;
    box-shadow: 0 0 40px var(--accent-glow-soft), 0 0 80px rgba(232, 93, 38, 0.08);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* ============================================
   PRICING INFO GRID
   ============================================ */
.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-info-card {
    text-align: center;
    padding: 40px 24px;
    transition: all var(--transition);
}

.pricing-info-card:hover {
    border-color: var(--accent);
}

.pricing-info-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.pricing-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pricing-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 40px 30px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(232, 93, 38, 0.3);
    transform: translateY(-3px);
}

.testimonial-quote {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-story-content .section-subtitle {
    text-align: left;
}

.about-story-content .section-title {
    text-align: left;
}

.about-story-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-story-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.about-story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    opacity: 0.3;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: filter var(--transition-slow);
}

.about-story-image:hover img {
    filter: grayscale(0);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   TIMELINE (about page)
   ============================================ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-glow-soft), var(--accent));
    box-shadow: 0 0 15px var(--accent-glow), 0 0 30px var(--accent-glow-soft);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 15px var(--accent-glow);
    z-index: 1;
    margin-left: 12px;
}

.timeline-content {
    padding: 24px 30px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   EVENTS
   ============================================ */
.events-month-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.month-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 500;
}

.month-btn:hover,
.month-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 200px;
}

.events-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.events-loading i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px;
    cursor: pointer;
    transition: all var(--transition);
}

.event-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(232, 93, 38, 0.1);
}

.event-card-category {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(232, 93, 38, 0.15);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.event-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.event-card-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-meta i {
    color: var(--accent);
    width: 14px;
    font-size: 0.75rem;
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.event-card-price {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.event-card-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.event-card:hover .event-card-link {
    color: var(--accent);
}

/* ============================================
   FAQ — Dark Accordion
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.faq-line {
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.faq-line-h {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/*
.faq-line-v {
    width: 2px;
    height: 20px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-line-v {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
*/
.faq-answer {
    /*max-height: 0;*/
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s;
    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    /*max-height: 500px;*/
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   CONTACT — Dark Split
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow-soft);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-check {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.form-check label {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 60px 0;
}

.form-success i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 30px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
    width: 20px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info-item a {
    color: var(--text-muted);
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.contact-social a:hover {
    color: var(--accent);
}

.contact-social a i {
    width: 20px;
    text-align: center;
}

.contact-map {
    padding: 0;
    overflow: hidden;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    position: relative;
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 40px var(--accent-glow);
}

.error-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.error-desc {
    color: var(--text-muted);
    max-width: 450px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table td {
    color: var(--text-muted);
}

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 40px 0;
    margin: 0 0;
}

.pagination__link {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-weight: 500;
    color: var(--text);
    font-size: 16px;
    text-align: center;
    line-height: 1.1;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: transparent;
    padding: 10px 10px;
    transition: all .3s ease;
}

.pagination__link.active,
.pagination__link:hover {
    text-decoration: none;
    color: #fff;
    border: 2px solid var(--accent);
    background: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg);
    padding: 0 0 40px;
    position: relative;
}

.footer-orange-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin-bottom: 60px;
}

.footer-orange-divider-sm {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 93, 38, 0.3), transparent);
    margin: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 200px;
    max-width: 100%;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232, 93, 38, 0.1);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.footer-heading-line {
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
    font-size: 0.85rem;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-5px);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .pricing-info-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transition: right var(--transition);
        padding: 100px 40px 40px;
        z-index: 999;
        border-left: 1px solid var(--border);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-nav {
        width: 100%;
        max-height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1rem;
        padding: 14px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .section {
        padding: 70px 0;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-timeline {
        padding-left: 50px;
    }

    .services-timeline::before {
        left: 18px;
    }

    .timeline-service-marker {
        left: -50px;
    }

    .timeline-service-dot {
        width: 40px;
        height: 40px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .pricing-info-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 30px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}


/* ============================================
   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-dating {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-grid-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--transition);
}

.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 var(--transition-slow);
}

.model-grid-card:hover .model-grid-card__image img {
    transform: scale(1.05);
}

.video-label {
    line-height: 1;
    border-radius: 20px;
    background-color: #e85d26;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
    padding: 0 8px;
}

.video-label svg {
    width: 25px;
    stroke: #fff;
}

.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 var(--transition);
}

.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;
    }
}

/* ----------------- Sale animation -------------- */

.label-sale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    border: 2px solid #e85d26;
    background: linear-gradient(180deg, rgba(232, 93, 38, .26) 0%, rgba(232, 93, 38, .08) 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 6px rgba(232, 93, 38, .85), 0 0 14px rgba(232, 93, 38, .45);
    box-shadow: 0 0 10px rgba(232, 93, 38, .45), 0 0 24px rgba(232, 93, 38, .18), inset 0 0 12px rgba(232, 93, 38, .14);
    backdrop-filter: blur(6px);
    animation: labelPulse .9s ease-in-out infinite;
    margin-left: auto;
    transform-origin: center;
}

@keyframes labelPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(232, 93, 38, .35), 0 0 18px rgba(232, 93, 38, .12), inset 0 0 10px rgba(232, 93, 38, .10);
        text-shadow: 0 0 6px rgba(232, 93, 38, .65);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 14px rgba(232, 93, 38, .95), 0 0 34px rgba(232, 93, 38, .55), 0 0 54px rgba(232, 93, 38, .28), inset 0 0 16px rgba(232, 93, 38, .18);
        text-shadow: 0 0 10px rgba(232, 93, 38, 1), 0 0 24px rgba(232, 93, 38, .75);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(232, 93, 38, .35), 0 0 18px rgba(232, 93, 38, .12), inset 0 0 10px rgba(232, 93, 38, .10);
        text-shadow: 0 0 6px rgba(232, 93, 38, .65);
    }
}

.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;
}

.page-nav-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 50px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f06d39 0%, #e85d26 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.22, 1, .36, 1), background .35s ease;
    box-shadow: 0 10px 30px rgba(232, 93, 38, .35), 0 4px 12px rgba(232, 93, 38, .22), inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .18);
}

.page-nav-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.page-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(232, 93, 38, .45), 0 6px 18px rgba(232, 93, 38, .28), inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(0, 0, 0, .2);
}

.page-nav-button:active {
    transform: translateY(1px) scale(.98);
}

.page-nav-name {
    position: relative;
    z-index: 10;
}

.page-nav-button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.page-nav-button:hover .premium-btn__arrow-prev {
    transform: translateX(-4px);
}

.page-nav-button:hover .premium-btn__arrow-next {
    transform: translateX(4px);
}

/* ---------- animation page-navigation ----------- */

.next-timer {
    position: absolute;
    top: 5px;
    left: 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 10;
}

.next-timer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .18);
    filter: blur(1px);
}

.button-next.progress-run .next-timer {
    opacity: 1;
}

.button-next .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgb(82 255 117 / 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;
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 5px;
    margin: 0 0 15px 0;
}

@media screen and (max-width: 992px) {
    .single-social {
        display: none;
    }
}

.single-social__link {
    min-width: 150px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2.5px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 10px 15px;
    transition: all .3s ease;
    margin: 0 0 15px 0;
}

.single-social__link:hover {
    transform: translateY(-2px);
}

.single-social__link.btn_wa {
    color: #25D366;
    background-color: transparent;
    border: 1px solid #25D366;
}

.single-social__link.btn_wa svg {
    fill: #25D366;
}

.single-social__link.btn_wa:hover {
    color: #fff;
    background-color: #25D366;
}

.single-social__link.btn_tg {
    color: #0088cc;
    background-color: transparent;
    border: 1px solid #0088cc;
}

.single-social__link.btn_tg svg {
    fill: #0088cc;
}

.single-social__link.btn_tg:hover {
    color: #fff;
    background-color: #0088cc;
}

.single-social__link.btn_ph {
    color: #cb2845;
    background-color: transparent;
    border: 1px solid #cb2845;
}

.single-social__link.btn_ph svg {
    fill: #cb2845;
}

.single-social__link.btn_ph:hover {
    color: #fff;
    background-color: #cb2845;
}

.single-social__link.btn_ln {
    color: #00B900;
    background-color: transparent;
    border: 1px solid #00B900;
}

.single-social__link.btn_ln svg {
    fill: #00B900;
}

.single-social__link.btn_ln:hover {
    color: #fff;
    background-color: #00B900;
}

.single-social__link svg {
    transition: fill .3s ease;
}

.single-social__link:hover svg {
    fill: #fff;
}

/*------------------- 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_mobile"] {
    animation: neon-flicker-red 0.25s ease-in-out 0.3s 6 alternate;
}

.social-button--neon.neon-active[data-attr="link_line"] {
    animation: neon-flicker-line 0.25s ease-in-out 0.45s 6 alternate;
}

@keyframes neon-flicker-green {
    0% {
        box-shadow: none;
        border-color: #25D366;
        color: #25D366;
    }

    100% {
        box-shadow: 0 0 20px #25D366, inset 0 0 10px #25D366;
        border-color: #25D366;
        color: #25D366;
    }
}

@keyframes neon-flicker-blue {
    0% {
        box-shadow: none;
        border-color: #0088cc;
        color: #0088cc;
    }

    100% {
        box-shadow: 0 0 20px #0088cc, inset 0 0 10px #0088cc;
        border-color: #0088cc;
        color: #0088cc;
    }
}

@keyframes neon-flicker-red {
    0% {
        box-shadow: none;
        border-color: #cb2845;
        color: #cb2845;
    }

    100% {
        box-shadow: 0 0 20px #cb2845, inset 0 0 10px #cb2845;
        border-color: #cb2845;
        color: #cb2845;
    }
}

@keyframes neon-flicker-line {
    0% {
        box-shadow: none;
        border-color: #00B900;
        color: #00B900;
    }

    100% {
        box-shadow: 0 0 20px #00B900, inset 0 0 10px #00B900;
        border-color: #00B900;
        color: #00B900;
    }
}

/*------------------- Social animation ------------------- */

.model-profile__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 8px;
}

.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 30px 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 #666666;
}

.model-profile__service-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    white-space: nowrap;
}

.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 #666666;
}

.model-profile__rates-in {
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
}

.profile-sale-value {
    font-weight: 700;
    color: #ff0000;
    white-space: nowrap;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-old-value {
    font-size: 13px;
    color: #666666;
    text-decoration: line-through;
}

.model-profile__rates-out {
    font-size: 0.9rem;
    color: var(--text);
}

/* CTA */
.model-profile__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .models-grid-dating {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .models-grid-dating {
        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-dating {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === Models Carousel & Cards (from d001) === */

.models-hscroll {
    overflow: hidden;
    position: relative;
    padding: 0 0 20px;
}

.models-hscroll__track {
    display: flex;
    gap: 30px;
    padding: 0 80px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.models-hscroll img {
    pointer-events: none;
    user-select: none;
}

@media (pointer: fine) {
    .models-hscroll {
        cursor: grab;
    }

    .models-hscroll.dragging {
        cursor: grabbing;
    }
}

.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: 768px) {
    .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;
    }

    /* 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;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ============================================================
   GALLERY SLIDER 
============================================================ */

.gallery {
    width: 100%;
    min-width: 0;
}

.main-slider {
    position: relative;
    overflow: hidden;
    transition: height 0.35s;
}

.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 {
    background: #e85d26;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.login-btn:hover {
    background: #cf4e1e;
}

.login-btn:active {
    transform: scale(0.97);
}

.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 {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px 28px 28px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s;
}

.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: #e85d26;
    color: #fff;
}

.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: #e85d26;
    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: #e85d26;
    text-decoration: none;
    margin-top: -8px;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}

.forgot-link:hover {
    opacity: 0.75;
}

.submit-btn {
    width: 100%;
    background: #e85d26;
    color: #fff;
    border: none;
    border-radius: 10px;
    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: #cf4e1e;
}

.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: #e85d26;
    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: #e85d26;
}

.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: #e85d26;
    border-color: #e85d26;
}

.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: #e85d26;
    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: var(--accent);
}

.blog-date {
    color: var(--text-muted);
}

.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: var(--accent);
}

.blog__card-description {
    color: var(--text-muted);
    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: var(--accent);
}

.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 {
    padding: 5px 0;
    border-bottom: 1px solid var(--glass-border);
}

.blog__sidebar-list-link {
    font-size: 18px;
    color: var(--text-muted);
    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: 7px 5px;
    padding: 0 0;
    margin: 0 0;
}

.blog__sidebar-tags-link {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    border-radius: 20px;
    background-color: #e85d26;
    padding: 7px 20px;
    transition: background-color .3s ease;
}

.blog__sidebar-tags-link:hover {
    background-color: #cf4e1e;
}

/*------------------- 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: var(--text-muted);
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.blog__post-content a {
    color: var(--accent);
}

.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: var(--text);
}

.blog__post-content blockquote {
    font-style: italic;
    padding: 10px 20px;
    margin: 10px 0 20px 0;
    font-size: 17.5px;
    border-left: 5px solid var(--glass-border);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.blog__post-content table {
    width: 100%;
    border: 1px solid var(--glass-border);
    background-color: transparent;
    border-collapse: collapse;
    margin: 15px 0;
}

.blog__post-content table,
.blog__post-content td,
.blog__post-content th {
    border: 1px solid var(--glass-border);
    border-collapse: collapse;
    padding: 10px 15px;
}

.blog__post-content td,
.blog__post-content th {
    border: 1px solid var(--glass-border);
    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: #fff;
    white-space: nowrap;
    border-radius: 20px;
    background-color: #e85d26;
    padding: 5px 15px;
    transition: background-color .3s ease;
}

.articles-tags__item:hover {
    background-color: #cf4e1e;
}

/*------------------- 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 var(--glass-border);
    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: 50%;
    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: var(--text-muted);
}

.blog__comments-body {
    line-height: 1.4;
    color: var(--text-muted);
}

.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: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    padding: 15px 15px;
    transition: border-color 0.2s, background 0.2s;
}

.comment-form__textarea {
    width: 100%;
    min-height: 120px;
    font-size: 14px;
    color: #fff;
    outline: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    resize: vertical;
    padding: 15px 15px;
    transition: border-color 0.2s, background 0.2s;
    margin: 0 0 15px 0;
}

.button-submit {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    border: none;
    border-radius: 10px;
    background-color: #e85d26;
    padding: 15px 15px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
}

/*--------------------- 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: 50px;
    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: 30px 0 60px 0;
}

.options-list__link {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 7px 20px;
    transition: all .3s ease;
}

.options-list__link:hover {
    border: 1px solid #e85d26;
    background-color: #e85d26;
}

/*----------------- options-list /-----------*/
