/* ============================================================
   TexGeo Eco — единая дизайн-система
   Палитра извлечена из идентичности BEZ (bez.com.tr): оранжевый + синий
   ============================================================ */

:root {
    /* Brand */
    --color-primary: #E86818;        /* BEZ orange */
    --color-primary-dark: #C85410;
    --color-primary-light: #FF8A3D;
    --color-secondary: #204888;      /* BEZ blue */
    --color-secondary-dark: #152E5A;
    --color-secondary-light: #3867B5;

    /* Neutrals */
    --color-slate-900: #0F172A;
    --color-slate-800: #1E293B;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748B;
    --color-slate-400: #94A3B8;
    --color-slate-300: #CBD5E1;
    --color-slate-200: #E2E8F0;
    --color-slate-100: #F1F5F9;
    --color-slate-50:  #F8FAFC;
    --color-white: #FFFFFF;

    /* Semantic */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-bg-dark: #0F172A;
    --color-text: #1E293B;
    --color-text-muted: #64748B;
    --color-text-inverse: #FFFFFF;
    --color-border: #E2E8F0;
    --color-border-strong: #CBD5E1;

    /* Gradients / accents */
    --grad-hero: linear-gradient(135deg, #0F172A 0%, #152E5A 55%, #204888 100%);
    --grad-accent: linear-gradient(135deg, #E86818 0%, #C85410 100%);

    /* Typography */
    --font-sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);

    /* Layout */
    --container-max: 1240px;
    --header-height: 72px;

    /* Transitions */
    --trans-fast: 160ms ease;
    --trans-base: 240ms ease;
    --trans-slow: 400ms ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: var(--color-secondary); text-decoration: none; transition: color var(--trans-fast); }
a:hover { color: var(--color-primary); }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    margin: 0 0 var(--space-4);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-slate-900);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 700; }
p { margin: 0 0 var(--space-4); }
ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25rem; }
li { margin-bottom: var(--space-2); }

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}
.section { padding: var(--space-20) 0; }
.section--tight { padding: var(--space-16) 0; }
.section--dark { background: var(--color-slate-900); color: var(--color-slate-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--alt { background: var(--color-bg-alt); }
.section__eyebrow {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(232, 104, 24, 0.1);
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}
.section__title { max-width: 780px; }
.section__lead { max-width: 720px; color: var(--color-text-muted); font-size: 1.0625rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1;
    text-align: center;
    transition: all var(--trans-base);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn--primary { background: var(--color-primary); color: var(--color-white); }
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--color-secondary); color: var(--color-white); }
.btn--secondary:hover { background: var(--color-secondary-dark); color: var(--color-white); }
.btn--ghost { background: transparent; color: var(--color-slate-900); border-color: var(--color-border-strong); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--ghost-inverse { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.3); }
.btn--ghost-inverse:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn__icon { width: 16px; height: 16px; stroke-width: 2.5; }

/* ============================================================
   HEADER (идентичен на всех страницах)
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    display: flex; align-items: center;
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-6);
}
.site-header__logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.125rem; letter-spacing: -0.02em;
    color: var(--color-slate-900); white-space: nowrap;
}
.site-header__logo:hover { color: var(--color-slate-900); }
.site-header__logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.site-header__logo-text span { color: var(--color-primary); }

.site-nav {
    display: flex; align-items: center; gap: var(--space-1);
}
.site-nav__link {
    padding: 10px 14px; border-radius: var(--radius-md);
    font-size: 0.9375rem; font-weight: 500; color: var(--color-slate-700);
    white-space: nowrap; transition: all var(--trans-fast);
}
.site-nav__link:hover { background: var(--color-slate-100); color: var(--color-slate-900); }
.site-nav__link--active { color: var(--color-primary); font-weight: 600; }

.site-nav__dropdown { position: relative; }
.site-nav__dropdown-trigger {
    display: flex; align-items: center; gap: 4px;
    padding: 10px 14px; border-radius: var(--radius-md);
    font-size: 0.9375rem; font-weight: 500; color: var(--color-slate-700);
    transition: all var(--trans-fast);
}
.site-nav__dropdown-trigger:hover { background: var(--color-slate-100); color: var(--color-slate-900); }
.site-nav__dropdown-trigger svg { width: 14px; height: 14px; transition: transform var(--trans-fast); }
.site-nav__dropdown[data-open="true"] .site-nav__dropdown-trigger svg { transform: rotate(180deg); }
.site-nav__dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
    min-width: 260px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0; pointer-events: none;
    transform: translateX(-50%) translateY(-4px);
    transition: all var(--trans-fast);
}
.site-nav__dropdown[data-open="true"] .site-nav__dropdown-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.site-nav__dropdown-menu a {
    display: block; padding: 10px 12px; border-radius: var(--radius-sm);
    font-size: 0.9375rem; color: var(--color-slate-700); font-weight: 500;
}
.site-nav__dropdown-menu a:hover { background: var(--color-slate-100); color: var(--color-primary); }

.site-header__cta { flex-shrink: 0; }

.site-header__burger {
    display: none;
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-slate-100);
    align-items: center; justify-content: center;
}
.site-header__burger svg { width: 20px; height: 20px; }

/* Mobile nav drawer */
.mobile-nav {
    position: fixed; inset: var(--header-height) 0 0 0;
    background: var(--color-white);
    z-index: 40;
    transform: translateX(100%);
    transition: transform var(--trans-base);
    padding: var(--space-6);
    overflow-y: auto;
}
.mobile-nav[data-open="true"] { transform: translateX(0); }
.mobile-nav a {
    display: block; padding: 14px 12px; border-radius: var(--radius-md);
    font-weight: 600; color: var(--color-slate-900); font-size: 1.0625rem;
    border-bottom: 1px solid var(--color-border);
}
.mobile-nav a.mobile-nav__sub { padding-left: 28px; font-weight: 500; font-size: 0.9375rem; color: var(--color-slate-700); }
.mobile-nav__cta { margin-top: var(--space-6); }

@media (max-width: 1024px) {
    .site-nav { display: none; }
    .site-header__cta { display: none; }
    .site-header__burger { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: var(--space-16) 0 var(--space-20);
    background: var(--grad-hero);
    color: var(--color-white);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 15%, rgba(232, 104, 24, 0.18), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(32, 72, 136, 0.4), transparent 60%);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-12); align-items: center;
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 10px;
    background: rgba(232, 104, 24, 0.15);
    border: 1px solid rgba(232, 104, 24, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.8125rem; font-weight: 600; color: #FFB48A; letter-spacing: 0.04em;
    margin-bottom: var(--space-5);
}
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); }
.hero h1 {
    color: var(--color-white);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    margin-bottom: var(--space-5);
}
.hero h1 span { color: var(--color-primary); }
.hero__lead {
    font-size: 1.125rem; line-height: 1.6; color: rgba(255,255,255,0.8);
    max-width: 560px; margin-bottom: var(--space-8);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); }
.hero__markers { display: flex; flex-wrap: wrap; gap: var(--space-6); }
.hero__marker {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.9); font-size: 0.9375rem;
}
.hero__marker svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-primary); margin-top: 2px; }
.hero__marker strong { display: block; color: var(--color-white); font-weight: 700; }

.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin-left: auto;
}
.hero__visual-inner {
    position: relative;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(4px);
    overflow: hidden;
    padding: var(--space-8);
    display: flex; align-items: center; justify-content: center;
}
.hero__stat-float {
    position: absolute;
    background: var(--color-white);
    color: var(--color-slate-900);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
}
.hero__stat-float--top { top: 24px; right: -16px; }
.hero__stat-float--bottom { bottom: 24px; left: -16px; }
.hero__stat-float-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--grad-accent); color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
}
.hero__stat-float-icon svg { width: 20px; height: 20px; }
.hero__stat-float-val { font-weight: 800; font-size: 1.25rem; line-height: 1; }
.hero__stat-float-label { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 500; }

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .hero__stat-float--top { right: 0; }
    .hero__stat-float--bottom { left: 0; }
    .hero__markers { gap: var(--space-3); flex-direction: column; }
}

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header {
    background: var(--grad-hero);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-12);
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 50% at 90% 0%, rgba(232, 104, 24, 0.2), transparent 60%);
    pointer-events: none;
}
.page-header h1 { color: var(--color-white); margin-bottom: var(--space-4); }
.page-header__lead { max-width: 720px; color: rgba(255,255,255,0.8); font-size: 1.125rem; }
.page-header__breadcrumb {
    display: flex; gap: 8px; align-items: center;
    color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: var(--space-5);
}
.page-header__breadcrumb a { color: rgba(255,255,255,0.7); }
.page-header__breadcrumb a:hover { color: var(--color-primary); }

/* ============================================================
   CARDS (товары, блог, доверие — единая анатомия)
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--trans-base);
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}
.product-card__image {
    aspect-ratio: 4 / 3;
    background: var(--color-slate-50);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.product-card__image svg { width: 100%; height: 100%; }
.product-card__body { padding: var(--space-5); display: flex; flex-direction: column; flex-grow: 1; }
.product-card__category {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--color-primary); margin-bottom: var(--space-2);
}
.product-card__title {
    font-size: 1.0625rem; font-weight: 700; line-height: 1.3;
    color: var(--color-slate-900); margin-bottom: var(--space-2);
}
.product-card__description {
    color: var(--color-text-muted); font-size: 0.9375rem; line-height: 1.5;
    margin-bottom: var(--space-4); flex-grow: 1;
}
.product-card__meta {
    display: flex; gap: var(--space-3); flex-wrap: wrap;
    padding-top: var(--space-4); border-top: 1px solid var(--color-border);
    margin-bottom: var(--space-4);
}
.product-card__meta-item { font-size: 0.8125rem; color: var(--color-text-muted); }
.product-card__meta-item strong { color: var(--color-slate-900); font-weight: 700; }
.product-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: 0.9375rem; color: var(--color-primary);
    align-self: flex-start;
}
.product-card__link:hover { color: var(--color-primary-dark); gap: 10px; }
.product-card__link svg { width: 14px; height: 14px; }

/* ============================================================
   SUPPORT / Полное сопровождение поставок (4.9.1)
   ============================================================ */
.support-block { padding: var(--space-20) 0; background: var(--color-bg-alt); }
.support-stages {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4); margin-top: var(--space-10);
}
.support-stage {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
    transition: all var(--trans-base);
}
.support-stage:hover { border-color: var(--color-primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.support-stage__num {
    position: absolute; top: var(--space-5); right: var(--space-5);
    font-size: 2.25rem; font-weight: 800; color: var(--color-slate-200);
    line-height: 1;
}
.support-stage__icon {
    width: 48px; height: 48px;
    background: var(--grad-accent); color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-4);
}
.support-stage__icon svg { width: 24px; height: 24px; }
.support-stage__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: var(--space-2); color: var(--color-slate-900); }
.support-stage__desc { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.5; margin: 0; }
.support-caption {
    text-align: center; margin-top: var(--space-8);
    font-size: 1.0625rem; color: var(--color-slate-700);
}
.support-caption strong { color: var(--color-primary); }

@media (max-width: 900px) {
    .support-stages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .support-stages { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS / About block
   ============================================================ */
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    padding: var(--space-8) 0;
    margin-top: var(--space-8);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.stat__value {
    font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800;
    color: var(--color-primary); line-height: 1;
    margin-bottom: var(--space-1); letter-spacing: -0.02em;
}
.stat__label {
    font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.4;
}
@media (max-width: 700px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}

/* ============================================================
   ADVANTAGES list
   ============================================================ */
.advantages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.adv-item {
    padding: var(--space-5);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}
.adv-item__icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: rgba(232, 104, 24, 0.1); color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-4);
}
.adv-item__icon svg { width: 22px; height: 22px; }
.adv-item__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: var(--space-2); color: var(--color-slate-900); }
.adv-item__desc { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.5; margin: 0; }
@media (max-width: 900px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .advantages-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CLIENTS block
   ============================================================ */
.clients-row {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4); align-items: center;
}
.clients-row__item {
    aspect-ratio: 2 / 1;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--color-slate-400); font-size: 0.9375rem;
    background: var(--color-white);
    transition: all var(--trans-base);
}
.clients-row__item:hover { color: var(--color-slate-700); border-color: var(--color-slate-300); }
@media (max-width: 900px) {
    .clients-row { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   VIDEO block
   ============================================================ */
.video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--grad-hero);
    display: flex; align-items: center; justify-content: center;
    max-width: 960px; margin: var(--space-10) auto 0;
    box-shadow: var(--shadow-xl);
}
.video-wrap::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 104, 24, 0.25), transparent 70%);
}
.video-wrap__play {
    position: relative;
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white);
    transition: all var(--trans-base);
}
.video-wrap__play:hover { background: var(--color-primary); border-color: var(--color-primary); transform: scale(1.05); }
.video-wrap__play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-wrap__label {
    position: absolute; bottom: var(--space-6); left: var(--space-8); right: var(--space-8);
    color: var(--color-white); font-weight: 700; font-size: 1.0625rem;
}

/* ============================================================
   FOOTER (идентичен на всех страницах)
   ============================================================ */
.site-footer { background: var(--color-slate-900); color: var(--color-slate-300); padding: var(--space-16) 0 var(--space-6); }
.site-footer__inner {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-10);
    margin-bottom: var(--space-12);
}
.site-footer__brand-block .site-header__logo { color: var(--color-white); margin-bottom: var(--space-4); }
.site-footer__desc { color: var(--color-slate-400); font-size: 0.9375rem; line-height: 1.6; margin-bottom: var(--space-5); max-width: 320px; }
.site-footer__col-title { color: var(--color-white); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-5); }
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a { color: var(--color-slate-400); font-size: 0.9375rem; }
.site-footer__list a:hover { color: var(--color-primary); }

.site-footer__contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: var(--space-4); }
.site-footer__contact-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.site-footer__contact-item div { font-size: 0.9375rem; color: var(--color-slate-300); line-height: 1.5; }
.site-footer__contact-item a { color: var(--color-slate-300); }
.site-footer__contact-item a:hover { color: var(--color-primary); }

.site-footer__bottom {
    padding-top: var(--space-6); border-top: 1px solid var(--color-slate-800);
    display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
    font-size: 0.8125rem; color: var(--color-slate-500); flex-wrap: wrap;
}
.site-footer__legal { display: flex; gap: var(--space-3); align-items: center; }
.site-footer__legal a { color: var(--color-slate-400); opacity: 0.75; text-decoration: underline; text-decoration-color: transparent; transition: all var(--trans-fast); }
.site-footer__legal a:hover { opacity: 1; color: var(--color-primary); text-decoration-color: currentColor; }
.site-footer__legal-sep { color: var(--color-slate-600); }

@media (max-width: 900px) {
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .site-footer__inner { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
    position: fixed; bottom: var(--space-6); right: var(--space-6);
    z-index: 30;
    background: var(--color-primary); color: var(--color-white);
    padding: 14px 20px; border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    font-weight: 700; font-size: 0.9375rem;
    display: flex; align-items: center; gap: 8px;
    transform: translateY(120px); opacity: 0;
    transition: all var(--trans-base);
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { background: var(--color-primary-dark); color: var(--color-white); }
.sticky-cta svg { width: 16px; height: 16px; }

/* ============================================================
   FORMS
   ============================================================ */
.field { margin-bottom: var(--space-5); }
.field__label {
    display: block; font-weight: 600; font-size: 0.875rem;
    color: var(--color-slate-700); margin-bottom: 8px;
}
.field__label-required::after { content: " *"; color: var(--color-primary); }
.field__input, .field__textarea, .field__select {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-slate-900);
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.field__input:focus, .field__textarea:focus, .field__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 104, 24, 0.15);
}
.field__textarea { resize: vertical; min-height: 100px; }
.field__hint { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 6px; }

/* Custom checkbox */
.checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 0.875rem; color: var(--color-slate-700); line-height: 1.5; }
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box {
    width: 20px; height: 20px; flex-shrink: 0;
    border: 2px solid var(--color-border-strong);
    border-radius: 5px;
    background: var(--color-white);
    position: relative;
    transition: all var(--trans-fast);
    margin-top: 1px;
}
.checkbox input:checked + .checkbox__box {
    background: var(--color-primary); border-color: var(--color-primary);
}
.checkbox input:checked + .checkbox__box::after {
    content: "";
    position: absolute; left: 5px; top: 1px;
    width: 6px; height: 11px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox input:focus-visible + .checkbox__box {
    box-shadow: 0 0 0 3px rgba(232, 104, 24, 0.2);
}

/* ============================================================
   FAQ / Accordion
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    background: var(--color-white);
    overflow: hidden;
}
.faq-item__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-4); padding: var(--space-5) var(--space-6);
    font-weight: 600; font-size: 1.0625rem; color: var(--color-slate-900);
    text-align: left; transition: background var(--trans-fast);
}
.faq-item__q:hover { background: var(--color-slate-50); }
.faq-item__q-icon { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; transition: transform var(--trans-fast); }
.faq-item[data-open="true"] .faq-item__q-icon { transform: rotate(45deg); }
.faq-item__a {
    padding: 0 var(--space-6) var(--space-5);
    display: none;
    color: var(--color-text-muted);
    font-size: 0.9375rem; line-height: 1.65;
}
.faq-item[data-open="true"] .faq-item__a { display: block; }

/* ============================================================
   CTA BLOCK (final)
   ============================================================ */
.cta-block {
    background: var(--grad-hero);
    color: var(--color-white);
    padding: var(--space-16) 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-block::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 104, 24, 0.25), transparent 60%);
    pointer-events: none;
}
.cta-block__inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-block h2 { color: var(--color-white); margin-bottom: var(--space-3); }
.cta-block p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; margin-bottom: var(--space-6); }

/* ============================================================
   HERO — PHOTO VERSION (image 1.jpg)
   Специфичность повышена до (0,2,0) чтобы перекрыть pages.css (.hero = 0,1,0)
   ============================================================ */
.hero.hero--photo {
    padding: 0 !important;
    min-height: 500px;
    background: var(--color-slate-900) !important;
    color: var(--color-white) !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero.hero--photo::before { display: none; }
.hero.hero--photo .hero__bg { display: none; }

.hero__photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--color-slate-900);
}
.hero__photo-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.98) 0%,
        rgba(15,23,42,0.95) 28%,
        rgba(15,23,42,0.60) 46%,
        rgba(15,23,42,0.12) 64%,
        transparent 82%
    );
    z-index: 1;
}
.hero__photo-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    display: block;
}

.hero--photo .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 56px;
    padding-bottom: 56px;
}

.hero__glass-panel {
    position: relative;
    z-index: 2;
    width: 56%;
    max-width: 640px;
}
.hero__glass-panel::before { display: none; }

/* Eyebrow badge */
.hero.hero--photo .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(232,104,24,0.18);
    border: 1px solid rgba(232,104,24,0.38);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFB48A !important;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
}

/* Heading */
.hero.hero--photo h1 {
    color: #ffffff !important;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.hero.hero--photo h1 em {
    color: var(--color-primary-light);
    font-style: normal;
}

/* Short lead — !important перекрывает pages.css .hero__lead { color: slate-700 } */
.hero.hero--photo .hero__lead {
    color: rgba(255,255,255,0.78) !important;
    font-size: 1rem;
    line-height: 1.65;
    margin-top: var(--space-4);
    max-width: 440px;
    margin-bottom: 0;
}

/* CTA row */
.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Stats row */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.hero__stat + .hero__stat {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.hero__stat-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: 4px;
    white-space: nowrap;
}
.hero__stat-label {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.35;
    white-space: nowrap;
    text-align: center;
}

.hero__ribbon { display: none; }

@media (max-width: 1024px) {
    .hero__glass-panel { width: 78%; }
}
@media (max-width: 768px) {
    .hero.hero--photo { min-height: auto; }
    .hero.hero--photo .container { flex-direction: column; padding-top: 48px; padding-bottom: 48px; }
    .hero__glass-panel { width: 100%; max-width: none; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
    .hero__stat, .hero__stat + .hero__stat { padding: 0; border-left: none; }
    .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); padding-right: 12px; }
    .hero__stat:nth-child(even) { padding-left: 12px; }
}

/* ============================================================
   ABOUT INTRO — IMAGE + TEXT SPLIT (image 2.png)
   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-12);
}
.about-intro__image { overflow: hidden; min-width: 0; }
.about-intro__image img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 0;
}
.about-intro__content {
    background: var(--color-slate-900);
    color: var(--color-white);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-intro__content .lead { color: rgba(255,255,255,0.9); margin-bottom: var(--space-5); }
.about-intro__content p { color: rgba(255,255,255,0.75); font-size: 0.9375rem; margin-bottom: var(--space-4); }
.about-intro__content strong { color: var(--color-white); }
.about-intro__eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(232, 104, 24, 0.18);
    color: var(--color-primary-light);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}
@media (max-width: 800px) {
    .about-intro { grid-template-columns: 1fr; }
    .about-intro__image img { max-height: 300px; object-fit: cover; object-position: center; }
}

/* ============================================================
   CONTACTS HERO — SPLIT (image 3.png)
   ============================================================ */
.contacts-hero {
    position: relative;
    background: var(--grad-hero);
    color: var(--color-white);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: stretch;
}
.contacts-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 70% at 20% 50%, rgba(232,104,24,0.18), transparent 65%);
    pointer-events: none; z-index: 1;
}
.contacts-hero__content {
    position: relative; z-index: 2;
    width: 55%;
    padding: 64px 0 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contacts-hero__image {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 48%;
    z-index: 0;
}
.contacts-hero__image::before {
    content: "";
    position: absolute; inset: 0; left: -60px;
    background: linear-gradient(to right, var(--color-slate-900) 0%, transparent 100%);
    z-index: 1;
}
.contacts-hero__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.contacts-hero h1 { color: var(--color-white); margin-bottom: var(--space-4); }
.contacts-hero__lead { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 540px; }
@media (max-width: 768px) {
    .contacts-hero__content { width: 100%; }
    .contacts-hero__image { display: none; }
}

/* ============================================================
   FACTORY IMAGE — production section (image 4.png)
   ============================================================ */
.factory-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-10);
}
.factory-image img {
    width: 100%;
    display: block;
    max-height: 480px;
    object-fit: cover;
    object-position: center 40%;
}
.factory-image__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 28px;
    background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 100%);
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
}

/* ============================================================
   VIDEO WRAP — presentation placeholder
   ============================================================ */
.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    margin-top: var(--space-10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-wrap iframe,
.video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Reveal animations */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ─── Consent checkboxes (forms) ─── */
.consent-checks { display: flex; flex-direction: column; gap: 8px; margin: 1rem 0 0.5rem; }
.consent-label { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--color-slate-600, #475569); line-height: 1.5; cursor: pointer; }
.consent-label input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-primary, #1d4ed8); cursor: pointer; }
.consent-label a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.consent-label a:hover { color: var(--color-primary, #1d4ed8); }

/* ─── Cookie banner ─── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-slate-900, #0f172a); color: rgba(255,255,255,0.82); font-size: 0.8rem; line-height: 1.55; padding: 14px 24px; display: flex; align-items: center; gap: 20px; z-index: 9999; box-shadow: 0 -2px 12px rgba(0,0,0,0.25); }
.cookie-banner p { margin: 0; flex: 1; }
.cookie-banner__btn { flex-shrink: 0; background: var(--color-primary, #1d4ed8); color: #fff; border: none; border-radius: 6px; padding: 8px 20px; font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: opacity 0.2s; }
.cookie-banner__btn:hover { opacity: 0.88; }
@media (max-width: 600px) { .cookie-banner { flex-direction: column; align-items: flex-start; } }
