/*--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--*/

:root {
    --bg: #E8E4E0;
    --surface: #F2F0ED;
    --accent: #FF6B35;
    --accent-dark: #e55a25;
    --secondary: #004E89;
    --secondary-light: #0066b3;
    --text: #212529;
    --text-light: #6c757d;
    --dark: #1A1A1A;
    --white: #ffffff;
    --gray: #a3a3a3;
    --border: #C4BFB9;
    --border-heavy: #999490;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius: 0px;
    --radius-sm: 0px;
    --radius-lg: 0px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: "JetBrains Mono", monospace;
    --font-body: "Roboto", sans-serif;
    --grid-line: rgba(0, 0, 0, 0.06);
    --grid-line-heavy: rgba(0, 0, 0, 0.12);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Monospace utility --- */
.mono {
    font-family: var(--font-display);
}

/* --- Stencil Text --- */
.stencil-text {
    letter-spacing: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Concrete Texture Overlay --- */
.concrete-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 0;
}

/* --- Exposed Grid Lines --- */
.hero-exposed-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent calc(100% / 12 - 1px), rgba(255, 255, 255, 0.04) calc(100% / 12 - 1px), rgba(255, 255, 255, 0.04) calc(100% / 12)),
        repeating-linear-gradient(90deg, transparent, transparent calc(100% / 12 - 1px), rgba(255, 255, 255, 0.04) calc(100% / 12 - 1px), rgba(255, 255, 255, 0.04) calc(100% / 12));
}

/* --- Hero Noise Overlay --- */
.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 2;
}

/* --- Duotone filter for hero images --- */
.hero-img-duotone {
    filter: saturate(0.3) contrast(1.1) brightness(0.7) sepia(0.2);
    mix-blend-mode: normal;
}

/* --- Utility Classes --- */
.text-accent {
    color: var(--accent);
}

.text-secondary {
    color: var(--secondary);
}

.text-muted {
    color: var(--text-light);
}

/* --- Exposed Grid Section Background --- */
.industrial-grid {
    position: relative;
}

/* --- Warning Stripe Pattern (diagonal orange/black) --- */
.btn-warning-stripe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    color: var(--white);
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.btn-warning-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.12) 8px,
            rgba(0, 0, 0, 0.12) 16px);
    transition: var(--transition);
    z-index: 0;
}

.btn-warning-stripe:hover::before {
    left: 0;
}

.btn-warning-stripe span,
.btn-warning-stripe i {
    position: relative;
    z-index: 1;
}

.btn-warning-stripe:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-warning-stripe i {
    font-size: 0.8em;
    transition: var(--transition);
}

.btn-warning-stripe:hover i {
    transform: translateX(3px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn i {
    font-size: 0.85em;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.7rem;
}

.btn-block {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--dark);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-logo {
    width: 200px;
    max-width: 100%;
}

.brand-icon {
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 6px,
            rgba(0, 0, 0, 0.1) 6px,
            rgba(0, 0, 0, 0.1) 12px);
    transition: var(--transition);
}

.navbar-cta:hover::before {
    left: 0;
}

.navbar-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Language */

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 8px 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .language-block {
        order: 1;
    }
}

.language-block-head {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: relative;
    transition: color .3s ease;
}

.language-block-head:hover {
    color: #fff;
}

.language-block-head::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.7);
    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(--accent);
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    display: none;
}

@media screen and (max-width: 768px) {
    .language-block-list {
        right: auto;
        left: 0;
    }
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    padding: 5px 15px;
}

.language-block-list li:hover {
    background: var(--accent);
}

.language-block-list li a {
    display: block;
    color: #fff;
    text-align: left;
}

/*-------------- social-mobile -----------*/

.social-mobile {
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
    display: none;
}

@media screen and (max-width: 992px) {
    .social-mobile {
        display: flex;
    }
}

.social-mobile__link {
    width: 34px;
    height: 34px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.social-mobile__link.btn_wa {
    background: #19D66B repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.12) 8px, rgba(0, 0, 0, 0.12) 16px);
}

.social-mobile__link.btn_tg {
    background: #0088cc repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.12) 8px, rgba(0, 0, 0, 0.12) 16px);
}

.social-mobile__link.btn_ph {
    background: #E11D48 repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.12) 8px, rgba(0, 0, 0, 0.12) 16px);
}

.social-mobile__link.btn_ln {
    background: #06C755 repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.12) 8px, rgba(0, 0, 0, 0.12) 16px);
}

.social-mobile__link i {
    font-size: 20px;
}

/* --- Mobile Menu --- */

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1111;
}

.toggler-bar {
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.navbar-toggler.active .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(0, 78, 137, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 140px 15px 80px;
    max-width: 800px;
}

.hero-badge {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
}

/* .hero-title.stencil-text {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hero-title.is-ready {
    opacity: 1;
} */

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Industrial Pipes --- */
.hero-pipe {
    position: absolute;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-pipe--left {
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
}

.hero-pipe--right {
    right: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
}

/* --- Breadcrumbs --- */

.breadcrumbs-wrap {
    padding: 10px 15px;
}

.breadcrumbs {
    list-style: none;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    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-models {
    padding: 60px 0 0 0;
}

.section-alt {
    background-color: var(--surface);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-models__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-editorial {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.section-title-editorial {
    font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: 4px;
    margin: 0 0 15px 0;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* --- Models Grid (Industrial Grid with visible lines) --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.model-card {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    cursor: pointer;
}

.model-image {
    position: relative;
    padding-top: 137%;
    overflow: hidden;
}

.model-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) contrast(1.05);
    transition: all .3s ease;
}

.model-card:hover .model-image img {
    filter: saturate(0.4) contrast(1.1);
    transform: scale(1.03);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
    transition: all .3s ease;
}

.model-card:hover .model-overlay {
    background: rgba(255, 107, 53, 0.25);
}

.model-category {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--white);
    background: var(--dark);
    padding: 4px 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .3s ease;
}

.model-card:hover .model-category {
    opacity: 1;
    transform: translateY(0);
}

.model-info {
    padding: 16px;
    background: var(--dark);
}

.model-name {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 2px;
    font-weight: 600;
}

.model-division {
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Services Grid (Blueprint style) --- */
.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.blueprint-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 33.33%;
    width: 1px;
    height: 100%;
    background: var(--border);
}

.blueprint-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 66.66%;
    width: 1px;
    height: 100%;
    background: var(--border);
}

.service-card {
    padding: 40px 30px;
    position: relative;
    background: transparent;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.service-card:nth-child(-n+3) {
    border-top: 1px solid var(--border);
}

.service-card:hover {
    background: var(--surface);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 2px solid var(--border);
    color: var(--text-light);
    transition: var(--transition);
}

.service-card--orange:hover .service-icon {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 107, 53, 0.05);
}

.service-card--blue:hover .service-icon {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(0, 78, 137, 0.05);
}

.service-title {
    font-size: 1.05rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 300;
}

.service-link {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link i {
    font-size: 0.6em;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* --- About Preview --- */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    filter: saturate(0.6);
    border: 3px solid var(--border-heavy);
}

.about-preview-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark);
    padding: 20px;
    text-align: center;
    border: 2px solid var(--accent);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

.badge-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-preview-content .section-title {
    text-align: left;
    margin-top: 8px;
}

.about-preview-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.about-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-feature i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border);
}

.testimonial-card {
    padding: 40px 30px;
    background: var(--surface);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: -10px;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    filter: saturate(0.5);
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 2px;
}

/* --- CTA Banner --- */
.section-cta-banner {
    padding: 80px 0;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            var(--accent) 0px,
            var(--accent) 20px,
            var(--dark) 20px,
            var(--dark) 30px);
}

.cta-banner-content h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
    letter-spacing: 6px;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
}

/* --- Page Hero --- */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 78, 137, 0.45) 100%);
}

.page-hero-overlay--solid {
    background: var(--dark);
}

.page-hero-content {
    position: relative;
    z-index: 3;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    font-weight: 300;
}

/* --- About Page --- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-story-content .section-title {
    text-align: left;
    margin-top: 8px;
}

.about-story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.about-story-image img {
    width: 100%;
    filter: saturate(0.5);
    border: 3px solid var(--border-heavy);
}

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg);
    position: relative;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    border: 2px solid var(--border);
}

.stat-icon--orange {
    color: var(--accent);
    border-color: var(--accent);
}

.stat-icon--blue {
    color: var(--secondary);
    border-color: var(--secondary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Values --- */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: var(--border);
}

.value-card {
    padding: 40px 24px;
    border: 1px solid var(--border);
    background: var(--bg);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* --- Services Detail (Blueprint layout) --- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    position: relative;
}

.service-detail::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail--reverse {
    direction: rtl;
}

.service-detail--reverse>* {
    direction: ltr;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 2px solid var(--border);
}

.service-detail-icon--orange {
    color: var(--accent);
    border-color: var(--accent);
}

.service-detail-icon--blue {
    color: var(--secondary);
    border-color: var(--secondary);
}

.service-detail-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.service-detail-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.service-detail-features {
    margin-bottom: 28px;
}

.service-detail-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--grid-line);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

.service-detail-image img {
    width: 100%;
    filter: saturate(0.5) contrast(1.05);
    border: 3px solid var(--border-heavy);
}

/* --- Pricing (Industrial Spec Sheet) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border-heavy);
    border: 3px solid var(--border-heavy);
}

.pricing-card {
    background: var(--surface);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card--highlighted {
    background: var(--dark);
}

.pricing-card--highlighted * {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.pricing-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card--highlighted .pricing-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-name {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.pricing-card--highlighted .pricing-description {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
}

.pricing-card--highlighted .pricing-amount {
    color: var(--white);
}

.pricing-period {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.pricing-body {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--grid-line);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card--highlighted .pricing-features li {
    border-color: rgba(255, 255, 255, 0.06);
}

.pricing-check {
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0;
}

/* --- Comparison Table --- */
.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border: 2px solid var(--border-heavy);
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    border: 1px solid var(--border);
}

.comparison-table thead th {
    background: var(--dark);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    border-color: rgba(255, 255, 255, 0.1);
}

.comparison-table tbody td {
    background: var(--surface);
}

.highlighted-col {
    background: rgba(255, 107, 53, 0.05) !important;
    border-left: 2px solid var(--accent) !important;
    border-right: 2px solid var(--accent) !important;
}

.comparison-table thead .highlighted-col {
    background: var(--accent) !important;
    color: var(--white) !important;
}

/* --- FAQ Mini --- */
.faq-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border);
}

.faq-mini .faq-item {
    padding: 30px;
    background: var(--surface);
}

.faq-mini .faq-item h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.faq-mini .faq-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* --- Events --- */
.events-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.events-month-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.month-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.month-nav-btn:hover {
    background: var(--accent);
}

.month-nav-current {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    min-width: 200px;
    text-align: center;
}

.events-filters {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-left: -1px;
}

.filter-btn:first-child {
    margin-left: 0;
}

.filter-btn:hover {
    color: var(--dark);
    border-color: var(--dark);
    z-index: 1;
}

.filter-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: var(--border);
}

.events-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    background: var(--surface);
}

.events-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.events-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
    display: block;
}

.events-empty h3 {
    margin-bottom: 8px;
}

.event-card {
    background: var(--surface);
    cursor: pointer;
    transition: var(--transition);
    padding: 30px;
    position: relative;
    border-left: 3px solid transparent;
}

.event-card:hover {
    background: var(--white);
    border-left-color: var(--accent);
}

.event-card-category {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 10px;
}

.event-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-card-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-meta i {
    width: 16px;
    color: var(--border-heavy);
    font-size: 0.7rem;
}

/* --- Event Modal --- */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.event-modal.active {
    opacity: 1;
    visibility: visible;
}

.event-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
}

.event-modal-content {
    position: relative;
    background: var(--surface);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition);
    border: 2px solid var(--border-heavy);
}

.event-modal.active .event-modal-content {
    transform: translateY(0);
}

.event-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.event-modal-close:hover {
    background: var(--accent);
}

.event-modal-header {
    padding: 32px 32px 20px;
    border-bottom: 1px solid var(--border);
}

.event-modal-category {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.event-modal-title {
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.event-modal-body {
    padding: 24px 32px;
}

.event-modal-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--grid-line);
}

.event-modal-detail i {
    width: 20px;
    color: var(--accent);
    font-size: 0.85rem;
}

.event-modal-description {
    margin-top: 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.event-modal-footer {
    padding: 20px 32px 32px;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.contact-form-wrapper>p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 4px;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.85rem;
    font-family: var(--font-body);
    letter-spacing: 0;
    font-weight: 400;
}

.form-check label a {
    color: var(--accent);
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

/* --- Contact Sidebar --- */
.contact-info-card {
    background: var(--dark);
    padding: 32px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-info-list strong {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.contact-info-list p {
    font-size: 0.9rem;
    color: var(--white);
}

.contact-info-list a {
    color: var(--white);
}

.contact-info-list a:hover {
    color: var(--accent);
}

.contact-social-card {
    background: var(--surface);
    padding: 28px;
    border: 2px solid var(--border);
}

.contact-social-card h3 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.contact-social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* --- FAQ Page --- */
.faq-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.faq-sidebar>p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
}

.faq-contact-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-contact-item i {
    color: var(--accent);
    width: 16px;
    font-size: 0.8rem;
}

.faq-contact-item a {
    color: var(--text);
}

.faq-contact-item a:hover {
    color: var(--accent);
}

/* --- Accordion --- */
.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: -1px;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--surface);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    color: var(--dark);
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--white);
}

.accordion-header[aria-expanded="true"] {
    background: var(--dark);
    color: var(--white);
}

.accordion-icon {
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--accent);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding: 20px 24px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    border-top: 1px solid var(--border);
}

/* --- Legal Pages --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    letter-spacing: 2px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
    font-weight: 300;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-content ul li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

.legal-content ul li::before {
    content: '//';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-dark);
}

/* --- Cookie Table --- */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.85rem;
    border: 2px solid var(--border-heavy);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.cookie-table td {
    background: var(--surface);
    color: var(--text-light);
}

/* --- Error Page --- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.error-4 {
    color: var(--white);
}

.error-0 {
    color: var(--accent);
    font-size: 5rem;
}

.error-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 10px;
}

.error-description {
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 32px;
    font-weight: 300;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.error-links p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.error-links ul {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.error-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.error-links a:hover {
    color: var(--accent);
}

/* --- Pagination --- */

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 60px 0 0 0;
    margin: 0 0;
}

.pagination__link {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
    text-align: center;
    line-height: 1.3;
    border: 2px solid var(--accent);
    background-color: var(--dark);
    padding: 10px 10px;
    transition: all .3s ease;
}

.pagination__link.active,
.pagination__link:hover {
    text-decoration: none;
    color: var(--white);
    border: 2px solid var(--accent);
    background-color: var(--accent);
}

/* ------------- seo-articles ------------ */

.seo-articles h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles h2 {
    font-size: clamp(22px, 3.6vw, 28px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles h3 {
    font-size: clamp(18px, 3.2vw, 24px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

/* ----------------- Footer ------------- */

.footer {
    background: var(--dark);
    padding: 80px 0 0;
    position: relative;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer-brand-logo {
    width: 150px;
    max-width: 100%;
}

.footer-brand .brand-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-right: -1px;
}

.footer-social a:hover {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
    z-index: 1;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
    margin-top: 3px;
    font-size: 0.75rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-tagline {
    font-family: var(--font-display);
    letter-spacing: 4px;
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.2) !important;
}

/* --- Back to Top --- */

.back-to-top {
    position: fixed;
    bottom: 65px;
    right: 15px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--accent);
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 500;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    border-top: 3px solid var(--accent);
    padding: 20px 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .blueprint-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blueprint-grid::before {
        left: 50%;
    }

    .blueprint-grid::after {
        display: none;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-mini {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .nav-link.active::after {
        bottom: 8px;
    }
}

@media (max-width: 768px) {
    .navbar-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 120px 15px 60px;
    }

    .stencil-text {
        letter-spacing: 6px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-pipe {
        display: none;
    }

    .about-preview-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail::before {
        display: none;
    }

    .service-detail--reverse {
        direction: ltr;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blueprint-grid {
        grid-template-columns: 1fr;
    }

    .blueprint-grid::before,
    .blueprint-grid::after {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .events-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .events-month-nav {
        justify-content: center;
    }

    .events-filters {
        justify-content: center;
        flex-wrap: wrap;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 5rem;
        letter-spacing: 10px;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-social-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Models Grid
   ============================================ */

.model-card-xl--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.model-card-xl__params {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-grid-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .3s ease;
}

.model-grid-card:hover {
    transform: translateY(-6px);
    color: inherit;
}

.model-grid-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 0;
}

.model-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.model-grid-card:hover .model-grid-card__image img {
    transform: scale(1.05);
}

.model-grid-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.model-grid-card:hover .model-grid-card__overlay {
    opacity: 1;
}

.model-grid-card__view {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 24px;
    border: 1px solid #fff;
}

.model-grid-card__info {
    padding: 16px 0;
}

.model-grid-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.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 {
    width: 50%;
    max-width: 190px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    position: relative;
    padding: 14px 20px;
    transition: all .3s ease;
}

.page-nav-button.button-prev {
    margin-right: 1px;
}

.page-nav-button.button-next {
    margin-left: 1px;
}

.page-nav-button:hover {
    text-decoration: none;
}

.page-nav-button.button-prev:hover i {
    transform: translateX(-3px);
}

.page-nav-button.button-next:hover i {
    transform: translateX(3px);
}

/* ============================================
   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;
}

.single-social__link {
    min-width: 150px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--secondary);
    font-size: 12px;
    letter-spacing: 2.5px;
    border: 2px solid var(--secondary);
    background-color: transparent;
    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 {
    background-color: #fff;
    transform: translateY(-2px);
}

.single-social__link .fab,
.single-social__link .fa {
    font-size: 18px;
}

.model-profile__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    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 20px 0;
}

.model-profile__service-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
}

.model-profile__service-row:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}

.model-profile__service-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.model-profile__service-line {
    flex: 1;
    border-bottom: 1px dotted var(--gray-light);
    min-width: 40px;
}

.model-profile__service-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.model-profile__rates-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
}

.model-profile__rates-row:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}

/* CTA */
.model-profile__cta {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .model-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .model-profile__params-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-profile__cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === Models Carousel & Cards (from d001) === */

.models-hscroll {
    overflow: hidden;
    cursor: grab;
    position: relative;
    padding: 0 0 20px;
}

.models-hscroll:active {
    cursor: grabbing;
}

.models-hscroll__track {
    display: flex;
    gap: 30px;
    padding: 0 80px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.model-card-xl {
    flex-shrink: 0;
    width: 320px;
    position: relative;
}

.model-card-xl__image {
    width: 100%;
    aspect-ratio: 3/4.2;
    overflow: hidden;
    position: relative;
}

.model-card-xl__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    filter: grayscale(20%);
}

.model-card-xl:hover .model-card-xl__image img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.model-card-xl__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.model-card-xl__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    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;
}

.section-stats-editorial {
    padding: 80px 0;
}

.section-stats-editorial__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.section-stats-editorial__inner.grid-changed {
    grid-template-columns: repeat(3, 1fr);
}

.stat-editorial {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    position: relative;
}

.stat-editorial__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
}

.stat-editorial__divider {
    width: 100px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 10px auto;
}

.stat-editorial__label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, border-color 0.2s;
        mix-blend-mode: difference;
    }

    .custom-cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
    }

    .custom-cursor.cursor-hover {
        width: 60px;
        height: 60px;
        border-color: var(--white);
    }
}

@media (max-width: 1200px) {
    .hero-split__left {
        padding: 120px 40px 80px 50px;
    }

    .models-hscroll__track {
        padding: 0 50px;
    }

    .model-card-xl {
        width: 280px;
    }

    .section-stats-editorial__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline__line {
        display: none;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 110px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header-nav-list li {
        width: 100%;
    }

    .header-nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--subtle);
        color: var(--primary) !important;
    }

    .header-nav-list a::after {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Hero Split */
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split__left {
        padding: 140px 30px 60px;
        order: 2;
    }

    .hero-split__right {
        height: 55vh;
        min-height: 400px;
        order: 1;
    }

    .hero-split__image-wrap {
        clip-path: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-split__title span {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section-models {
        padding: 80px 0 60px;
    }

    .models-hscroll__track {
        padding: 0 30px;
        gap: 20px;
    }

    .model-card-xl {
        width: 260px;
    }

    /* Grids */
    .services-icon-grid {
        grid-template-columns: 1fr;
    }

    .section-stats-editorial__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-stats-editorial__inner.grid-changed {
        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: 520px) {
    .section-stats-editorial__inner {
        grid-template-columns: 1fr;
    }

    .section-stats-editorial__inner.grid-changed {
        grid-template-columns: 1fr;
    }
}

@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;
    }

    .stat-editorial__number {
        font-size: 3rem;
    }

    .models-hscroll__track {
        padding: 0 20px;
    }

    .model-card-xl {
        width: 240px;
    }

    .events-masonry {
        columns: 1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer-inner {
        padding-left: 0;
    }

    .faq-number {
        display: none;
    }

    .testimonial-slide {
        padding: 0 10px;
    }

    .page-404__number {
        font-size: 8rem;
    }

    .cta-diagonal__bg {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    }

    .contact-info-card {
        padding: 35px 25px;
    }

    .modal-editorial {
        padding: 35px 25px;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ============================================================
   GALLERY SLIDER 
============================================================ */

.gallery {
    width: 100%;
    min-width: 0;
}

.main-slider {
    position: relative;
    overflow: hidden;
}

.main-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.prev::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(314deg);
}

.next {
    right: 10px;
}

.next::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.thumbs {
    overflow: hidden;
    margin-top: 8px;
}

.thumb-track {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.thumb {
    flex: 0 0 calc(25% - 5px);
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.thumb img {
    width: 100%;
    display: block;
}

/*-------------------- 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;
    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: #25D366 repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.12) 8px, rgba(0, 0, 0, 0.12) 16px);
}

.fixed-social__link.btn_tg {
    background: #0088cc repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.12) 8px, rgba(0, 0, 0, 0.12) 16px);
}

.fixed-social__link svg {
    width: 20px;
    fill: #fff;
}