/* ========================================
   LOCKERBOX TECH — Main Stylesheet v2
   ======================================== */

:root {
    /* Palette — точно под референс */
    --color-primary: #214FEE;
    --color-primary-dark: #1a3fc0;
    --color-primary-light: #4a6ff5;
    --color-primary-vivid: #214FEE;
    --color-dark: #080830;
    --color-dark-alt: #0c0c40;
    --color-dark-surface: #101050;
    --color-white: #ffffff;
    --color-gray-50: #f6f7f9;
    --color-gray-100: #ecedf2;
    --color-gray-200: #dde0e6;
    --color-gray-300: #c4c8d2;
    --color-gray-400: #9a9fb2;
    --color-gray-500: #6c7185;
    --color-gray-600: #4e5363;
    --color-gray-700: #3b404e;
    --color-gray-800: #2a2e3a;
    --color-gray-900: #1a1e28;

    --color-accent-glow: rgba(33, 79, 238, 0.22);

    --font-primary: 'Geist Sans', 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1240px;
    --gap: 24px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-card: 0 2px 8px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 28px rgba(0,0,0,0.09);

    --tr: 0.25s ease;
    --tr-fast: 0.15s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; background: #fff; }
body { font-family: var(--font-primary); font-weight: 400; line-height: 1.6; color: var(--color-gray-900); background: var(--color-white); overflow-x: hidden; max-width: 1400px; margin: 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }

/* ====== SECTION ====== */
.section { padding: 72px 0; }
.section--dark { background: var(--color-dark); color: var(--color-white); }
.section--gray { background: var(--color-gray-50); }

.section__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gray-400);
    margin-bottom: 10px;
}
.section--dark .section__label { color: rgba(255,255,255,0.35); }

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 20px;
}

.section__title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section__link {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.section__link:hover { gap: 8px; color: var(--color-primary-dark); }
.section--dark .section__link { color: rgba(255,255,255,0.5); }
.section--dark .section__link:hover { color: #fff; }

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--tr);
    white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px var(--color-accent-glow); }
.btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn--outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }
.btn--white { background: #fff; color: var(--color-dark); }
.btn--white:hover { background: var(--color-gray-100); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--color-primary); padding: 12px 0; }
.btn--ghost::after { content: '\2192'; display: inline-block; transition: var(--tr-fast); margin-left: 2px; }
.btn--ghost:hover { color: var(--color-primary-dark); }
.btn--ghost:hover::after { transform: translateX(3px); }
.section--dark .btn--ghost { color: rgba(255,255,255,0.65); }
.section--dark .btn--ghost:hover { color: #fff; }
.btn--dark { background: var(--color-dark); color: #fff; }
.btn--dark:hover { background: var(--color-dark-alt); transform: translateY(-1px); }
.btn--sm { padding: 8px 18px; font-size: 12px; }

/* ====== HEADER ====== */
.site-header {
    position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1400px; z-index: 1000;
    padding: 14px 0;
    background: radial-gradient(ellipse at center, #083688, #000E2C);
    transition: var(--tr);
}
.site-header--scrolled {
    background: rgba(0,14,44,0.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.site-header .container { display: flex; align-items: center; gap: 32px; max-width: none; padding: 0 24px; }
.site-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.site-header__logo img { height: 40px; width: auto; }
.site-header__logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-header__logo-text strong { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.site-header__logo-text small { font-size: 8px; font-weight: 500; color: rgba(255,255,255,0.35); letter-spacing: 4px; text-transform: uppercase; margin-top: 1px; }
.site-header__nav { display: flex; align-items: center; gap: 32px; margin: 0 auto; list-style: none; }
.site-header__nav li { list-style: none; position: relative; }
.site-header__nav a, .site-header__nav li a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65); transition: var(--tr-fast); text-decoration: none; }
.site-header__nav a:hover, .site-header__nav li a:hover { color: #fff; }

/* Dropdown submenu */
.site-header__nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 12px 0;
    margin-top: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 100;
    list-style: none;
}
.site-header__nav .sub-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.site-header__nav li:hover > .sub-menu { display: block; }
.site-header__nav .sub-menu li { padding: 0; }
.site-header__nav .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-600) !important;
    white-space: nowrap;
}
.site-header__nav .sub-menu a:hover {
    color: var(--color-primary) !important;
    background: var(--color-gray-50);
}
.site-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-header__social {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: none;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tr);
    flex-shrink: 0;
}
.site-header__social:hover { opacity: 0.8; }
.site-header__social img { width: 60px; height: 60px; border-radius: 14px; }
.site-header__phone {
    font-size: 14px; font-weight: 600; color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 14px;
    min-width: 290px; height: 60px;
    padding: 0 14px;
    box-sizing: border-box;
    display: flex; align-items: center; justify-content: center;
    transition: min-width .25s ease, background .25s ease;
    white-space: nowrap;
}
.site-header__phone:hover { background: rgba(255,255,255,0.08); }
/* Когда телефон раскрыт — кнопка «Показать» исчезает, контейнер ужимается */
.site-header__phone:has(.rp-contact.is-revealed) { min-width: 196px; }
/* Внутри шапки rp-contact в одну строку, без переноса */
.site-header__phone .rp-contact { flex-wrap: nowrap; gap: 8px; }
.site-header__phone .rp-contact__btn { padding: 5px 10px; font-size: 12px; }
.site-header__burger { display: none; flex-direction: column; gap: 5px; width: 22px; padding: 3px 0; }
.site-header__burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }

/* Mobile */
.mobile-menu { display: none; position: fixed; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1400px; background: var(--color-dark); z-index: 999; padding: 88px 24px 40px; flex-direction: column; overflow-y: auto; }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu li { list-style: none; }
.mobile-menu .sub-menu { padding: 0 0 0 20px; list-style: none; }
.mobile-menu .sub-menu a { font-size: 14px; color: rgba(255,255,255,0.5); padding: 10px 0; }
.mobile-menu__phone { font-weight: 700 !important; }

/* ====== HERO ====== */
.hero {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-rows: 500px;
    gap: 20px;
    padding: 102px 28px 28px;
    background: var(--color-dark);
}

/* Левый блок — фон + текст поверх */
.hero__left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 56px;
    overflow: hidden;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: '';
    position: absolute; inset: 0;
}
.hero__content {
    position: relative;
    z-index: 1;
}
.hero__left > .breadcrumbs {
    position: absolute;
    top: 40px;
    left: 56px;
    z-index: 2;
}
.hero__title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.02;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 580px;
}

/* Правый блок — картинка-фон, контент поверх внизу */
.hero__sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero__sidebar-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}
.hero__cta-body {
    position: relative;
    z-index: 1;
    padding: 24px 24px 28px;
}
.hero__cta-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 12px;
}
.hero__cta-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin-bottom: 24px;
}
.hero__cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-dark);
    background: #fff;
    border-radius: var(--radius-sm);
    transition: var(--tr);
}
.hero__cta-btn:hover {
    background: var(--color-gray-100);
    transform: translateY(-1px);
}

/* ====== STATS ====== */
/* ====== STATS ====== */
.stats { background: var(--color-dark); padding: 0 24px 24px; }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.stats__item {
    position: relative;
    border-radius: var(--radius-md);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    overflow: hidden;
    transition: var(--tr);
}
.stats__item-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.stats__item:hover { transform: translateY(-2px); }
.stats__head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; }
.stats__value { font-size: clamp(18px, 2.2vw, 24px); font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1.15; }
.stats__marker { width: 12px; height: 12px; background: var(--color-primary); border-radius: 2px; flex-shrink: 0; margin-left: 12px; margin-top: 2px; }
.stats__label { position: relative; z-index: 1; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; margin-top: auto; }

/* ====== SERVICES ====== */
/* Services header — лейбл слева, заголовок справа */
.services { padding-left: 24px; padding-right: 24px; }
.services__header {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 40px;
}
.services__label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    white-space: nowrap;
    padding-top: 10px;
}
.services__title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--color-dark);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.services__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.services__card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 258 / 305;
    transition: var(--tr);
    text-decoration: none;
    color: var(--color-primary);
}
.services__card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.services__card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
}
.services__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.services__icon {
    width: 63px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    border: none;
    border-radius: 6px;
    color: var(--color-primary);
}
.services__icon img, .services__icon svg { width: 56px; height: 56px; }
.services__card-bottom { margin-top: auto; }
.services__card-title { font-size: 21px; font-weight: 500; color: var(--color-primary); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 36px; }
.services__card-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--color-primary); text-decoration: none;
}
.services__card-arrow { width: 18px; height: 18px; }
.services__card-link svg { width: 18px; height: 18px; }

/* ====== ACCORDION ====== */
/* ====== SOLUTIONS ====== */
.solutions {
    position: relative;
    background: var(--color-primary); padding: 56px 24px 48px;
}
.solutions::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 152px;
    width: 1px;
    background: rgba(255,255,255,0.15);
    z-index: 1;
    pointer-events: none;
}
.solutions__header {
    display: flex; align-items: flex-start; gap: 40px; margin-bottom: 0;
    padding-bottom: 32px;
}
.solutions__label {
    font-size: 12px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.4); white-space: nowrap; padding-top: 10px;
    width: 129px; flex-shrink: 0;
}
.solutions__title {
    font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: #fff;
    text-transform: uppercase; line-height: 1.1; letter-spacing: -0.02em; flex: 1;
}
.solutions__hint {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35); white-space: nowrap; padding-top: 10px; text-align: right;
}

.solutions__accordion {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 0 -24px;
}
.solutions__item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.solutions__item.is-open { margin: 0; }
.solutions__item-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 24px 28px 193px; width: 100%; text-align: left; cursor: pointer; gap: 16px;
}
.solutions__item-title {
    font-size: 18px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; color: #fff; transition: var(--tr-fast);
}
.solutions__item-icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.solutions__item-icon svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.5); }
.solutions__icon-close { display: none; }
.solutions__item.is-open .solutions__icon-chevron { display: none; }
.solutions__item.is-open .solutions__icon-close { display: block; }

.solutions__item-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.solutions__item.is-open .solutions__item-body { max-height: 900px; }
.solutions__item-content { padding: 0 24px 28px 193px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.solutions__item-left { display: flex; flex-direction: column; gap: 20px; }

.solutions__tags { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.solutions__tag {
    display: inline-block; padding: 8px 16px; font-size: 12px;
    color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px; line-height: 1.4;
}
.solutions__actions { display: flex; gap: 16px; align-items: center; margin-top: 4px; }
.solutions__btn-primary {
    display: inline-block; padding: 14px 28px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
    background: var(--color-dark); border-radius: var(--radius-sm); transition: var(--tr);
}
.solutions__btn-primary:hover { background: #1a1a4e; }
.solutions__btn-link {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    color: #fff; text-decoration: underline; text-underline-offset: 3px;
}
.solutions__btn-link:hover { text-decoration: none; }
.solutions__item-image {
    background: rgba(255,255,255,0.1); border-radius: var(--radius-md);
    min-height: 200px; overflow: hidden;
}
.solutions__item-image img { width: 100%; height: 100%; object-fit: cover; }

/* Solutions light theme */
.solutions--light { background: #fff; }
.solutions--light::before { background: rgba(0,0,0,0.1); }
.solutions--light .solutions__label { color: var(--color-gray-400); }
.solutions--light .solutions__title { color: var(--color-primary); }
.solutions--light .solutions__hint { color: var(--color-gray-400); }
.solutions--light .solutions__accordion { border-top-color: rgba(0,0,0,0.1); }
.solutions--light .solutions__item { border-bottom-color: rgba(0,0,0,0.1); }
.solutions--light .solutions__item-title { color: var(--color-primary); }
.solutions--light .solutions__item-icon svg { stroke: var(--color-primary); }
.solutions--light .solutions__tag {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.solutions--light .solutions__btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.solutions--light .solutions__btn-primary:hover { background: var(--color-primary-dark); }
.solutions--light .solutions__btn-link { color: var(--color-dark); }
.solutions--light .solutions__item-image {
    background: rgba(34,34,230,0.06);
}

/* ====== PROJECTS ====== */
.projects { background: #fff; padding: 56px 0 48px; overflow: hidden; }
.projects__header {
    display: flex; align-items: flex-start; gap: 40px; margin-bottom: 32px;
    padding: 0 24px;
}
.projects__label {
    font-size: 12px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--color-gray-400); white-space: nowrap; padding-top: 10px;
}
.projects__title {
    font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: var(--color-primary);
    text-transform: uppercase; line-height: 1.1; flex: 1;
}
.projects__slider { overflow: hidden; }
.projects__track {
    display: flex; gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.projects__card {
    width: 860px;
    min-width: 860px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px;
}
.projects__card-tag {
    display: inline-block; padding: 10px 24px; font-size: 13px; font-weight: 500;
    color: var(--color-primary); background: rgba(34,34,230,0.08);
    border: none; border-radius: 24px; margin-bottom: 24px; align-self: flex-start;
}
.projects__card-title {
    font-size: 22px; font-weight: 800; color: var(--color-primary);
    text-transform: uppercase; line-height: 1.25; margin-bottom: 24px;
}
.projects__card-left {
    display: flex; flex-direction: column;
}
.projects__card-left .projects__card-section:first-of-type {
    margin-top: auto;
}
.projects__card-label {
    display: block; font-size: 15px; font-weight: 700; color: var(--color-primary); margin-bottom: 8px;
}
.projects__card-text { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; }
.projects__card-section { margin-bottom: 20px; }
.projects__card-right { display: flex; flex-direction: column; gap: 12px; min-height: 340px; }
.projects__card-img-main {
    width: 100%; flex: 1; min-height: 0; object-fit: cover; border-radius: 8px;
}
.projects__card-placeholder { background: rgba(34,34,230,0.08); border-radius: 8px; }
.projects__card-img-main.projects__card-placeholder { width: 100%; flex: 1; }
.projects__card-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.projects__card-thumb { aspect-ratio: 1; min-height: 60px; object-fit: cover; border-radius: 8px; }
.projects__nav { display: flex; gap: 24px; padding-top: 6px; }
.projects__nav-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    transition: var(--tr);
}
.projects__nav-btn:hover { opacity: 0.6; }
.projects__nav-btn svg { width: 24px; height: 24px; stroke: var(--color-dark); }

/* ====== WHY US — Bento ====== */
/* ====== WHY US — Bento 4×2 ====== */
.why-us {
    background: var(--color-primary);
    color: #fff;
    padding: 56px 24px 48px;
}
.why-us__header {
    display: flex; align-items: flex-start; gap: 40px; margin-bottom: 32px;
}
.why-us__label {
    font-size: 12px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.4); white-space: nowrap; padding-top: 10px;
}
.why-us__title {
    font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: #fff;
    text-transform: uppercase; line-height: 1.1; flex: 1;
}
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.why-us__cell {
    border: 0.5px solid rgba(255,255,255,0.15);
    height: clamp(200px, 20vw, 280px);
    position: relative;
}
.why-us__cell--card {
    padding: 20px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.why-us__icon {
    position: absolute; top: 20px; left: 20px;
    width: 28px; height: 28px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: block;
}
.why-us__cell-title {
    font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.03em; line-height: 1.35; color: #fff;
}
.why-us__cell--image {
    padding: 0; overflow: hidden;
}
.why-us__cell--image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.why-us__cell--empty {
    background: transparent;
    border: none;
}

/* ====== CONTACT ====== */
.contact {
    background: var(--color-primary);
    padding: 56px 24px 64px;
}
.contact__frame {
    position: relative;
    background: url('../img/contact-frame.png') no-repeat center / 100% 100%;
    padding: 48px;
    min-height: 494px;
    display: flex;
    align-items: center;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}
.contact__title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800; text-transform: uppercase;
    line-height: 1.15; color: #fff;
    margin-bottom: 24px;
}
.contact__text {
    font-size: 14px; color: rgba(255,255,255,0.6);
    line-height: 1.65; max-width: 440px;
}
.contact__form-wrap {
    display: flex; flex-direction: column; gap: 12px;
}
.contact__input {
    padding: 14px 16px;
    border: none; border-radius: 8px;
    font-size: 14px; font-family: inherit;
    background: #fff; color: var(--color-dark);
    width: 100%;
}
.contact__input::placeholder { color: var(--color-gray-400); }
.contact__input:focus { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 1px; }
.contact__textarea { resize: vertical; min-height: 80px; }
.contact__select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact__agree {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; cursor: pointer;
}
.contact__agree input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
    accent-color: var(--color-primary); border-radius: 4px;
    cursor: pointer;
}
.contact__agree a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 2px; }
.contact__agree a:hover { color: #fff; }
.contact__submit {
    width: 100%; padding: 16px; font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    background: var(--color-dark); color: #fff;
    border: none; border-radius: 8px; cursor: pointer;
    transition: var(--tr); font-family: inherit;
}
.contact__submit:hover { background: #1a1a3e; }
.contact__status { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.8); }

/* Form validation errors */
.contact__input--error {
    border-color: #ff6b6b !important;
}
.contact__error-msg {
    display: block;
    font-size: 12px;
    color: #ff6b6b;
    margin: -4px 0 8px 4px;
    line-height: 1.4;
}
.contact-modal .contact__error-msg {
    color: #fca5a5;
}
.contact-modal .contact__input--error {
    border-color: #fca5a5 !important;
}

/* ====== SUCCESS MODAL ====== */
.success-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999; align-items: center; justify-content: center;
}
.success-modal.is-active { display: flex; }
.success-modal__overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.success-modal__content {
    position: relative; z-index: 1;
    background: #214FEE;
    color: #fff;
    padding: 56px 48px;
    width: 100%; max-width: 100%;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: center;
}
.success-modal__close {
    position: absolute; top: 24px; right: 32px;
    background: none; border: none; color: #fff;
    font-size: 32px; cursor: pointer; line-height: 1;
    opacity: 0.7; transition: var(--tr-fast);
}
.success-modal__close:hover { opacity: 1; }
.success-modal__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800; text-transform: uppercase;
    line-height: 1.15; max-width: 650px;
    margin-bottom: 24px;
}
.success-modal__text {
    font-size: 14px; color: rgba(255,255,255,0.7);
    line-height: 1.6; max-width: 540px;
}

/* ====== FOOTER ====== */
/* ====== FILE UPLOAD ====== */
.file-upload {
    position: relative;
    border: 1px dashed rgba(255,255,255,0.25);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: var(--tr-fast);
}
.file-upload:hover { border-color: rgba(255,255,255,0.4); }

.file-upload__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    cursor: pointer;
    text-align: center;
}
.file-upload__icon { color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.file-upload__label { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.file-upload__hint { font-size: 11px; color: rgba(255,255,255,0.35); }
.file-upload__input {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer;
}

.file-upload__progress,
.file-upload__done {
    padding: 20px 24px;
}
.file-upload__meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}
.file-upload__name { font-size: 14px; font-weight: 600; color: #fff; }
.file-upload__size { font-size: 12px; color: rgba(255,255,255,0.4); }
.file-upload__status { font-size: 12px; color: rgba(255,255,255,0.4); display: block; }
.file-upload__status--ok { color: rgba(255,255,255,0.5); }
.file-upload__bar {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}
.file-upload__bar-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s ease;
}
.file-upload__done-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.file-upload__remove {
    background: none; border: none;
    color: #ff6b6b;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.file-upload__remove:hover { text-decoration: underline; }

/* ====== CONTACT MODAL ====== */
.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.contact-modal.is-active { display: flex; }
.contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.contact-modal__content {
    position: relative;
    z-index: 1;
    background: #214FEE;
    width: 100%;
    max-width: 100%;
    padding: 56px 48px;
    min-height: 280px;
    max-height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
}
.contact-modal__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--tr-fast);
}
.contact-modal__close:hover { opacity: 1; }
.contact-modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-modal__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}
.contact-modal__text {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.contact-modal .contact__input,
.contact-modal .contact__select,
.contact-modal .contact__textarea {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    color: var(--color-dark);
    padding: 14px 18px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
}
.contact-modal .contact__input::placeholder { color: var(--color-gray-400); }
.contact-modal .contact__select { appearance: none; cursor: pointer; color: var(--color-gray-400); }
.contact-modal .contact__select option { color: var(--color-dark); }
.contact-modal .contact__textarea { resize: vertical; min-height: 80px; }
.contact-modal .contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-modal .contact__agree { color: rgba(255,255,255,0.7); font-size: 12px; }
.contact-modal .contact__agree a { color: #fff; text-decoration: underline; }
.contact-modal .contact__submit {
    width: 100%;
    padding: 16px;
    background: var(--color-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-top: 8px;
}
.contact-modal .contact__submit:hover { background: #1a1a3e; }
.contact-modal .file-upload { border-color: rgba(255,255,255,0.35); }
.contact-modal .file-upload:hover { border-color: rgba(255,255,255,0.5); }
.contact-modal .file-upload__label { color: #fff; }
.contact-modal .file-upload__icon { color: rgba(255,255,255,0.6); }
.contact-modal .file-upload__hint { color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
    .contact-modal__content { padding: 40px 20px; }
    .contact-modal__inner { grid-template-columns: 1fr; gap: 24px; }
    .contact-modal .contact__row { grid-template-columns: 1fr; }
}

.site-footer { background: #000A30; color: #fff; }
.site-footer .container { max-width: none; padding: 0 24px; }
.site-footer__bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-footer__bar-logo { display: flex; align-items: center; }
.site-footer__bar-logo img { height: 40px; width: 160px; object-fit: contain; }
.site-footer__bar-right { display: flex; align-items: center; gap: 16px; }
.site-footer__bar-phone { font-size: 20px; font-weight: 700; color: #fff; }
.site-footer__bar-phone:hover { opacity: 0.8; }
.site-footer__socials { display: flex; gap: 8px; }
.site-footer__social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px;
    border-radius: 14px; transition: var(--tr-fast);
    background: none;
}
.site-footer__social-link:hover { opacity: 0.8; }
.site-footer__social-link img { width: 60px; height: 60px; border-radius: 14px; }
.site-footer__top {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 36px; padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-footer__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: #fff; }
.site-footer__col--brand { padding-right: 24px; }
.site-footer__desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.55; margin-bottom: 16px; }
.site-footer__address { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.site-footer__address-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 4px; }
.site-footer__links { list-style: none; }
.site-footer__links li { list-style: none; }
.site-footer__links--emails { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.site-footer__links--emails a {
    font-size: 14px; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    min-width: 196px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
}
.site-footer__links a { display: block; font-size: 13px; color: #fff; padding: 3px 0; transition: var(--tr-fast); }
.site-footer__links--emails a { display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.site-footer__links--legal a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__links a:hover { color: rgba(255,255,255,0.7); }
.site-footer__contact-item { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; font-size: 13px; color: rgba(255,255,255,0.55); }
.site-footer__contact-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.35; }
.site-footer__contact-item a:hover { color: #fff; }
.site-footer__bottom {
    padding: 18px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px; color: rgba(255,255,255,0.25);
}

/* ====== RESPONSIVE ====== */
/* ====== LIGHT THEME (service, solution, about, contacts) ====== */
.theme-light { background: #fff; }
.theme-light .hero { background: #fff; }
.theme-light .site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-gray-200);
}
.theme-light .site-header--scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.theme-light .site-header__nav a, .theme-light .site-header__nav li a { color: var(--color-gray-700); }
.theme-light .site-header__nav a:hover, .theme-light .site-header__nav li a:hover { color: var(--color-dark); }
.theme-light .site-header__phone {
    background: #00020A;
    border-color: #00020A;
    color: #fff;
}
.theme-light .site-header__phone:hover {
    background: #1a1c24;
    border-color: #1a1c24;
    color: #fff;
}
.logo-dark { display: none; }
.theme-light .logo-light { display: none; }
.theme-light .logo-dark { display: block; }
.theme-light .site-header__burger span { background: var(--color-dark); }
.theme-light .stats { background: #fff; }

@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr 280px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: repeat(3, 1fr); }
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__cell--empty { display: none; }
    .solutions__item-content { grid-template-columns: 1fr; padding-left: 24px; }
    .solutions__item-header { padding-left: 24px; }
    .solutions::before { display: none; }
    .projects__card { width: 650px; min-width: 650px; }
}

@media (max-width: 768px) {
    .section { padding: 52px 0; }
    .section__header { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }

    /* Header */
    .site-header__nav { display: none; }
    .site-header__phone { display: none; }
    .site-header__social { display: none; }
    .site-header__burger { display: flex; }
    .site-header__actions { margin-left: auto; }
    .site-header .container { padding: 0 16px; }

    /* Hero */
    .hero { grid-template-columns: 1fr; grid-template-rows: auto; padding: 90px 16px 16px; }
    .hero__sidebar { display: none; }
    .hero__left { padding: 32px 20px; min-height: 340px; }
    .hero__left > .breadcrumbs { top: 32px; left: 20px; }
    .hero__title { font-size: clamp(24px, 7vw, 36px); margin-bottom: 16px; }
    .hero__subtitle { font-size: 13px; }

    /* Services */
    .services { padding-left: 16px; padding-right: 16px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .services__header { flex-direction: column; gap: 8px; }
    .services__card-title { font-size: 16px; margin-bottom: 20px; }
    .services__card-inner { padding: 16px; }
    .services__card-link { font-size: 14px; }

    /* Solutions / Production accordion */
    .solutions { padding: 40px 16px 36px; }
    .solutions__header { flex-direction: column; gap: 8px; }
    .solutions__label { width: auto; padding-top: 0; }
    .solutions__hint { display: none; }
    .solutions__item-header { padding: 20px 16px; }
    .solutions__item-content { padding: 0 16px 24px; grid-template-columns: 1fr; }
    .solutions__item-title { font-size: 15px; }
    .solutions__tag { font-size: 11px; padding: 6px 12px; }
    .solutions__btn-primary { padding: 12px 20px; font-size: 11px; }
    .solutions__accordion { margin: 0 -16px; }

    /* Projects */
    .projects { padding: 40px 0 36px; }
    .projects__header { flex-direction: column; gap: 8px; padding: 0 16px; }
    .projects__card { width: 85vw; min-width: 85vw; grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }
    .projects__card-right { min-height: 200px; }
    .projects__card-title { font-size: 18px; margin-bottom: 16px; }
    .projects__card-tag { padding: 8px 16px; font-size: 12px; margin-bottom: 16px; }
    .projects__nav { gap: 12px; }

    /* Why Us */
    .why-us { padding: 40px 16px 36px; }
    .why-us__grid { grid-template-columns: 1fr 1fr; }
    .why-us__cell { height: 160px; }
    .why-us__cell-title { font-size: 13px; }
    .why-us__cell--card { padding: 16px; }
    .why-us__icon { top: 14px; left: 14px; width: 24px; height: 24px; }
    .why-us__header { flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .why-us__title { font-size: 24px; }

    /* Contact form */
    .contact { padding: 40px 16px 48px; }
    .contact__inner { grid-template-columns: 1fr; gap: 24px; }
    .contact__frame { padding: 24px; min-height: auto; background-size: cover; }
    .contact__row { grid-template-columns: 1fr; }
    .contact__title { font-size: 20px; margin-bottom: 16px; }
    .contact__text { font-size: 13px; }

    /* Footer */
    .site-footer .container { padding: 0 16px; }
    .site-footer__bar { flex-direction: column; gap: 12px; padding: 18px 0; }
    .site-footer__bar-right { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .site-footer__bar-phone { font-size: 16px; }
    .site-footer__social-link, .site-footer__social-link img { width: 48px; height: 48px; border-radius: 12px; }
    .site-footer__top { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
    .site-footer__links--emails { gap: 8px; }
    .site-footer__links--emails a { min-width: 0; width: 100%; height: 48px; font-size: 13px; border-radius: 12px; }
    .site-footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
    .site-footer__heading { margin-bottom: 12px; }
    .site-footer__desc { font-size: 12px; }

    /* Modal */
    .contact-modal__content { padding: 32px 16px; }
    .contact-modal__inner { grid-template-columns: 1fr; gap: 20px; }
    .contact-modal .contact__row { grid-template-columns: 1fr; }
    .contact-modal__title { font-size: 20px; }
    .contact-modal__close { top: 16px; right: 16px; font-size: 28px; }

    /* Success modal */
    .success-modal__content { padding: 40px 20px; }
    .success-modal__close { top: 16px; right: 20px; }

    /* Form elements */
    .form-row { grid-template-columns: 1fr; }
    .file-upload__empty { padding: 20px 16px; }
    .file-upload__label { font-size: 13px; }
}

@media (max-width: 480px) {
    :root { --gap: 16px; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stats__item { padding: 18px 16px; min-height: 120px; }
    .services__grid { grid-template-columns: 1fr; }
    .services__card { aspect-ratio: auto; }
    .services__card-inner { padding: 20px; min-height: 200px; }
    .site-footer__top { grid-template-columns: 1fr; }
    .hero__left { padding: 24px 16px; min-height: 280px; }
    .hero { padding: 86px 12px 12px; }
    .projects__card { width: 90vw; min-width: 90vw; padding: 20px 16px; }
    .projects__card-title { font-size: 16px; }
    .why-us__grid { grid-template-columns: 1fr; }
    .why-us__cell { height: 140px; }
    .contact__frame { padding: 20px 16px; }
    .contact__title { font-size: 18px; }
    .solutions { padding: 32px 12px 28px; }
    .solutions__item-header { padding: 16px 12px; }
    .solutions__item-content { padding: 0 12px 20px; }
    .solutions__accordion { margin: 0 -12px; }
    .solutions__title { font-size: 22px; }
}

/* ===== Защищённые контакты (rp-contact) ===== */
.rp-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rp-contact__value {
    display: inline-flex;
    align-items: baseline;
    user-select: none; -webkit-user-select: none; -moz-user-select: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    font-variant-numeric: tabular-nums;
    letter-spacing: .3px;
    color: inherit;
    white-space: nowrap;
}
.rp-contact__visible { color: inherit; }
.rp-contact__blur {
    display: inline-block;
    margin-left: 2px;
    filter: blur(5px); -webkit-filter: blur(5px);
    color: inherit;
    opacity: .85;
    text-shadow: 0 0 8px currentColor;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.rp-contact.is-revealed .rp-contact__blur {
    filter: none; -webkit-filter: none;
    text-shadow: none; opacity: 1;
}

.rp-contact__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--color-primary, #F26522);
    border: 1px solid var(--color-primary, #F26522);
    border-radius: 6px;
    font-size: 13px; font-weight: 600; line-height: 1.4;
    cursor: pointer; white-space: nowrap;
    font-family: inherit; text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.rp-contact__btn,
.rp-contact__btn:link,
.rp-contact__btn:visited { color: #fff; }

.rp-contact__btn:hover {
    background: var(--color-primary-dark, #D4551A);
    border-color: var(--color-primary-dark, #D4551A);
}
.rp-contact__btn:active { transform: translateY(1px); }

.rp-contact__btn--copy {
    background: transparent;
    color: var(--color-primary, #F26522);
    border-color: var(--color-primary, #F26522);
}
.rp-contact__btn--copy:hover {
    background: var(--color-primary, #F26522);
    color: #fff;
}
.rp-contact.is-copied .rp-contact__btn--copy {
    background: #22c55e !important;
    color: #fff !important;
    border-color: #22c55e !important;
}
.rp-contact.is-revealed .rp-contact__btn--show { display: none; }

.rp-contact--phone .rp-contact__btn--copy { display: none; }
@media (max-width: 768px) {
    .rp-contact--phone .rp-contact__btn--show { display: none; }
    .rp-contact--phone .rp-contact__btn--copy { display: inline-flex; }
    .rp-contact--phone .rp-contact__value {
        pointer-events: auto;
        cursor: pointer;
        user-select: none; -webkit-user-select: none; -moz-user-select: none;
        -webkit-touch-callout: none;
    }
}

.rp-contact--email.rp-contact--plain .rp-contact__value--plain {
    user-select: none; -webkit-user-select: none; -moz-user-select: none;
    pointer-events: none;
    filter: none; -webkit-filter: none;
    opacity: 1; text-shadow: none;
}

.rp-contact__btn--mobile  { display: none; }
.rp-contact__btn--desktop { display: inline-flex; }
@media (max-width: 768px) {
    .rp-contact__btn--desktop { display: none; }
    .rp-contact__btn--mobile  { display: inline-flex; }
}

.dark-block .rp-contact__btn { box-shadow: 0 2px 6px rgba(0, 0, 0, .25); }
.dark-block .rp-contact__btn--copy {
    color: #fff; border-color: #fff; background: transparent;
}
.dark-block .rp-contact__btn--copy:hover { background: #fff; color: #111; }
