/* ===== TOKENS ===== */
:root {
--bg: #ffffff;
--bg-soft: #f5f6f8;
--bg-tint: #eaf2fb;
--text: #1a1f2b;
--text-2: #3a4254;
--text-3: #5a6373;
--border: #e2e5eb;
--primary: #0a4f8f;
--primary-2: #1e5f9e;
--primary-h: #083d70;
--accent: #e87b1e;
--accent-h: #c8651a;
--dark: #0e1e36;
--dark-2: #0a1729;
--success: #2e7d32;
--error: #c62828;
--shadow-sm: 0 1px 2px rgba(10, 30, 60, .06);
--shadow-md: 0 8px 24px rgba(10, 30, 60, .08);
--shadow-lg: 0 20px 48px rgba(10, 30, 60, .14);
--radius: 8px;
--radius-lg: 12px;
--radius-xl: 16px;
--container: 1280px;
--gutter: clamp(20px, 4vw, 48px);
--section: clamp(64px, 8vw, 120px);
--ease: cubic-bezier(.4,0,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: 'Onest', system-ui, -apple-system, sans-serif;
font-size: 16px;
line-height: 1.55;
color: var(--text);
background: var(--bg);
-webkit-font-smoothing: antialiased;
font-feature-settings: 'tnum' 1, 'lnum' 1;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-h); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: 'Manrope', 'Onest', sans-serif; margin: 0; line-height: 1.18; letter-spacing: -.01em; }
p { margin: 0; }
.container {
max-width: var(--container);
margin: 0 auto;
padding-inline: var(--gutter);
}
/* ===== EYEBROW / SECTION HEAD ===== */
.eyebrow {
display: inline-block;
font-size: 13px;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--primary);
font-weight: 600;
margin-bottom: 16px;
}
.eyebrow--light { color: #7fc4ff; }
.section-head {
margin-bottom: clamp(40px, 5vw, 64px);
max-width: 880px;
}
.section-head h2 {
font-size: clamp(28px, 3.4vw, 44px);
font-weight: 700;
margin-bottom: 16px;
}
.section-head p {
font-size: clamp(15px, 1.4vw, 18px);
color: var(--text-3);
max-width: 720px;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }
.section-head--row {
display: flex;
align-items: end;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
max-width: 100%;
}
/* ===== BUTTONS ===== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 24px;
font-size: 15px;
font-weight: 600;
border: 1px solid transparent;
border-radius: var(--radius);
background: transparent;
color: inherit;
transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
white-space: nowrap;
text-decoration: none;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover:not(:disabled) { background: var(--primary-h); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); color: #fff; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.15); }
.btn--outline { border-color: var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--accent); }
.btn--white:hover { background: #fff; color: var(--accent-h); transform: translateY(-1px); }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--xl { padding: 18px 40px; font-size: 17px; }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--full { width: 100%; }
/* ===== HEADER ===== */
.header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(255,255,255,.92);
backdrop-filter: blur(10px);
transition: box-shadow .25s var(--ease);
}
.header.is-scrolled { box-shadow: 0 2px 8px rgba(10,79,143,.06); }
.header__inner {
display: grid;
grid-template-columns: auto 1fr auto auto;
align-items: center;
gap: 32px;
height: 76px;
}
.header__logo {
display: inline-flex; align-items: center; gap: 10px;
color: var(--primary);
font-weight: 700;
font-size: 18px;
letter-spacing: .02em;
}
.logo-mark { width: 30px; height: 30px; }
.logo-text { color: var(--text); font-family: 'Manrope', sans-serif; }
.logo-text--accent { color: var(--primary); }
.logo-img { height: 44px; width: auto; display: block; }
.logo-img--white { height: 48px; }
@media (max-width: 720px) {
.logo-img { height: 36px; }
.logo-img--white { height: 40px; }
}
.header__nav { display: flex; gap: 28px; }
.header__nav a {
color: var(--text);
font-size: 15px;
font-weight: 500;
position: relative;
padding: 6px 0;
}
.header__nav a:hover { color: var(--primary); }
.header__nav a::after {
content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
background: var(--primary); transition: width .25s var(--ease);
}
.header__nav a:hover::after { width: 100%; }
.header__contact { display: flex; align-items: center; gap: 16px; }
.header__phone {
display: flex; align-items: center; gap: 10px;
color: var(--text);
}
.header__phone svg { color: var(--primary); }
.header__phone strong { display: block; font-weight: 700; font-size: 16px; line-height: 1.2; }
.header__phone em { font-style: normal; font-size: 12px; color: var(--text-3); }
.header__cta { padding: 10px 18px; font-size: 14px; }
.header__burger { display: none; background: none; border: 0; padding: 8px; }
.header__burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: transform .25s var(--ease); }
@media (max-width: 1080px) {
.header__nav { display: none; }
.header__contact { display: none; }
.header__burger { display: block; }
.header__inner { grid-template-columns: auto 1fr auto; height: 64px; }
}
/* ===== HERO (single screen, photo cross-fade) ===== */
.hero {
position: relative;
overflow: hidden;
background: var(--dark);
isolation: isolate;
}
.hero__bgs { position: absolute; inset: 0; z-index: 0; }
.hero__bg {
position: absolute; inset: 0;
background-size: cover; background-position: center;
opacity: 0; pointer-events: none;
transition: opacity 1.4s var(--ease), transform 8s linear;
transform: scale(1.05);
}
.hero__bg.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
position: absolute; inset: 0; z-index: 1;
background:
linear-gradient(180deg, rgba(8,20,40,.55) 0%, rgba(8,20,40,.78) 60%, rgba(8,20,40,.92) 100%),
linear-gradient(90deg, rgba(8,20,40,.55) 0%, rgba(8,20,40,.25) 100%);
}
.hero__content {
position: relative; z-index: 2;
padding-block: 88px 96px;
max-width: 1100px;
}
.hero__title {
font-size: clamp(28px, 4.6vw, 56px);
font-weight: 800;
color: #fff;
letter-spacing: -.015em;
line-height: 1.08;
margin-bottom: 18px;
max-width: 920px;
overflow-wrap: break-word;
hyphens: manual;
}
.hero__lead {
font-size: clamp(17px, 1.6vw, 22px);
color: rgba(255,255,255,.88);
line-height: 1.45;
font-weight: 500;
margin-bottom: 36px;
max-width: 820px;
}
.hero__features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom: 36px;
}
.hero__features li {
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.14);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: var(--radius-lg);
padding: 20px;
color: rgba(255,255,255,.86);
}
.hero__features svg { color: #5fa8ff; margin-bottom: 10px; }
.hero__features h3 {
color: #fff; font-size: 16px; font-weight: 600;
margin-bottom: 8px; line-height: 1.3;
}
.hero__features p { font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) { .hero__features { grid-template-columns: 1fr; } }
.hero__stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
padding: 22px 26px;
margin-bottom: 32px;
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.12);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-radius: var(--radius-lg);
}
.hero__stats li { text-align: left; min-width: 0; }
.hero__stats .counter,
.hero__stats .counter-text {
display: block;
font-family: 'Manrope', sans-serif;
font-size: clamp(28px, 3.4vw, 42px);
font-weight: 800;
color: #fff;
line-height: 1;
letter-spacing: -.02em;
}
.hero__stats em {
font-style: normal;
display: block; margin-top: 8px;
font-size: 13px;
color: rgba(255,255,255,.7);
line-height: 1.35;
}
@media (max-width: 880px) {
.hero__stats { grid-template-columns: repeat(2, 1fr); padding: 18px 20px; }
}
@media (max-width: 480px) {
.hero__stats .counter, .hero__stats .counter-text { font-size: 26px; }
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) {
.hero__content { padding-block: 64px 72px; }
.hero__cta .btn { flex: 1 1 220px; }
}
/* legacy .counters/.counter — also reused on hero stats */
.counter, .counter-text { letter-spacing: -.02em; }
/* ===== SERVICES ===== */
.services { padding: var(--section) 0; background: var(--bg); }
.promo {
position: relative;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
border-radius: var(--radius-xl);
padding: 32px 40px;
display: flex; align-items: center; gap: 24px; justify-content: space-between;
color: #fff;
margin-bottom: clamp(56px, 7vw, 96px);
overflow: hidden;
box-shadow: 0 16px 40px rgba(232,123,30,.25);
}
.promo__text { flex: 1; min-width: 0; }
.promo__eyebrow {
display: inline-block;
font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
background: rgba(0,0,0,.18); padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
font-weight: 700;
}
.promo h3 {
font-size: clamp(18px, 2.2vw, 26px);
font-weight: 700; line-height: 1.3; max-width: 720px;
}
.promo .btn { z-index: 2; position: relative; }
.promo__decor {
position: absolute; right: -32px; top: 50%; transform: translateY(-50%);
width: 200px; height: 200px;
color: #fff;
pointer-events: none;
}
@media (max-width: 720px) {
.promo { flex-direction: column; align-items: stretch; padding: 24px; text-align: left; }
}
.cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
@media (max-width: 1080px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }
.service-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 28px;
cursor: pointer;
transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover {
transform: translateY(-4px);
border-color: var(--primary);
box-shadow: 0 12px 32px rgba(10,79,143,.08);
}
.service-card svg { color: var(--primary); margin-bottom: 16px; }
.service-card h3 {
font-size: 19px; font-weight: 600;
line-height: 1.3; margin-bottom: 8px;
}
.service-card p { font-size: 15px; color: var(--text-3); margin-bottom: 16px; }
.service-card__more {
display: inline-flex; align-items: center; gap: 6px;
font-size: 14px; font-weight: 600; color: var(--primary);
}
.service-card:hover .service-card__more svg { transform: translateX(4px); transition: transform .2s var(--ease); }
/* ===== ADVANTAGES (dark) ===== */
.advantages {
position: relative;
padding: var(--section) 0;
background: linear-gradient(180deg, #0b1a33 0%, #0e1e36 60%, #0b1a33 100%);
color: #fff;
overflow: hidden;
}
.advantages::before {
content: "";
position: absolute; inset: 0; pointer-events: none;
background:
radial-gradient(circle at 88% 18%, rgba(30,95,158,.28), transparent 45%),
radial-gradient(circle at 10% 82%, rgba(232,123,30,.18), transparent 50%);
}
.advantages .container { position: relative; z-index: 1; }
.advantages .section-head h2 { color: #fff; }
.advantages .section-head p { color: rgba(255,255,255,.72); }
.advantages .eyebrow { color: rgba(255,255,255,.55); }
.adv-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px;
}
@media (max-width: 880px) { .adv-grid { grid-template-columns: 1fr; } }
.adv-card {
position: relative;
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.1);
border-left: 4px solid var(--accent);
border-radius: var(--radius-lg);
padding: 32px;
transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.adv-card:hover {
transform: translateY(-3px);
background: rgba(255,255,255,.06);
border-color: rgba(255,255,255,.18);
border-left-color: var(--accent);
}
.adv-card__icon {
width: 56px; height: 56px;
border-radius: 12px;
background: rgba(232,123,30,.14);
color: var(--accent);
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px;
}
.adv-card h3 {
font-size: clamp(18px, 1.8vw, 22px);
font-weight: 700; line-height: 1.3;
margin-bottom: 12px;
color: #fff;
}
.adv-card p { font-size: 15.5px; color: rgba(255,255,255,.74); line-height: 1.6; }
.adv-card__badge {
display: inline-block;
margin-top: 16px;
background: var(--accent);
color: #fff;
font-size: 13px; font-weight: 600;
padding: 6px 12px;
border-radius: 6px;
}
.adv-cta {
display: flex; flex-direction: column; align-items: center; gap: 14px;
margin-top: 56px; text-align: center;
}
.adv-cta p { font-size: 14px; color: rgba(255,255,255,.6); }
.adv-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.advantages .btn--outline {
background: transparent;
border-color: rgba(255,255,255,.4);
color: #fff;
}
.advantages .btn--outline:hover {
background: rgba(255,255,255,.08);
border-color: #fff;
}
/* ===== PROCESS ===== */
.process { padding: var(--section) 0; background: var(--bg); }
.link-arrow {
display: inline-flex; align-items: center; gap: 6px;
font-size: 15px; font-weight: 600; color: var(--primary);
}
.link-arrow:hover svg { transform: translateX(4px); transition: transform .2s var(--ease); }
.steps {
position: relative;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
}
.steps::before {
content: '';
position: absolute;
top: 28px; left: 6%; right: 6%; height: 2px;
background-image: linear-gradient(90deg, var(--border) 50%, transparent 50%);
background-size: 12px 2px; background-repeat: repeat-x;
z-index: 0;
}
.step {
position: relative;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 24px;
z-index: 1;
transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--primary); }
.step__num {
width: 56px; height: 56px;
border-radius: 50%;
background: var(--primary);
color: #fff;
display: flex; align-items: center; justify-content: center;
font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 22px;
margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.step p { font-size: 14px; color: var(--text-3); line-height: 1.55; }
@media (max-width: 1080px) {
.steps { grid-template-columns: 1fr; gap: 12px; }
.steps::before { display: none; }
.step {
display: grid;
grid-template-columns: 48px 1fr;
grid-template-areas:
'num title'
'num desc';
column-gap: 16px;
row-gap: 4px;
padding: 16px 18px;
align-items: start;
}
.step__num { grid-area: num; width: 48px; height: 48px; font-size: 18px; margin-bottom: 0; align-self: start; }
.step h3 { grid-area: title; align-self: center; min-height: 48px; display: flex; align-items: center; }
.step p { grid-area: desc; }
}
@media (max-width: 480px) {
.step h3 { font-size: 15px; min-height: 0; display: block; margin-top: 4px; margin-bottom: 4px; }
.step p { font-size: 13.5px; line-height: 1.5; }
}
.process__cta {
margin-top: 56px;
display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.process__cta p { font-size: 14px; color: var(--text-3); }
/* ===== CASES ===== */
.cases { padding: var(--section) 0; background: var(--bg-soft); }
.cases-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 64px;
}
@media (max-width: 1080px) { .cases-grid { grid-template-columns: 1fr; } }
.case {
background: #fff;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--border);
transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case__media {
aspect-ratio: 16/9;
background-size: cover; background-position: center;
background-color: #1a2a40;
position: relative;
display: flex; align-items: center; justify-content: center;
}
.case__media::after {
content: ''; position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4));
}
.play {
position: relative; z-index: 2;
width: 72px; height: 72px;
border: 0;
border-radius: 50%;
background: rgba(255,255,255,.95);
color: var(--primary);
display: flex; align-items: center; justify-content: center;
padding-left: 6px;
transition: transform .2s var(--ease), background .2s var(--ease);
box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.play:hover { transform: scale(1.08); background: #fff; }
.case__info { padding: 22px 24px; }
.case__info h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; line-height: 1.35; }
.case__info p { font-size: 14.5px; color: var(--text-3); line-height: 1.5; margin-bottom: 12px; }
.case__meta {
display: inline-block;
font-size: 12px; font-weight: 600;
background: var(--bg-tint);
color: var(--primary);
padding: 4px 10px;
border-radius: 4px;
letter-spacing: .04em;
text-transform: uppercase;
}
.reviews {
position: relative;
background: #fff;
border-radius: var(--radius-xl);
border: 1px solid var(--border);
padding: 40px 56px;
overflow: hidden;
}
.reviews__track { position: relative; min-height: 180px; }
.review {
position: absolute; inset: 0;
opacity: 0; pointer-events: none;
transition: opacity .4s var(--ease);
}
.review.is-active { opacity: 1; pointer-events: auto; position: relative; }
.review__quote { color: rgba(10,79,143,.15); margin-bottom: 12px; }
.review blockquote {
font-size: clamp(16px, 1.5vw, 19px);
line-height: 1.6;
margin: 0 0 16px;
font-style: italic;
color: var(--text);
max-width: 920px;
}
.review footer { font-style: normal; }
.review footer strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.review footer span { font-size: 13.5px; color: var(--text-3); }
.reviews__nav { position: absolute; right: 24px; top: 24px; display: flex; gap: 8px; }
.reviews__btn {
width: 40px; height: 40px;
border-radius: 50%;
background: var(--bg-soft);
border: 1px solid var(--border);
color: var(--text);
display: flex; align-items: center; justify-content: center;
transition: background .2s var(--ease);
}
.reviews__btn:hover { background: var(--bg-tint); color: var(--primary); }
@media (max-width: 720px) {
.reviews { padding: 24px; }
.reviews__nav { position: static; justify-content: flex-end; margin-top: 16px; }
}
.cases__disclaimer {
margin-top: 16px; text-align: center;
font-size: 13px; color: var(--text-3);
}
/* ===== BLOG (dark) ===== */
.blog {
position: relative;
padding: var(--section) 0;
background: linear-gradient(180deg, #0b1a33 0%, #0e1e36 60%, #0b1a33 100%);
color: #fff;
overflow: hidden;
}
.blog::before {
content: "";
position: absolute; inset: 0; pointer-events: none;
background:
radial-gradient(circle at 12% 20%, rgba(30,95,158,.25), transparent 45%),
radial-gradient(circle at 88% 80%, rgba(232,123,30,.18), transparent 50%);
}
.blog .container { position: relative; z-index: 1; }
.blog .section-head h2 { color: #fff; }
.blog .section-head p { color: rgba(255,255,255,.72); }
.blog .eyebrow {
color: rgba(255,255,255,.55);
}
.blog__list {
display: grid; gap: 20px;
max-width: 920px; margin: 0 auto;
}
.post {
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.1);
border-radius: var(--radius-xl);
overflow: hidden;
transition: border-color .25s var(--ease), background .25s var(--ease);
}
.post.is-open { border-color: rgba(232,123,30,.45); background: rgba(255,255,255,.06); }
.post__head {
width: 100%; background: none; border: 0;
padding: 26px 28px;
display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px;
text-align: left; cursor: pointer; color: #fff;
font: inherit;
}
.post__meta {
display: flex; gap: 12px; align-items: center;
font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
color: rgba(255,255,255,.55);
margin-bottom: 8px;
}
.post__meta .post__tag {
background: rgba(232,123,30,.15);
color: #ffb27a;
padding: 3px 10px; border-radius: 4px;
letter-spacing: .08em;
}
.post__title {
font-size: clamp(18px, 2vw, 24px);
font-weight: 700;
color: #fff;
line-height: 1.3;
}
.post__chev {
width: 40px; height: 40px;
border-radius: 50%;
background: rgba(255,255,255,.08);
border: 1px solid rgba(255,255,255,.15);
display: flex; align-items: center; justify-content: center;
color: #fff;
transition: transform .3s var(--ease), background .25s var(--ease);
flex-shrink: 0;
}
.post.is-open .post__chev { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); }
.post__body {
max-height: 0; overflow: hidden;
transition: max-height .45s var(--ease);
}
.post__body-inner {
padding: 0 28px 30px;
color: rgba(255,255,255,.82);
line-height: 1.65;
font-size: 15px;
}
.post__body-inner h4 {
color: #fff;
font-size: 17px;
font-weight: 600;
margin: 22px 0 10px;
letter-spacing: -.005em;
}
.post__body-inner h4:first-child { margin-top: 4px; }
.post__body-inner p { margin-bottom: 12px; }
.post__body-inner ul {
margin: 0 0 14px 0;
display: grid; gap: 8px;
}
.post__body-inner ul li {
position: relative;
padding-left: 22px;
}
.post__body-inner ul li::before {
content: "";
position: absolute; left: 0; top: 9px;
width: 8px; height: 8px;
border-radius: 2px;
background: var(--accent);
}
.post__body-inner .post__cta {
display: inline-flex; margin-top: 18px;
}
@media (max-width: 600px) {
.post__head { padding: 20px 18px; gap: 12px; }
.post__body-inner { padding: 0 18px 22px; font-size: 14.5px; }
.post__chev { width: 36px; height: 36px; }
}
/* ===== FAQ ===== */
.faq { padding: var(--section) 0; background: var(--bg); }
.faq__inner { max-width: 880px; }
.accordion li { border-top: 1px solid var(--border); }
.accordion li:last-child { border-bottom: 1px solid var(--border); }
.accordion__head {
width: 100%; background: none; border: 0;
padding: 22px 8px;
display: flex; align-items: center; justify-content: space-between; gap: 16px;
text-align: left;
font-size: clamp(16px, 1.4vw, 19px);
font-weight: 600;
color: var(--text);
transition: color .2s var(--ease), background .2s var(--ease);
border-radius: 6px;
}
.accordion__head:hover { color: var(--primary); background: var(--bg-soft); }
.accordion__head svg { color: var(--text-3); transition: transform .25s var(--ease), color .2s var(--ease); flex-shrink: 0; }
.accordion__head[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--primary); }
.accordion__body {
max-height: 0; overflow: hidden;
transition: max-height .35s var(--ease);
}
.accordion__body p {
padding: 0 8px 24px;
font-size: 16px; color: var(--text-2); line-height: 1.65;
}
.faq__cta {
margin-top: 48px;
background: var(--bg-tint);
border-radius: var(--radius-lg);
padding: 28px 32px;
display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.faq__cta h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.faq__cta p { font-size: 15px; color: var(--text-3); }
.faq__cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding-top: clamp(56px, 7vw, 80px); }
.footer__top {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
gap: 40px;
}
@media (max-width: 1080px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }
.footer .header__logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer .logo-text { color: #fff; }
.footer .logo-text--accent { color: #5fa8ff; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 20px; max-width: 280px; }
.footer__contacts li {
display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
font-size: 14px;
}
.footer__contacts a { color: rgba(255,255,255,.85); font-weight: 600; }
.footer__contacts a:hover { color: #fff; }
.footer__contacts svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.footer__socials { display: flex; gap: 8px; margin-top: 16px; }
.footer__socials a {
width: 32px; height: 32px;
border-radius: 50%;
border: 1px solid rgba(255,255,255,.2);
display: flex; align-items: center; justify-content: center;
color: rgba(255,255,255,.65);
transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.footer__socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer__col h4 {
font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
color: rgba(255,255,255,.55); font-weight: 700;
margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { color: rgba(255,255,255,.85); font-size: 14.5px; }
.footer__col ul a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--primary-2); }
.footer__dl { display: inline-flex; align-items: center; gap: 8px; }
.footer__dl svg { flex-shrink: 0; }
.footer__hint { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.footer__form { display: grid; gap: 10px; }
.footer__form input[type="text"], .footer__form input[type="tel"] {
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.15);
color: #fff;
padding: 11px 14px;
font-size: 14px;
font-family: inherit;
border-radius: 6px;
transition: border-color .2s var(--ease);
}
.footer__form input::placeholder { color: rgba(255,255,255,.4); }
.footer__form input:focus { outline: none; border-color: var(--primary-2); }
.footer__form .check span { color: rgba(255,255,255,.65); font-size: 12.5px; }
.footer__form .check a { color: rgba(255,255,255,.85); }
.footer__bottom {
margin-top: 48px;
padding: 24px 0;
border-top: 1px solid rgba(255,255,255,.1);
display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
padding-inline: var(--gutter);
max-width: var(--container);
margin-inline: auto;
}
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,.45); max-width: 720px; line-height: 1.5; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,.55); font-size: 12.5px; }
.footer__legal a:hover { color: #fff; }
/* ===== COOKIE ===== */
.cookie-bar {
position: fixed; right: 16px; bottom: 16px;
background: #fff;
box-shadow: 0 8px 28px rgba(10,30,60,.16);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 10px 12px 10px 14px;
display: flex; align-items: center; gap: 10px;
max-width: 300px;
z-index: 90;
animation: cookieIn .35s var(--ease);
}
.cookie-bar__close {
position: absolute; top: 4px; right: 6px;
width: 20px; height: 20px;
background: transparent; border: 0; cursor: pointer;
color: var(--text-2); font-size: 16px; line-height: 1;
display: flex; align-items: center; justify-content: center;
border-radius: 4px;
}
.cookie-bar__close:hover { background: var(--bg-2); color: var(--text-1); }
@keyframes cookieIn { from { transform: translateY(20px); opacity: 0 } to { transform: none; opacity: 1 } }
.cookie-bar p { font-size: 11.5px; color: var(--text-2); line-height: 1.4; margin: 0; padding-right: 16px; }
.cookie-bar > div { display: flex; gap: 6px; flex-shrink: 0; }
.cookie-bar .btn { padding: 7px 12px; font-size: 12.5px; min-height: 0; }
@media (max-width: 720px) {
.cookie-bar { right: 12px; left: 12px; bottom: 12px; max-width: none; flex-direction: column; align-items: stretch; padding: 12px 14px; }
.cookie-bar p { padding-right: 22px; }
.cookie-bar > div { width: 100%; }
.cookie-bar > div .btn { flex: 1; }
}
/* ===== FORMS / FIELDS ===== */
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label {
font-size: 13px; font-weight: 600; color: var(--text-2);
letter-spacing: .01em;
}
.field input, .field select {
background: #fff;
border: 1px solid var(--border);
border-radius: 6px;
padding: 11px 14px;
font-size: 15px;
font-family: inherit;
color: var(--text);
transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(10,79,143,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field-hint { font-size: 12.5px; color: var(--text-3); margin-bottom: 14px; margin-top: -6px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label {
display: inline-flex; align-items: center; gap: 6px;
background: var(--bg-soft);
padding: 9px 14px;
border-radius: 6px;
border: 1px solid var(--border);
font-size: 14px; font-weight: 500;
cursor: pointer;
transition: all .2s var(--ease);
}
.radio-row label:hover { border-color: var(--primary); }
.radio-row input { accent-color: var(--primary); }
.radio-row input:checked ~ span { color: var(--primary); font-weight: 600; }
.radio-row label:has(input:checked) {
background: var(--bg-tint);
border-color: var(--primary);
}
.check {
display: grid; grid-template-columns: 18px 1fr; gap: 10px;
align-items: start;
font-size: 13.5px;
color: var(--text-2);
margin-bottom: 8px;
cursor: pointer;
line-height: 1.45;
}
.check input { margin-top: 2px; accent-color: var(--primary); width: 18px; height: 18px; cursor: pointer; }
.check em { color: var(--error); font-style: normal; }
.check.is-error span { color: var(--error); }
.check.is-error input { outline: 2px solid var(--error); border-radius: 3px; }
/* ===== MODAL ===== */
.modal {
position: fixed; inset: 0;
z-index: 100;
display: flex; align-items: center; justify-content: center;
padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
position: absolute; inset: 0;
background: rgba(10,30,60,.7);
backdrop-filter: blur(4px);
animation: fade .25s var(--ease);
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
/* ===== ATTENTION PULSE («Бесплатная консультация») ===== */
.btn--pulse {
position: relative;
animation: btnPulse 2.4s var(--ease) infinite;
}
.btn--pulse::before {
content: "";
position: absolute;
inset: -2px;
border-radius: inherit;
border: 2px solid rgba(255,255,255,.6);
pointer-events: none;
animation: btnRing 2.4s var(--ease) infinite;
}
@keyframes btnPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(232,123,30,.55); }
50% { box-shadow: 0 0 0 14px rgba(232,123,30,0); }
}
@keyframes btnRing {
0% { opacity: .8; transform: scale(1); }
70% { opacity: 0; transform: scale(1.18); }
100% { opacity: 0; transform: scale(1.18); }
}
.btn--pulse:hover { animation-play-state: paused; }
.btn--pulse:hover::before { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
.btn--pulse, .btn--pulse::before { animation: none; }
}
.modal__dialog {
position: relative;
background: #fff;
border-radius: var(--radius-xl);
width: 100%; max-width: 560px;
padding: 40px;
box-shadow: var(--shadow-lg);
max-height: calc(100vh - 40px);
overflow-y: auto;
animation: pop .3s var(--ease);
}
.modal__dialog--sm { max-width: 460px; }
@keyframes pop { from { transform: translateY(20px) scale(.97); opacity: 0 } to { transform: none; opacity: 1 } }
@media (max-width: 600px) { .modal__dialog { padding: 24px; } }
.modal__close {
position: absolute; top: 14px; right: 14px;
width: 36px; height: 36px;
border: 0; background: var(--bg-soft);
border-radius: 50%;
font-size: 20px; line-height: 1; color: var(--text-2);
cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--bg-tint); color: var(--primary); }
.modal__progress {
display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
margin-bottom: 24px;
}
.modal__progress span {
height: 4px;
background: var(--border);
border-radius: 2px;
transition: background .25s var(--ease);
}
.modal__progress span.is-done { background: var(--primary); }
.modal__head { margin-bottom: 24px; }
.modal__head h2 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.modal__head p { font-size: 14.5px; color: var(--text-3); line-height: 1.5; }
.modal__success { text-align: center; padding: 24px 0; }
.modal__success svg { color: var(--success); margin: 0 auto 16px; }
.modal__success h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.modal__success p { font-size: 15px; color: var(--text-3); margin-bottom: 24px; line-height: 1.55; }
/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: .01ms !important;
animation-iteration-count: 1 !important;
transition-duration: .01ms !important;
scroll-behavior: auto !important;
}
}
/* ===== MOBILE MENU ===== */
.header__inner.is-open ~ .mobile-menu { display: flex; }
.mobile-menu {
display: none;
position: fixed; inset: 64px 0 0 0;
background: #fff;
z-index: 49;
padding: 32px var(--gutter);
flex-direction: column; gap: 20px;
overflow-y: auto;
}
.mobile-menu a {
display: block;
font-size: 18px; font-weight: 600;
color: var(--text);
padding: 12px 0;
border-bottom: 1px solid var(--border);
}
.mobile-menu .header__phone { padding: 12px 0; }
.mobile-menu .btn { margin-top: 12px; width: 100%; }
РОСКЛИНИНГ — Индустриальный клининг для производств и складов
Индустриальный клининг Индустриальный клининг для производственных площадей и складов Ликвидация критических загрязнений и запуск объектов в сверхсжатые сроки.
Готовность к инцидентам Протокол немедленного реагирования на сложные и нестандартные задачи.
Работа в экстремальных условиях Очистка технологического оборудования и инженерных систем без остановки основных производственных циклов, с соблюдением норм ОТ и ПБ.
Безупречный документооборот Полный пакет закрывающих актов, оформленных строго по регламентам вашего учёта.
0 лет на рынке 0 постоянных клиентов 24/7 выезд бригады 100% закрывающих документов Запросить расчёт Бесплатная консультация
Глубокая уборка производственных помещений Очистка от производственной пыли, стружки, масел.
Подробнее Высотные работы в цехах и ангарах Балки, фермы, потолки, мостовые краны.
Подробнее Уборка складов и логистических комплексов Высотная пыль, стеллажи, доковые зоны.
Подробнее Наружные территории и инфраструктура Площадки, подъездные пути, сезонные работы.
Подробнее Клининг после ремонтов и реконструкций Финишная подготовка цеха и склада к запуску.
Подробнее Спецработы по запросу Очистка ёмкостей, нестандартные проекты.
Подробнее Почему РОСКЛИНИНГ Четыре зоны ответственности, которые мы закрываем вместо вашей службы эксплуатации Берём на себя риск срыва сроков и штрафов Планируем работы под вашу проверку или пуск, выходим в ночные смены и «окна» без остановки производства.
Ответственность фиксируем в договоре Менеджер-куратор, говорящий на языке техдиров и главных инженеров Техническое ТЗ, ППР, контроль качества работ. Один менеджер ведёт ваш объект от первого звонка до закрывающих документов.
Полный пакет допусков и требований по ОТ и ПБ Обучение, медосмотры, СИЗ, допуски на высоту. По запросу предоставляем все подтверждающие документы до выхода бригады на объект.
Отработанные сценарии под проверки, аудиты и аварийные ситуации Знаем, где обычно ошибаются подрядчики и как этого избежать. Готовые чек-листы под Роспотребнадзор, ГИТ, внутренние аудиты заказчика.
Презентация — 12 страниц, кейсы и наш протокол работы.
1
Заявка и первичный созвон Описываете объект, тип загрязнений, сроки, под что готовимся: проверка, пуск, аудит, генеральная.
2
Выезд инженера и аудит объекта Оцениваем площади, высоты, доступность, риски. Уточняем требования вашей службы ОТ и ПБ.
3
План работ и коммерческое предложение Несколько сценариев — по срокам, интенсивности, ночным сменам. Численность бригад, график смен, формат контроля качества.
4
Договор и подготовка Оформляем договор, согласовываем план по безопасности. Подбираем и инструктируем персонал под конкретный объект.
5
Выполнение работ и приёмка Работаем по плану, держим связь с вашим ответственным. Принимаем работу по чек-листам и актам.
Заказать клининг на предприятии Бесплатный выезд инженера в течение 1–3 рабочих дней.
Реальные объекты Видеокейсы и отзывы наших клиентов Смотрите, как мы работаем на производственных площадках, в логистических центрах и на складах высотой до 24 метров.
Завод металлоконструкций, г. Воронеж Глубокая уборка цеха площадью 8 000 м², ночные смены.
5 ночей Авиационный ангар, Подмосковье Высотные работы: очистка балок, ферм, мостовых кранов с промальпом.
12 смен Логистический комплекс, Московская область Уборка стеллажей высотой до 24 м, доковые зоны, рампы. Без остановки приёмки.
Контракт на год Подрядчик закрыл объект под аудит Роспотребнадзора за 5 ночей. Никаких замечаний по ОТ. Документы пришли через сутки после приёмки. Главный инженер Машиностроительное предприятие, ЦФО Что важно: менеджер не «продажник», а инженер. С первого звонка по ТЗ говорим на одном языке. Контракт на регулярное обслуживание заключили после первого пилотного выезда. Директор по эксплуатации Логистический оператор Брали на разовую финишную уборку после реконструкции цеха. В итоге работаем уже 3-й год — регулярка плюс сезонные кампании. Технический директор Производство пищевой упаковки По запросу предоставим письменные рекомендации и контакты для верификации.
Руководителям 5 мин чтения
Как мы помогаем техническим директорам, складам и службам ОТ / ПБ Мы работаем с индустриальными объектами и понимаем, что ошибки подрядчика стоят простоев, штрафов и нервов руководства. Наша задача — в согласованные сроки привести объект в надлежащее состояние в соответствии с установленными требованиями.
Техническим директорам и главным инженерам Типичные задачи:
Подготовить цеха и вспомогательные помещения к проверкам контролирующих органов или аудиту заказчика. Очистить сложные участки (над балками, фермами, коммуникациями), куда свои сотрудники не хотят или не могут лезть. Не остановить производство или минимизировать простой. Как выполняем:
Вместе с вами составляем детальный план работ по зонам и очередности. Подбираем бригады и оборудование под ваши условия (высота, загазованность, спецзагрязнения). Учитываем требования по ОТ и ПБ, согласуем план работ с вашими службами. Назначаем инженера-куратора, который работает с вами напрямую, а не «через менеджера». Руководителям складов и логистики Типичные задачи:
Снижение уровня пыли и грязи на складе, в зонах приёмки и отгрузки — для продления срока службы промышленного оборудования и снижения рисков простоя. Подготовка склада к визиту партнёров или аудиту. Устранение мусорных скоплений без остановки отгрузок. Руководителям по ОТ и ПБ Типичные задачи:
Закрыть требования по чистоте и безопасности в зонах, где возможны травмы, скольжение, падение предметов. Уменьшить «человеческий фактор» и конфликт между производством и безопасностью. Снижение процента заболеваемости сотрудников производственных цехов. Заказать звонок клининг-менеджера ОТ и ПБ 4 мин чтения
Безопасность и допуски: работаем как «своя» служба На производстве подрядчик не должен быть «чужим». Мы выстраиваем работу так, чтобы режим безопасности и допуски закрывались наравне со своими службами заказчика.
Обученный и допущенный персонал инструктажи по ОТ и ПБ; медосмотры; допуски к работе на высоте и к конкретным видам работ. СИЗ и спецодежда под объект спецодежда по вашим требованиям; средства защиты органов дыхания, зрения, слуха. Документооборот под проверку При необходимости готовим пакет: инструкции, журналы инструктажа, допуски, ТК, ППР, планы по безопасности. Страхование и ответственность Прописываем ответственность за имущество и оборудование в договоре. Работаем прозрачно и исключительно «в белую». Запросить коммерческое предложение Работаете ли вы с опасными и сложными загрязнениями? Да. Наши специалисты имеют опыт работы с различными типами загрязнений, включая химические, масляные, жировые и другие сложные случаи. Мы используем профессиональные моющие средства и оборудование, соответствующие стандартам безопасности.
Какие гарантии вы даёте на качество уборки? Мы гарантируем высокое качество выполнения работ в соответствии с договором. В случае выявления недостатков оперативно устраним их за свой счёт. Все этапы уборки контролируются ответственным менеджером.
Как быстро вы можете приступить к работе? Сроки начала работ зависят от объёма и специфики объекта. Обычно мы готовы приступить к выполнению заказа в течение 1–3 рабочих дней после согласования всех деталей.
Используете ли вы экологически безопасные средства? Да. По запросу клиента применяем сертифицированные гипоаллергенные и биоразлагаемые средства, безопасные для персонала и окружающей среды.
Как происходит расчёт стоимости услуг? Стоимость рассчитывается индивидуально после осмотра объекта и уточнения объёма работ. Мы предоставляем бесплатный выезд специалиста для оценки и составления сметы.
Заключаете ли вы договоры на регулярное обслуживание? Да. Предлагаем долгосрочные контракты на регулярное обслуживание промышленных объектов с гибкой системой скидок и индивидуальным графиком работ.
Работаете ли вы в ночное время или в выходные? Да. Готовы организовать работы в любое удобное для вас время, включая ночные смены и выходные дни, чтобы не мешать производственному процессу.
Какие объекты вы уже обслуживали? Среди наших клиентов — крупные производственные предприятия, логистические центры, склады, торговые комплексы и промышленные парки. Готовы предоставить рекомендации по запросу.
Остались вопросы? Мы всегда на связи и готовы помочь.
× Мы используем cookie, чтобы сайт работал корректно. Продолжая, вы соглашаетесь с политикой .
Принять
×
Заявка принята Менеджер перезвонит в течение 30 минут в рабочее время. Предварительный расчёт пришлём на указанные контакты в течение 24 часов.
Закрыть
× Спасибо Перезвоним в течение 30 минут в рабочее время.
Закрыть