/* ===================================================================
   ГрузСтрой — основной CSS темы
   Архитектура: ванильный CSS с custom properties, без зависимостей.
   Брейкпоинты: 1024px (desktop), 640px (tablet), 360px (small mobile).
   =================================================================== */

/* -------------------------------------------------------------------
   1. Переменные и base reset
   ------------------------------------------------------------------- */
:root {
	--brand-red: #E94A1B;
	--brand-red-dark: #C73A0F;
	--ink: #0F0F10;
	--ink-soft: #1A1A1C;
	--cream: #F7F4ED;
	--cream-dark: #EFEAE0;
	--muted: #6B6B6B;
	--line: rgba(255,255,255,0.10);

	--radius-card: 24px;
	--radius-pill: 9999px;

	--shadow-card: 0 8px 28px -10px rgba(15,15,16,.18);
	--shadow-cta: 0 18px 40px -16px rgba(233,74,27,.45);

	--container: 1400px;
	--gutter: 24px;

	--ease-out: cubic-bezier(.22,.9,.35,1);
	--font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
	--font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; color: transparent; }
svg { display: inline-block; max-width: 100%; height: auto; color: inherit; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; margin: 0; }

/* -------------------------------------------------------------------
   2. Утилитарные хелперы
   ------------------------------------------------------------------- */
.gs-container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section { padding: 96px 0; }
.section--top    { padding-top: 96px; padding-bottom: 0; }
.section--bottom { padding-top: 0; padding-bottom: 96px; }
.section-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color: var(--brand-red); }
.section-eyebrow .ico { width:34px; height:34px; border-radius:50%; background: rgba(233,74,27,.12); display:inline-flex; align-items:center; justify-content:center; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--brand-red); }
.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); color: #fff; }

/* -------------------------------------------------------------------
   3. Кнопки
   ------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 16px 26px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	transition: transform .2s var(--ease-out), background .2s, color .2s, box-shadow .2s;
	cursor: pointer; white-space: nowrap;
}
.btn--red    { background: var(--brand-red); color: #fff; box-shadow: var(--shadow-cta); }
.btn--red:hover    { background: var(--brand-red-dark); transform: translateY(-2px); }
.btn--white  { background: #fff; color: var(--ink); }
.btn--white:hover  { background: var(--cream-dark); transform: translateY(-2px); }
.btn--ghost  { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn .arrow { transition: transform .2s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
/* keep buttons looking like buttons even inside rich .page-content (no underline, correct text color) */
.btn, .page-content a.btn { text-decoration: none; }
.page-content a.btn--red { color: #fff; }
.page-content a.btn--red:hover { color: #fff; }
.page-content a.btn--white { color: var(--ink); }
.page-content a.btn--ghost { color: var(--ink); }
.page-content a.btn--ghost:hover { color: #fff; }

/* -------------------------------------------------------------------
   4. Topbar (красная полоса)
   ------------------------------------------------------------------- */
.topbar {
	background: var(--brand-red); color: #fff;
	font-size: 13px;
	height: 44px; display: flex; align-items: center;
}
.topbar .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; opacity: .95; }
.topbar-item:hover { opacity: 1; }
.topbar-socials { display: inline-flex; gap: 10px; }
.topbar-socials a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.topbar-socials a:hover { background: rgba(255,255,255,.32); }

/* -------------------------------------------------------------------
   5. Header (шапка)
   ------------------------------------------------------------------- */
.site-header { background: #fff; padding: 18px 0; border-bottom: 1px solid rgba(15,15,16,.06); position: sticky; top: 0; z-index: 40; }
.site-header.is-stuck { box-shadow: 0 4px 18px -10px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gs-logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: inherit; }
.gs-logo-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(233,74,27,.12); display: inline-flex; align-items: center; justify-content: center; }
.gs-logo:hover { color: var(--brand-red); }
.site-footer .gs-logo { color: #fff; }
.site-footer .gs-logo-icon { background: rgba(233,74,27,.2); }

.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav .nav-link { font-size: 15px; font-weight: 600; color: var(--ink); position: relative; padding: 6px 0; transition: color .2s; }
.primary-nav .nav-link::after { content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--brand-red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out); }
.primary-nav .nav-link:hover, .primary-nav .nav-link.is-active { color: var(--brand-red); }
.primary-nav .nav-link:hover::after, .primary-nav .nav-link.is-active::after { transform: scaleX(1); }

.mobile-menu-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; background: var(--ink); color: #fff; align-items: center; justify-content: center; }

/* -------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before {
	content: ''; position: absolute; inset: 0;
	background-image: var(--gs-hero-bg, none);
	background-size: cover; background-position: center;
	opacity: .35; z-index: -1;
}
.hero::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(120deg, rgba(15,15,16,.95) 0%, rgba(15,15,16,.7) 50%, rgba(15,15,16,.55) 100%);
	z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; padding: 100px 0 110px; }
.hero h1 { font-size: clamp(38px, 6vw, 72px); line-height: 1.04; }
.hero h1 .accent, .hero h1 span.accent { color: var(--brand-red); }
.hero p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.8); margin-top: 28px; max-width: 580px; }
.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; justify-content: flex-end; margin-bottom: 24px; }
.hero-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 18px 26px; min-width: 150px; }
.hero-stat .value { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--brand-red); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }
.hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 36px; flex-wrap: wrap; }
.hero-actions .btn--white { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); }
.hero-actions .btn--white:hover { background: rgba(255,255,255,.22); }
.hero-years { display: inline-flex; align-items: center; gap: 12px; padding-right: 20px; border-right: 1px solid rgba(255,255,255,.2); margin-right: 6px; }
.hero-years .num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-red); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.hero-years .label { font-size: 13px; line-height: 1.2; color: rgba(255,255,255,.85); }

/* Hero form card */
.hero-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); border-radius: 24px; padding: 28px; }
.hero-form h3 { font-size: 22px; }
.hero-form p { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }
.hero-form .field { margin-top: 14px; }
.hero-form label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); display:block; margin-bottom: 6px; }
.hero-form input, .hero-form select {
	width: 100%; padding: 14px 18px; border-radius: 14px;
	border: 1px solid rgba(255,255,255,.18);
	background: #fff !important;
	color: var(--ink) !important;
	-webkit-text-fill-color: var(--ink);
	appearance: none; -webkit-appearance: none;
	transition: border-color .2s, background .2s, box-shadow .2s;
}
.hero-form select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F0F10' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	padding-right: 44px;
}
.hero-form input::placeholder { color: rgba(15,15,16,.42); opacity: 1; }
.hero-form input:-webkit-autofill,
.hero-form select:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
	-webkit-text-fill-color: var(--ink) !important;
}
.hero-form input:focus, .hero-form select:focus { outline: none; border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(233,74,27,.18); }
.hero-form .btn { width: 100%; margin-top: 16px; }
.hero-form .form-foot { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 12px; }

/* -------------------------------------------------------------------
   7. ABOUT
   ------------------------------------------------------------------- */
.about { padding: 110px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.12; }
.about-text { margin-top: 20px; color: var(--muted); line-height: 1.7; white-space: pre-line; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 28px; }
.about-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.about-point .check { width: 20px; height: 20px; border-radius: 50%; background: rgba(233,74,27,.12); color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-stats { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.about-years-stat { display: flex; align-items: center; gap: 16px; padding-right: 24px; border-right: 1px solid rgba(15,15,16,.1); }
.about-years-stat .num { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--brand-red); line-height: 1; }
.about-years-stat .label { color: var(--ink); font-weight: 600; }

.about-image { position: relative; }
.about-image-frame { aspect-ratio: 5 / 6; border-radius: 28px; overflow: hidden; background: var(--ink-soft); }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.since-badge { position: absolute; top: 24px; left: 24px; background: var(--brand-red); color: #fff; padding: 12px 22px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; }
.award-card { position: absolute; bottom: -32px; left: -24px; background: #fff; box-shadow: var(--shadow-card); border-radius: 20px; padding: 20px; display: flex; gap: 14px; align-items: center; max-width: 280px; }
.award-card .award-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(233,74,27,.12); color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.award-card .award-text { font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.3; color: var(--ink); }

/* -------------------------------------------------------------------
   8. SERVICES
   ------------------------------------------------------------------- */
.services { background: var(--cream); padding: 110px 0; }
.services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.services-head h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; }
.services-head .right { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.services-head .right .desc { color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .25s var(--ease-out), box-shadow .25s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px -12px rgba(15,15,16,.22); }
.service-card .card-top { padding: 28px 24px 20px; }
.service-card h3 { font-size: 19px; line-height: 1.25; }
.service-card p { color: var(--muted); font-size: 14px; margin-top: 10px; line-height: 1.55; }
.service-img-wrap { position: relative; margin-top: auto; }
.service-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-img-wrap.empty { aspect-ratio: 4/3; background: var(--ink-soft); }
.service-icon-tab {
	position: absolute; top: 0; left: 0;
	background: #fff;
	width: 88px; height: 88px;
	border-bottom-right-radius: 26px;
	display: flex; align-items: center; justify-content: center;
	z-index: 2;
	color: var(--brand-red);
}
.service-icon-tab img, .service-icon-tab svg { width: 44px; height: 44px; object-fit: contain; }
.service-icon-tab .icon-placeholder {
	width: 48px; height: 48px;
	border: 2px dashed #d9d9d9; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	color: #b5b5b5; font-size: 10px; font-weight: 700; letter-spacing: .06em;
}
.service-arrow {
	position: absolute; right: 22px; bottom: 22px;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--brand-red); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform .25s var(--ease-out), background .25s;
	z-index: 2;
}
.service-card:hover .service-arrow { transform: rotate(-45deg); background: var(--brand-red-dark); }

/* -------------------------------------------------------------------
   9. CTA-MID
   ------------------------------------------------------------------- */
.cta-mid-wrap { background: var(--cream); padding: 0 0 110px; }
.cta-mid { background: var(--ink); color: #fff; border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.cta-mid h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; color: #fff; }
.cta-mid .ctamid-text { color: rgba(255,255,255,.78); margin-top: 18px; max-width: 480px; }
.cta-mid .ctamid-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cta-info-cards { display: flex; flex-direction: column; gap: 14px; }
.cta-info-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: 18px; padding: 18px 22px; display: flex; gap: 14px; align-items: center; }
.cta-info-card .ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(233,74,27,.18); color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-info-card .label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); }
.cta-info-card .value { font-weight: 700; margin-top: 4px; }
.cta-info-card .value a { color: #fff; }
.cta-info-card .value a:hover { color: var(--brand-red); }

/* -------------------------------------------------------------------
   10. FLEET
   ------------------------------------------------------------------- */
.fleet { padding: 110px 0; }
.fleet-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.fleet-head h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; }
.fleet-head .right { color: var(--muted); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card { background: var(--cream); border-radius: 24px; padding: 28px; position: relative; overflow: hidden; transition: transform .25s var(--ease-out); }
.fleet-card:hover { transform: translateY(-4px); }
.fleet-card .badge { display: inline-flex; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--brand-red); color: #fff; font-weight: 700; font-size: 12px; }
.fleet-card .photo { aspect-ratio: 4/3; background: var(--ink-soft); border-radius: 18px; overflow: hidden; margin: 18px 0 20px; }
.fleet-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card h3 { font-size: 22px; }
.fleet-card .desc { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.55; }
.fleet-meta { display: flex; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(15,15,16,.08); }
.fleet-meta div { font-size: 13px; }
.fleet-meta .label { color: var(--muted); }
.fleet-meta .value { font-weight: 700; }

/* -------------------------------------------------------------------
   11. PROCESS
   ------------------------------------------------------------------- */
.process { padding: 110px 0; background: var(--cream); }
.process-head { text-align: center; margin-bottom: 56px; }
.process-head h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: #fff; border-radius: 24px; padding: 28px; position: relative; transition: transform .25s var(--ease-out); }
.step-card:hover { transform: translateY(-4px); }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(233,74,27,.12); color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; transition: all .25s; }
.step-card:hover .step-num { background: var(--brand-red); color: #fff; }
.step-card h3 { font-size: 18px; margin-top: 20px; }
.step-card p { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.55; }

/* -------------------------------------------------------------------
   12. NEWSLETTER + FOOTER
   ------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #DCDCDC; padding: 80px 0 32px; }
.newsletter { background: var(--brand-red); border-radius: 28px; padding: 56px; color: #fff; display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; margin-bottom: 80px; }
.newsletter h3 { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.15; }
.newsletter p { color: rgba(255,255,255,.85); font-size: 15px; margin-top: 12px; max-width: 460px; }
.newsletter form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 200px; padding: 18px 26px; border-radius: var(--radius-pill); border: 2px solid rgba(255,255,255,.5); background: transparent; color: #fff; }
.newsletter input::placeholder { color: rgba(255,255,255,.7); }
.newsletter input:focus { outline: none; border-color: #fff; }
.newsletter .btn { padding: 18px 30px; }

.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col .col-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-about { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; margin: 20px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-red); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.footer-social:hover { background: #fff; color: var(--brand-red); transform: translateY(-2px); }
.footer-link { display: inline-block; color: #DCDCDC; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer-link:hover { color: var(--brand-red); padding-left: 6px; }
.footer-link.with-arrow::before { content: '→'; color: var(--brand-red); margin-right: 10px; }
.footer-contact { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; }
.footer-contact .ico { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.18); color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact .lines { font-size: 14px; line-height: 1.5; color: #DCDCDC; }
.footer-contact .lines a { display: block; }
.footer-contact .lines a:hover { color: var(--brand-red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 32px; margin-top: 64px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.55); flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--brand-red); }

/* -------------------------------------------------------------------
   13. Popup (модалка обратного звонка)
   ------------------------------------------------------------------- */
.gs-popup { position: fixed; inset: 0; z-index: 100; display: none; }
.gs-popup.is-open { display: flex; align-items: center; justify-content: center; }
.gs-popup__overlay { position: absolute; inset: 0; background: rgba(15,15,16,.75); backdrop-filter: blur(4px); animation: fadeIn .25s ease; }
.gs-popup__dialog { position: relative; background: #fff; border-radius: 28px; padding: 44px; max-width: 480px; width: calc(100% - 40px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); animation: popUp .35s var(--ease-out); }
.gs-popup__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.gs-popup__close:hover { background: var(--ink); color: #fff; }
.gs-popup h3 { font-size: 26px; line-height: 1.2; }
.gs-popup p { color: var(--muted); margin-top: 10px; font-size: 15px; line-height: 1.5; }
.gs-form { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.gs-form label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.gs-form input, .gs-form textarea, .gs-form select {
	width: 100%; padding: 14px 18px;
	border-radius: 14px; border: 1.5px solid rgba(15,15,16,.12);
	background: #fff; color: var(--ink); transition: border-color .2s, background .2s;
}
.gs-form input:focus, .gs-form textarea:focus, .gs-form select:focus { outline: none; border-color: var(--brand-red); }
.gs-form .gs-hp { position: absolute; left: -9999px; }
.gs-form .gs-submit-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.gs-form .gs-submit-row .btn { flex: 1; min-width: 140px; }
.gs-form .gs-status { font-size: 13px; }
.gs-form .gs-status.is-error { color: var(--brand-red); }
.gs-form .gs-status.is-ok { color: #1f9e6a; }
.gs-form .gs-privacy { font-size: 12px; color: var(--muted); }
.gs-form .gs-privacy a { color: var(--brand-red); text-decoration: underline; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popUp  { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* -------------------------------------------------------------------
   14. Floating call button
   ------------------------------------------------------------------- */
.floating-call { position: fixed; right: 20px; bottom: 20px; z-index: 50; width: 60px; height: 60px; border-radius: 50%; background: var(--brand-red); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 20px 40px -10px rgba(233,74,27,.5); transition: transform .2s, background .2s; }
.floating-call:hover { transform: scale(1.08); background: var(--brand-red-dark); }
.floating-call::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--brand-red); opacity: .35; animation: pingPulse 1.6s cubic-bezier(0,0,.2,1) infinite; z-index: -1; }
@keyframes pingPulse { 0% { transform: scale(1); opacity: .35; } 80%, 100% { transform: scale(2); opacity: 0; } }

/* -------------------------------------------------------------------
   15. Reveal animations
   ------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .05s; }
.reveal-2 { transition-delay: .15s; }
.reveal-3 { transition-delay: .25s; }
.reveal-4 { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .floating-call::before { display: none; } }

/* -------------------------------------------------------------------
   16. Pages (внутренние страницы — простой стиль)
   ------------------------------------------------------------------- */
.page-hero { background: var(--ink); color: #fff; padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 4vw, 56px); line-height: 1.15; }
.page-hero .crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.page-hero .crumbs a { color: rgba(255,255,255,.85); }
.page-hero .crumbs a:hover { color: var(--brand-red); }
.page-content { padding: 80px 0; max-width: 820px; margin: 0 auto; font-size: 16.5px; line-height: 1.7; color: var(--ink); }
.page-content h2 { font-size: 28px; margin: 36px 0 16px; }
.page-content h3 { font-size: 22px; margin: 28px 0 12px; }
.page-content p { margin: 0 0 14px; color: var(--ink); }
.page-content ul { margin: 0 0 14px; padding-left: 0; }
.page-content ul li { padding-left: 24px; position: relative; margin: 8px 0; }
.page-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--brand-red); font-weight: 700; }
.page-content a { color: var(--brand-red); text-decoration: underline; }

/* Contacts page */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; }
.contacts-info-block { padding: 26px 0; border-top: 1px solid rgba(15,15,16,.08); }
.contacts-info-block:first-of-type { border-top: 0; padding-top: 0; }
.contacts-info-block .label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contacts-info-block .value { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-top: 4px; color: var(--ink); }
.contacts-info-block .value a:hover { color: var(--brand-red); }

/* -------------------------------------------------------------------
   17. 404
   ------------------------------------------------------------------- */
.error404-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.error404 { max-width: 640px; text-align: center; }
.error404 .number { font-family: var(--font-display); font-size: clamp(120px, 18vw, 220px); font-weight: 800; line-height: .9; color: var(--brand-red); }
.error404 h1 { font-size: clamp(28px, 4vw, 44px); margin-top: 12px; }
.error404 p { color: var(--muted); margin-top: 14px; }
.error404 .actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* -------------------------------------------------------------------
   18. Mobile menu drawer
   ------------------------------------------------------------------- */
.mobile-drawer { position: fixed; inset: 0; z-index: 95; display: none; }
.mobile-drawer.is-open { display: block; }
.mobile-drawer__overlay { position: absolute; inset: 0; background: rgba(15,15,16,.6); }
.mobile-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: 84%; max-width: 360px; background: var(--ink); color: #fff; padding: 28px; display: flex; flex-direction: column; gap: 18px; transform: translateX(100%); transition: transform .3s var(--ease-out); }
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close { align-self: flex-end; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.mobile-drawer__nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__nav li { padding: 0; margin: 0; list-style: none; }
.mobile-drawer__nav a { display: block; padding: 12px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); color: #fff; }
.mobile-drawer__nav a:hover { color: var(--brand-red); }
.mobile-drawer__contacts { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.mobile-drawer__contacts a { color: rgba(255,255,255,.85); }
.mobile-drawer__contacts a:hover { color: var(--brand-red); }

/* -------------------------------------------------------------------
   19. Responsive
   ------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1023px) {
	.topbar { display: none; }
	.primary-nav, .header-cta, .site-header .btn--red { display: none; }
	.mobile-menu-toggle { display: inline-flex; }
	.hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 0 80px; }
	.hero-stats { justify-content: flex-start; }
	.about-inner { grid-template-columns: 1fr; gap: 40px; }
	.about-image-frame { aspect-ratio: 4/3; }
	.award-card { left: 16px; bottom: -24px; max-width: 240px; padding: 16px; }
	.services-head, .fleet-head { grid-template-columns: 1fr; gap: 24px; }
	.fleet-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-mid { grid-template-columns: 1fr; padding: 40px; }
	.contacts-grid { grid-template-columns: 1fr; padding: 60px 0; }
	.section, .about, .services, .fleet, .process { padding: 80px 0; }
	.cta-mid-wrap { padding-bottom: 80px; }
}

@media (max-width: 640px) {
	:root { --gutter: 16px; }
	body { font-size: 15.5px; }
	.section, .about, .services, .fleet, .process { padding: 60px 0; }
	.cta-mid-wrap { padding-bottom: 60px; }
	.site-footer { padding: 60px 0 24px; }
	.about-points { grid-template-columns: 1fr; }
	.about-years-stat { border-right: 0; padding-right: 0; }
	.services-grid { grid-template-columns: 1fr; }
	.fleet-grid { grid-template-columns: 1fr; }
	.process-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.step-card { padding: 22px; }
	.newsletter { grid-template-columns: 1fr; padding: 36px 24px; margin-bottom: 60px; }
	.newsletter form { flex-direction: column; }
	.newsletter input, .newsletter .btn { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.footer-bottom { flex-direction: column; gap: 10px; }
	.cta-mid { padding: 28px; }
	.cta-mid h2 { font-size: 28px; }
	.gs-popup__dialog { padding: 28px 22px; }
	.hero-stat { min-width: 0; flex: 1 0 45%; padding: 14px 16px; }
	.hero-stat .value { font-size: 24px; }
	.about-image-frame { aspect-ratio: 1/1; }
	.floating-call { width: 54px; height: 54px; right: 14px; bottom: 14px; }
	.service-icon-tab { width: 70px; height: 70px; }
	.service-icon-tab .icon-placeholder { width: 36px; height: 36px; font-size: 9px; }
	.service-arrow { width: 46px; height: 46px; right: 16px; bottom: 16px; }
	.fleet-card { padding: 22px; }
	.cta-mid .ctamid-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
	.process-grid { grid-template-columns: 1fr; }
}

/* Hide topbar on small (already in 1023) but allow mobile menu socials */

/* -------------------------------------------------------------------
   20. Admin bar offset fix
   ------------------------------------------------------------------- */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* WP core: don't break header for visible admin bar */


/* === pravki 2026-06-22 === */
/* 1. Убрать "точки" перед пунктами меню (list-style: disc от ul) */
.primary-nav, .primary-nav ul, .primary-nav li { list-style: none !important; margin-left: 0 !important; padding-left: 0 !important; }
.primary-nav li { display: inline-flex !important; }

/* 2. Hero — убрать большой верхний отступ, чтобы блок помещался в экран */
.hero-inner { padding-top: 30px !important; padding-bottom: 80px !important; }

/* 3. about-image — растянуть на высоту контента (вместо фиксированного aspect 5/6) */
.about-inner { align-items: stretch !important; }
.about-image { display: flex; }
.about-image-frame { aspect-ratio: auto !important; height: 100% !important; width: 100%; }
.about-image-frame img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
/* === /pravki 2026-06-22 === */

/* ===================================================================
   Detail pages: отдельные услуги и страницы техники (2026-06-23)
   =================================================================== */
.page-content.detail-page { max-width: none; padding: 60px 0 80px; font-size: 16px; }

/* Hero image */
.svc-img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 24px; margin-bottom: 56px; display: block; }

/* Intro lead */
.svc-intro { font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 780px; margin: 0 0 52px; }

/* Two-column layout */
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; align-items: start; }
.svc-cols h2 { font-size: 26px; margin: 0 0 22px; }

/* Feature list */
.svc-feats { list-style: none; padding: 0; margin: 0; }
.svc-feats li { padding: 13px 0 13px 30px; position: relative; border-bottom: 1px solid var(--cream-dark); font-size: 15.5px; line-height: 1.55; }
.svc-feats li:first-child { border-top: 1px solid var(--cream-dark); }
.svc-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-red); font-weight: 700; font-size: 14px; top: 13px; }

/* Spec box */
.svc-spec-box { background: var(--cream); border-radius: 20px; padding: 32px 36px; }
.svc-spec-box h3 { font-size: 18px; margin: 0 0 20px; }
.svc-spec-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.svc-spec-table td { padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.07); vertical-align: top; }
.svc-spec-table tr:last-child td { border-bottom: 0; }
.svc-spec-table td:first-child { color: var(--muted); width: 48%; }
.svc-spec-table td:last-child { font-weight: 600; }

/* Dark SEO text block */
.svc-seo { background: var(--ink); color: #fff; border-radius: 24px; padding: 52px 56px; margin: 60px 0; }
.svc-seo h2 { color: #fff; font-size: 26px; margin: 0 0 18px; }
.svc-seo p { color: rgba(255,255,255,.72); line-height: 1.75; margin: 0 0 14px; }
.svc-seo p:last-child { margin-bottom: 0; }

/* CTA block */
.svc-cta-block { background: var(--cream); border-radius: 28px; padding: 56px 40px; text-align: center; margin-top: 64px; }
.svc-cta-block h2 { font-size: 32px; margin: 0 0 14px; }
.svc-cta-block p { color: var(--muted); margin: 0 0 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.svc-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Fleet card link */
.fleet-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--brand-red); letter-spacing: .03em; text-transform: uppercase; transition: opacity .2s; }
.fleet-card-link:hover { opacity: .7; }

/* Service card link-to-page */
.service-arrow--page { background: var(--ink); }
.service-arrow--page svg { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .svc-cols { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .svc-img { aspect-ratio: 4/3; border-radius: 16px; margin-bottom: 36px; }
  .svc-intro { font-size: 16px; }
  .svc-seo { padding: 32px 24px; }
  .svc-cta-block { padding: 36px 20px; }
  .svc-cta-block h2 { font-size: 24px; }
}
