*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--yellow: #F5C200;
--yellow-dark: #D4A800;
--dark: #1A1A1A;
--dark2: #222222;
--dark3: #2C2C2C;
--gray: #555;
--light-gray: #f5f5f5;
--white: #fff;
--text: #333;
}
body {
font-family: 'Roboto', sans-serif;
color: var(--text);
background: #fff;
font-size: 15px;
line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }  .site-header {
position: sticky; top: 0; z-index: 200;
background: #fff; border-bottom: 2px solid #eee;
}
.nav-inner {
max-width: 1200px; margin: 0 auto;
display: flex; align-items: center;
justify-content: space-between;
padding: 12px 20px; gap: 20px;
}
.hdr-logo {
display: flex; align-items: center; gap: 10px;
flex-shrink: 0; text-decoration: none; color: inherit;
}
.hdr-logo-name { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: #1A1A1A; letter-spacing: 1px; }
.hdr-logo-sub  { font-size: 11px; color: #555; text-transform: uppercase; letter-spacing: 1px; }
.site-nav { display: flex; gap: 4px; align-items: center; }
.site-nav > a {
font-size: 14px; font-weight: 500; color: #1A1A1A;
padding: 7px 13px; border-radius: 4px;
transition: background .2s; white-space: nowrap; text-decoration: none;
}
.site-nav > a:hover { background: #F5C200; }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-drop-btn {
font-size: 14px; font-weight: 500; color: #1A1A1A;
padding: 7px 13px; border-radius: 4px; transition: background .2s;
white-space: nowrap; background: none; border: none; cursor: pointer;
display: flex; align-items: center; gap: 5px; font-family: inherit;
}
.nav-dropdown > .nav-drop-btn:hover { background: #F5C200; }
.nav-drop-btn svg { transition: transform .2s; }
.nav-dropdown.open > .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
display: none; position: absolute; top: calc(100% + 8px); left: 0;
background: #fff; border: 1px solid #e8e8e8; border-radius: 6px;
box-shadow: 0 8px 24px rgba(0,0,0,0.10); min-width: 230px; padding: 6px 0; z-index: 300;
}
.nav-dropdown.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
display: block; padding: 10px 18px; font-size: 14px; font-weight: 500;
color: #1A1A1A; text-decoration: none; transition: background .15s; white-space: nowrap;
}
.nav-drop-menu a:hover { background: #FFF8D6; }
.hdr-phone { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr-phone-icon { width: 36px; height: 36px; background: #F5C200; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hdr-phone-icon svg { width: 18px; height: 18px; }
.hdr-phone-num   { font-family: 'Oswald',sans-serif; font-size: 17px; font-weight: 600; color: #1A1A1A; white-space: nowrap; }
.hdr-phone-hours { font-size: 12px; color: #555; }
.burger {
display: none; flex-direction: column; justify-content: center;
gap: 5px; width: 36px; height: 36px;
cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0;
}
.burger span { display: block; height: 3px; background: #1A1A1A; border-radius: 2px; transition: transform .3s, opacity .3s, width .3s; width: 100%; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav {
display: none; flex-direction: column; background: #fff;
border-top: 2px solid #eee; overflow: hidden; max-height: 0;
transition: max-height .35s ease, padding .3s;
}
.mobile-nav.open { max-height: 600px; padding: 8px 0 16px; }
.mobile-nav a { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 500; color: #1A1A1A; padding: 11px 24px; text-decoration: none; transition: background .2s; }
.mobile-nav a:hover { background: #FFF8D6; }
.mobile-nav .mob-sub { font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; padding-left: 40px; color: #444; }
@media (max-width: 900px) {
.site-nav { display: none; }
.burger { display: flex; }
.mobile-nav { display: flex; }
.hdr-phone-hours { display: none; }
.hdr-phone-num { display: none; }
}
@media (max-width: 480px) {
.hdr-phone-num { font-size: 14px; }
.nav-inner { padding: 10px 14px; }
}
.hero {
min-height: 540px;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero-inner {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
gap: 40px;
}
.hero-left { max-width: 540px; }
.hero-title {
font-family: 'Oswald', sans-serif;
font-size: clamp(34px, 4.5vw, 64px);
font-weight: 700;
color: #fff;
line-height: 1.1;
text-transform: uppercase;
margin-bottom: 10px;
}
.hero-title span { color: var(--yellow); }
.hero-desc {
color: rgba(255,255,255,0.85);
font-size: 15px;
margin-bottom: 30px;
line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
background: var(--yellow);
color: var(--dark);
font-family: 'Oswald', sans-serif;
font-size: 15px;
font-weight: 600;
padding: 14px 28px;
border-radius: 4px;
letter-spacing: 0.5px;
display: flex;
align-items: center;
gap: 8px;
border: none;
cursor: pointer;
transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-outline {
background: transparent;
color: #fff;
border: 2px solid #fff;
font-family: 'Oswald', sans-serif;
font-size: 15px;
font-weight: 600;
padding: 12px 28px;
border-radius: 4px;
letter-spacing: 0.5px;
cursor: pointer;
transition: background .2s, color .2s;
}
.btn-outline:hover { background: #fff; color: var(--dark); }
.hero-features {
display: flex;
gap: 30px;
margin-top: 28px;
flex-wrap: wrap;
}
.hero-feat {
display: flex;
align-items: flex-start;
gap: 10px;
color: rgba(255,255,255,0.9);
font-size: 13px;
line-height: 1.4;
}
.hero-feat-icon {
width: 32px; height: 32px;
flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
}
.hero-feat-icon svg { width: 28px; height: 28px; fill: var(--yellow); } .hero-cards {
display: flex;
flex-direction: column;
flex-shrink: 0;
background: rgba(18,18,18,0.88);
backdrop-filter: blur(6px);
border-radius: 6px;
overflow: hidden;
min-width: 230px;
}
.hero-card {
padding: 16px 20px;
display: flex;
align-items: center;
gap: 16px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card:last-child { border-bottom: none; }
.hero-card-icon {
width: 36px; height: 36px;
flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 30px; height: 30px; fill: var(--yellow); }
.hero-card-text { color: #fff; font-size: 14px; font-weight: 500; line-height: 1.3; } .section-title {
font-family: 'Oswald', sans-serif;
font-size: clamp(24px, 3.2vw, 42px);
font-weight: 700;
text-transform: uppercase;
text-align: center;
margin-bottom: 8px;
color: var(--dark);
}
.title-line {
width: 60px; height: 4px;
background: var(--yellow);
margin: 0 auto 40px;
border-radius: 2px;
} .section { padding: 60px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.equipment-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.eq-card {
display: flex;
flex-direction: column;
border: 1px solid #e8e8e8;
border-radius: 6px;
overflow: hidden;
transition: box-shadow .25s, transform .2s;
}
.eq-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-3px); }
.eq-img {
width: 100%; height: 200px;
object-fit: cover;
background: #ddd;
}
.eq-img-placeholder {
width: 100%; height: 200px;
background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
display: flex; align-items: center; justify-content: center;
font-size: 60px;
}
.eq-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.eq-title {
font-family: 'Oswald', sans-serif;
font-size: 20px;
font-weight: 600;
color: var(--dark);
margin-bottom: 8px;
}
.eq-desc { font-size: 13px; color: #666; margin-bottom: 16px; line-height: 1.5; }
.eq-specs { margin-bottom: 18px; flex: 1; }
.eq-spec {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--gray);
margin-bottom: 6px;
}
.btn-yellow {
display: block;
background: var(--yellow);
color: var(--dark);
font-family: 'Oswald', sans-serif;
font-size: 14px;
font-weight: 600;
text-align: center;
padding: 12px;
letter-spacing: 0.5px;
border-radius: 4px;
border: none;
cursor: pointer;
transition: background .2s;
}
.btn-yellow:hover { background: var(--yellow-dark); } .why-tasks-section {
background: #fff;
padding: 60px 20px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.why-list { list-style: none; }
.why-item {
display: flex;
gap: 16px;
margin-bottom: 28px;
}
.why-icon {
width: 50px; height: 50px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.why-item h4 {
font-family: 'Oswald', sans-serif;
font-size: 16px;
font-weight: 600;
color: var(--dark);
margin-bottom: 4px;
}
.why-item p { font-size: 13px; color: #666; line-height: 1.5; }
.tasks-title {
font-family: 'Oswald', sans-serif;
font-size: clamp(20px, 2.8vw, 34px);
font-weight: 700;
text-transform: uppercase;
color: var(--dark);
margin-bottom: 8px;
}
.tasks-line { width: 50px; height: 4px; background: var(--yellow); margin-bottom: 30px; border-radius: 2px; }
.tasks-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.task-card {
border: 1px solid #e8e8e8;
border-radius: 6px;
padding: 20px 16px;
text-align: center;
transition: border-color .2s, box-shadow .2s;
cursor: pointer;
}
.task-card:hover { border-color: var(--yellow); box-shadow: 0 4px 16px rgba(245,194,0,0.15); }
.task-icon { font-size: 36px; margin-bottom: 10px; }
.task-name {
font-family: 'Oswald', sans-serif;
font-size: 14px;
font-weight: 600;
color: var(--dark);
text-transform: uppercase;
} .bottom-section {
display: grid;
grid-template-columns: 1fr 1fr;
}
.cities-block {
background: var(--dark2);
padding: 50px 40px;
color: #fff;
}
.cities-block .sec-title {
font-family: 'Oswald', sans-serif;
font-size: 26px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 10px;
}
.cities-block .sec-desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.cities-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
max-width: 360px;
}
.city-btn {
background: #333;
color: #fff;
font-size: 13px;
font-weight: 500;
padding: 10px 14px;
border-radius: 4px;
text-align: center;
cursor: pointer;
border: 1px solid #444;
transition: background .2s, border-color .2s;
}
.city-btn:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.form-block {
background: var(--yellow);
padding: 50px 40px;
}
.form-block .sec-title {
font-family: 'Oswald', sans-serif;
font-size: 26px;
font-weight: 700;
text-transform: uppercase;
color: var(--dark);
margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field {
position: relative;
display: flex;
align-items: center;
}
.form-field-icon {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
display: flex;
align-items: center;
}
.form-field-icon svg { width: 16px; height: 16px; }
.form-field .form-input,
.form-field .form-select { padding-left: 36px; }
.form-input {
background: rgba(255,255,255,0.9);
border: 1px solid rgba(0,0,0,0.1);
border-radius: 4px;
padding: 12px 14px;
font-size: 14px;
font-family: 'Roboto', sans-serif;
color: var(--dark);
outline: none;
transition: border-color .2s;
width: 100%;
}
.form-input:focus { border-color: var(--dark); background: #fff; }
.form-input::placeholder { color: #999; }
.form-select {
background: rgba(255,255,255,0.9);
border: 1px solid rgba(0,0,0,0.1);
border-radius: 4px;
padding: 12px 14px;
font-size: 14px;
font-family: 'Roboto', sans-serif;
color: #999;
outline: none;
width: 100%;
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
padding-right: 36px;
}
.form-full { grid-column: 1 / -1; }
.btn-submit {
width: 100%;
background: var(--dark);
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: 16px;
font-weight: 600;
padding: 16px;
letter-spacing: 1px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 12px;
transition: background .2s;
}
.btn-submit:hover { background: #333; }
.form-privacy { font-size: 12px; color: rgba(0,0,0,0.55); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; } footer {
background: var(--dark);
color: rgba(255,255,255,0.7);
}
.footer-top {
max-width: 1200px;
margin: 0 auto;
padding: 30px 20px;
display: flex;
justify-content: space-around;
gap: 20px;
flex-wrap: wrap;
}
.footer-contact {
display: flex;
align-items: center;
gap: 14px;
}
.footer-contact-icon {
width: 44px; height: 44px;
background: var(--yellow);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.footer-contact-icon svg { width: 22px; height: 22px; }
.footer-contact strong { display: block; color: #fff; font-size: 15px; font-weight: 600; }
.footer-contact span { font-size: 12px; }
.footer-bottom {
border-top: 1px solid #333;
padding: 20px;
}
.footer-bottom-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .name { font-family: 'Oswald', sans-serif; font-size: 15px; color: #fff; letter-spacing: 1px; }
.footer-logo .sub { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-nav a:hover { color: var(--yellow); }
.copyright { font-size: 12px; color: rgba(255,255,255,0.4); }
@media (max-width: 900px) {
.equipment-grid { grid-template-columns: 1fr 1fr; }
.two-col { grid-template-columns: 1fr; gap: 40px; }
.bottom-section { grid-template-columns: 1fr; }
nav { display: none; }
.tasks-grid { grid-template-columns: repeat(2, 1fr); }
.hero-inner { flex-direction: column; padding: 40px 20px; }
.two-col { padding: 0 20px; }
.cities-block { padding: 40px 20px; }
.form-block { padding: 40px 20px; }
}
@media (max-width: 600px) {
.equipment-grid { grid-template-columns: 1fr; }
.hero-cards { display: none; }
.form-row { grid-template-columns: 1fr; }
.cities-grid { grid-template-columns: repeat(2, 1fr); }
.hero-features { gap: 16px; }
.hero-btns { flex-direction: column; }
.hero-btns .btn-primary,
.hero-btns .btn-outline { width: 100%; justify-content: center; }
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; } .burger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px;
height: 36px;
cursor: pointer;
background: none;
border: none;
padding: 4px;
flex-shrink: 0;
}
.burger span {
display: block;
height: 3px;
background: var(--dark);
border-radius: 2px;
transition: transform .3s, opacity .3s, width .3s;
width: 100%;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
display: none;
flex-direction: column;
background: #fff;
border-top: 2px solid #eee;
padding: 0;
overflow: hidden;
max-height: 0;
transition: max-height .35s ease, padding .3s;
}
.mobile-menu.open {
max-height: 400px;
padding: 8px 0 16px;
}
.mobile-menu a {
font-family: 'Oswald', sans-serif;
font-size: 16px;
font-weight: 500;
color: var(--dark);
padding: 12px 20px;
border-bottom: 1px solid #f0f0f0;
display: block;
transition: background .15s, color .15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--yellow); color: var(--dark); }
@media (max-width: 900px) {
.burger { display: flex; }
.mobile-menu { display: flex; }
.header-phone .phone-hours { display: none; }
.header-phone .phone-num { display: none; }
}
@media (max-width: 600px) {
.phone-icon { width: 30px; height: 30px; }
.phone-icon svg { width: 15px; height: 15px; }
} :root {
--yellow: #FFB200;
--yellow-dark: #C28C00;
--dark: #16140E;
--dark2: #14120D;
--dark3: #1E1C18;
--gray: #6E6557;
--light-gray: #F7F5EF;
--white: #fff;
--text: #16140E;
--muted: #A8A296;
} .section-title {
font-family: 'Oswald', sans-serif;
font-size: clamp(24px, 3.2vw, 42px);
font-weight: 700;
text-transform: uppercase;
color: var(--dark);
} .eq-desc, .why-item p, .eq-spec, .hero-desc,
.hero-feat, .city-btn, .form-privacy, .phone-hours,
.footer-contact span, .copyright {
font-size: 14px;
} .eq-title { font-size: 19px; }
.why-item h4 { font-size: 16px; } nav a { font-size: 14px; }
.footer-nav a { font-size: 14px; } .phone-num { font-size: 17px; } .task-name { font-size: 13px; } .eq-desc, .why-item p { color: var(--gray); }
.eq-spec { color: var(--gray); }
.phone-hours, .logo-text .sub { color: var(--muted); }
.footer-contact span { color: var(--muted); }
.copyright { color: #5A5248; }
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 14px 24px; font-size: 13px; color: #9A9384; display: flex; gap: 6px; align-items: center; }
.breadcrumb a { color: #9A9384; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #C28C00; }
.breadcrumb span { color: #C8C0B0; }
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; }
@media (max-width: 900px) {
.site-nav { display: none; }
.burger { display: flex; }
.mobile-nav { display: flex; }
.hdr-phone-hours { display: none; }
} .mobile-nav {
display: none; flex-direction: column;
background: #fff; border-top: 2px solid #eee;
max-height: 0; overflow: hidden;
transition: max-height .35s ease, padding .3s;
}
.mobile-nav.open { max-height: 400px; padding: 8px 0 16px; }
.mobile-nav a {
font-family: 'Oswald',sans-serif; font-size: 16px; font-weight: 500;
color: #1A1A1A; padding: 12px 20px;
border-bottom: 1px solid #f0f0f0; display: block;
transition: background .15s;
}
.mobile-nav a:hover { background: #F5C200; } .grid-4    { grid-template-columns: repeat(4,1fr); }
.grid-3    { grid-template-columns: repeat(3,1fr); }
.grid-steps { grid-template-columns: repeat(5,1fr); }
h1 { font-family: 'Oswald',sans-serif; font-size: clamp(34px,4.5vw,64px); font-weight:700; }
h2 { font-family: 'Oswald',sans-serif; font-size: clamp(24px,3.2vw,42px); font-weight:700; }
@media (max-width: 900px) {
.burger { display: flex; }
.mobile-nav { display: flex; }
.site-nav { display: none; }
.hdr-phone-hours, .hdr-phone-num { display: none; }
.hero-grid   { grid-template-columns: 1fr !important; }
.grid-split  { grid-template-columns: 1fr !important; }
.grid-4      { grid-template-columns: repeat(2,1fr) !important; }
.grid-3      { grid-template-columns: repeat(2,1fr) !important; }
.grid-steps  { grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; }
.zona-grid   { grid-template-columns: 1fr !important; }
.resp-inner  { padding: 44px 16px !important; }
}
@media (max-width: 600px) {
.grid-4     { grid-template-columns: 1fr !important; }
.grid-3     { grid-template-columns: 1fr !important; }
.grid-steps { grid-template-columns: 1fr !important; }
.hero-stats { grid-template-columns: repeat(2,auto) !important; gap: 16px !important; }
h1 { font-size: clamp(34px,4.5vw,64px) !important; }
h2 { font-size: clamp(24px,3.2vw,42px); }
.nav-inner { padding: 10px 14px !important; }
} .zayavka-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
max-width: 1100px;
margin: 0 auto;
}
@media (max-width: 900px) {
.zayavka-grid {
grid-template-columns: 1fr !important;
gap: 40px !important;
}
#zayavka { padding: 48px 20px !important; }
}
body { font-family: 'Roboto', sans-serif; overflow-x: hidden; }
@media (max-width: 900px) {
.burger { display: flex; }
.mobile-nav { display: flex; }
.site-nav { display: none; }
.hdr-phone-hours, .hdr-phone-num { display: none; }
.hero-grid   { grid-template-columns: 1fr !important; padding: 44px 16px !important; }
.grid-split  { grid-template-columns: 1fr !important; }
.grid-4      { grid-template-columns: repeat(2,1fr) !important; }
.grid-3      { grid-template-columns: repeat(2,1fr) !important; }
.grid-steps  { grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; }
.zona-grid   { grid-template-columns: 1fr !important; }
.resp-inner  { padding: 44px 16px !important; }
.hero-stats  { grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; width: 100% !important; }
[style*="min-width:180px"] { min-width: 0 !important; }
}
@media (max-width: 600px) {
.grid-4     { grid-template-columns: 1fr !important; }
.grid-3     { grid-template-columns: 1fr !important; }
.grid-steps { grid-template-columns: 1fr !important; }
.hero-stats { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }
.nav-inner { padding: 10px 14px !important; }
}  .site-header {
position: sticky; top: 0; z-index: 200;
background: #fff; border-bottom: 2px solid #eee;
} html, body { overflow-x: hidden; }
.hdr-phone-icon { background: #FFB200 !important; }
body { font-family: 'Roboto', sans-serif; color: #16140E; background: #fff; font-size: 15px; line-height: 1.5; } .site-header { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 2px solid #eee; }
.site-nav > a { font-size: 14px; font-weight: 500; color: #1A1A1A; padding: 7px 13px; border-radius: 4px; transition: background .2s; white-space: nowrap; }
.nav-drop-menu a { display: block; padding: 10px 18px; font-size: 14px; font-weight: 500; color: #1A1A1A; transition: background .15s; white-space: nowrap; }
.mobile-nav a { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 500; color: #1A1A1A; padding: 11px 24px; transition: background .2s; }
@media (max-width: 900px) { .site-nav { display: none; } .burger { display: flex; } .mobile-nav { display: flex; } .hdr-phone-hours, .hdr-phone-num { display: none; } }
@media (max-width: 480px) { .nav-inner { padding: 10px 14px; } } .article-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px 72px; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; } .article-sidebar { position: sticky; top: 80px; }
.art-tag { display: inline-block; background: #FFF3D6; color: var(--yellow-dark); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 22px; }
.art-meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.art-meta-item svg { width: 16px; height: 16px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.art-share { margin-top: 8px; }
.art-share-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); cursor: pointer; }
.art-share-label svg { width: 16px; height: 16px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; } .article-content { min-width: 0; }
.art-breadcrumb { font-size: 13px; color: #9A9384; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.art-breadcrumb a { color: #9A9384; transition: color .2s; }
.art-breadcrumb a:hover { color: var(--yellow-dark); }
.art-breadcrumb span { color: #C8C0B0; }
.art-title { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 16px; }
.art-lead { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; max-width: 660px; }
.art-cover { width: 100%; border-radius: 6px; overflow: hidden; margin-bottom: 44px; }
.art-cover img { width: 100%; height: 420px; object-fit: cover; display: block; } .art-body h2 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark); margin: 36px 0 12px; }
.art-body p { font-size: 15px; color: #3A3530; line-height: 1.75; margin-bottom: 16px; }
.art-body ul { padding-left: 34px; margin: 16px 0 20px 0; display: flex; flex-direction: column; gap: 10px; list-style: none; }
.art-body ul li { position: relative; align-items: flex-start; gap: 10px; font-size: 15px; color: #3A3530; line-height: 1.6; }
.art-body ul li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--yellow); position: absolute; left: -34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2316140E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.art-body strong { color: var(--dark); font-weight: 600; }
.art-body a { color: var( --yellow-dark ) !important }
.art-body .wp-block-image img { object-fit: cover; width: 100%; max-height: 60vh; height: auto; border-radius: 6px; } .art-callout { display: flex; align-items: flex-start; gap: 16px; background: #FFF8E8; border-left: 4px solid var(--yellow); padding: 18px 20px; margin: 24px 0; border-radius: 0 6px 6px 0; }
.art-callout-icon { width: 40px; height: 40px; background: #fff; border: 1.5px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.art-callout-icon svg { width: 18px; height: 18px; stroke: var(--yellow); fill: none; stroke-width: 2; stroke-linecap: round; }
.art-callout-text { font-size: 14px; color: #3A3530; line-height: 1.65; }
.art-callout-text strong { color: var(--dark); } .art-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #F7F5EF; border: 1px solid #E7E2D6; padding: 22px 28px; margin: 36px 0; border-radius: 4px; flex-wrap: wrap; }
.art-cta-left { display: flex; align-items: center; gap: 16px; }
.art-cta-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.art-cta-icon svg { width: 20px; height: 20px; stroke: var(--dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.art-cta-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 2px; }
.art-cta-desc { font-size: 13px; color: var(--gray); }
.art-cta-btn { background: var(--yellow); color: var(--dark); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; padding: 13px 24px; border: none; cursor: pointer; white-space: nowrap; transition: background .2s; letter-spacing: .04em; flex-shrink: 0; }
.art-cta-btn:hover { background: var(--yellow-dark); color: #fff; } .art-nav { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #E7E2D6; padding-top: 28px; margin-top: 20px; gap: 16px; }
.art-nav-link { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--gray); transition: color .2s; }
.art-nav-link:hover { color: var(--dark); }
.art-nav-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } .related-section { background: #F7F5EF; padding: 56px 24px 72px; }
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-title { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card { background: #fff; border: 1px solid #E7E2D6; overflow: hidden; transition: box-shadow .2s, transform .15s; }
.related-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.related-card-img { position: relative; overflow: hidden; }
.related-card-img img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .4s; }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-date { position: absolute; bottom: 10px; left: 10px; background: rgba(22,20,14,0.75); color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 2px; }
.related-card-body { padding: 16px; }
.related-card-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.25; transition: color .2s; }
.related-card-title:hover { color: var(--yellow-dark); } @media (max-width: 900px) {
.article-wrap { grid-template-columns: 1fr; gap: 0; }
.article-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 28px; }
.art-tag { margin-bottom: 0; }
.art-meta-item { margin-bottom: 0; }
.related-grid { grid-template-columns: repeat(2, 1fr); }
.art-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
.article-wrap { padding: 28px 16px 56px; }
.related-section { padding: 40px 16px 56px; }
.related-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
.art-cover img { height: 240px; }
.art-nav { flex-direction: column; align-items: flex-start; gap: 12px; }
} .blog-hero { background: #F7F5EF; padding: 56px 24px 0; overflow: hidden; }
.blog-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.blog-hero-breadcrumb { font-size: 13px; color: #9A9384; display: flex; gap: 6px; align-items: center; margin-bottom: 20px; }
.blog-hero-breadcrumb a { color: #9A9384; transition: color .2s; }
.blog-hero-breadcrumb a:hover { color: var(--yellow-dark); }
.blog-hero-breadcrumb span { color: #C8C0B0; }
.blog-hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(48px, 7vw, 80px); font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 18px; }
.blog-hero-line { width: 52px; height: 4px; background: var(--yellow); border-radius: 2px; margin-bottom: 20px; }
.blog-hero-desc { font-size: 16px; color: var(--gray); line-height: 1.65; max-width: 380px; }
.blog-hero-img { display: flex; align-items: flex-end; justify-content: flex-end; position: relative; min-height: 300px; }
.blog-hero-img img { height: 300px; width: auto; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)); }
.blog-hero-circle { position: absolute; right: -20px; bottom: 0; width: 320px; height: 320px; background: #EDEAE2; border-radius: 50%; z-index: 0; }
.blog-hero-dots { position: absolute; top: 20px; left: 40px; display: grid; grid-template-columns: repeat(6, 8px); gap: 8px; z-index: 0; }
.blog-hero-dots span { width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; opacity: .5; } .blog-section { background: #F7F5EF; padding: 56px 24px 72px; }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.post-card { background: #fff; display: grid; grid-template-columns: 200px 1fr; overflow: hidden; transition: box-shadow .2s, transform .15s; border: 1px solid #E7E2D6; }
.post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }
.post-card-img { position: relative; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 22px 22px 20px; display: flex; flex-direction: column; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.post-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.tag-arenda { background: #FFF3D6; color: #C28C00; }
.tag-stroitelstvo { background: #E8F4FF; color: #1565C0; }
.tag-poleznoe { background: #E8FFF0; color: #2E7D32; }
.tag-novosti { background: #FFF0F0; color: #C62828; }
.post-date { font-size: 12px; color: #A8A296; }
.post-title { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 10px; }
.post-title:hover { color: var(--yellow-dark); }
.post-excerpt { font-size: 13.5px; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.post-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--dark); transition: color .2s; margin-top: auto; }
.post-read-more:hover { color: var(--yellow-dark); }
.post-read-more svg { width: 14px; height: 14px; transition: transform .2s; }
.post-read-more:hover svg { transform: translateX(3px); } .pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 52px; }
.page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; color: var(--dark); border: 1.5px solid #E7E2D6; background: #fff; cursor: pointer; transition: all .2s; }
.page-numbers:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.page-numbers.current { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.page-dots { font-size: 15px; color: #A8A296; padding: 0 4px; }
.page-numbers.next,
.page-numbers.prev { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid #E7E2D6; background: #fff; cursor: pointer; transition: all .2s; }
.page-numbers.next:hover,
.page-numbers.prev:hover { background: var(--yellow); border-color: var(--yellow); }
.page-numbers.next svg,
.page-numbers.prev svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } @media (max-width: 900px) {
.blog-hero-inner { grid-template-columns: 1fr; }
.blog-hero-img { display: none; }
.blog-grid { grid-template-columns: 1fr; }
.post-card { grid-template-columns: 160px 1fr; }
}
@media (max-width: 560px) {
.post-card { grid-template-columns: 1fr; }
.post-card-img img { min-height: 200px; max-height: 220px; }
.blog-hero { padding: 40px 16px 0; }
.blog-section { padding: 40px 16px 56px; }
} .breadcrumb { font-size: 13px; color: #9A9384; display: flex; gap: 6px; align-items: center; margin-bottom: 28px; }
.breadcrumb a { color: #9A9384; transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow-dark); } .hero-contacts { background: #F7F5EF; overflow: hidden; }
.hero-contacts-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.hero-contacts-title { font-family: 'Oswald', sans-serif; font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--dark); text-transform: uppercase; line-height: 1.02; margin-bottom: 6px; }
.hero-contacts-line { width: 56px; height: 4px; background: var(--yellow); border-radius: 2px; margin: 18px 0 22px; }
.hero-contacts-desc { font-size: 16px; color: var(--gray); line-height: 1.65; max-width: 400px; margin-bottom: 36px; }
.hero-feat-list { display: flex; flex-direction: column; gap: 18px; }
.hero-feat-item { display: flex; align-items: flex-start; gap: 16px; }
.hero-feat-icon { width: 44px; height: 44px; border: 2px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-feat-icon svg { width: 20px; height: 20px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-feat-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; color: var(--dark); }
.hero-feat-desc { font-size: 14px; color: var(--gray); margin-top: 2px; } .map-wrap { position: relative; height: 440px; background: #E8E4DC; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(20%); } .cards-section { background: #fff; padding: 64px 24px; }
.cards-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { border: 1px solid #E7E2D6; padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.contact-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.contact-card-icon { width: 48px; height: 48px; border: 1.5px solid var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card-label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .12em; color: #9A9384; text-transform: uppercase; margin-bottom: 8px; }
.contact-card-value { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.2; }
.contact-card-sub { font-size: 13px; color: var(--gray); line-height: 1.4; } .stats-bar { background: #fff; border-top: 1px solid #E7E2D6; border-bottom: 1px solid #E7E2D6; }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; overflow: hidden; }
.stat-item { display: flex; align-items: flex-start; gap: 14px; padding: 0 14px; border-right: 1px solid #E7E2D6; }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 32px; height: 32px; stroke: var(--yellow); fill: none; stroke-width: 1.5; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat-label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: var(--dark); text-transform: uppercase; margin: 4px 0 6px; letter-spacing: .05em; }
.stat-desc { font-size: 13px; color: var(--gray); line-height: 1.4; } .form-section { background: #F7F5EF; padding: 72px 24px; }
.form-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-title { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 10px; }
.form-desc { font-size: 15px; color: var(--gray); margin-bottom: 32px; line-height: 1.6; }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.form-input { border: 1.5px solid #E7E2D6; background: #fff; padding: 15px 16px; font-size: 15px; font-family: 'Roboto', sans-serif; color: var(--dark); outline: none; width: 100%; transition: border-color .2s; }
.form-input:focus { border-color: var(--yellow); }
.form-input::placeholder { color: #A8A296; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--yellow); color: var(--dark); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; padding: 17px 36px; border: none; cursor: pointer; width: 100%; letter-spacing: .04em; transition: background .2s; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--yellow-dark); color: #fff; }
.form-privacy { font-size: 12px; color: #A8A296; text-align: center; margin-top: 12px; line-height: 1.5; } .cta-block { background: var(--dark); padding: 40px 36px; position: relative; overflow: hidden; }
.cta-block-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.cta-block-content { position: relative; z-index: 1; }
.cta-block-title { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.cta-block-title span { color: var(--yellow); }
.cta-block-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 30px; max-width: 360px; }
.cta-feat-list { display: flex; flex-direction: column; gap: 16px; }
.cta-feat-item { display: flex; align-items: flex-start; gap: 14px; }
.cta-feat-icon { width: 40px; height: 40px; background: rgba(255,178,0,0.15); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-feat-icon svg { width: 20px; height: 20px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-feat-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px; color: #fff; }
.cta-feat-desc { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; } #formSentMsg { display: none; flex-direction: column; align-items: center; text-align: center; padding: 40px 0; } @media (max-width: 1000px) {
.stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-item { border-right: none; border-bottom: 1px solid #E7E2D6; padding: 0 0 20px; }
.stat-item:nth-child(odd) { border-right: 1px solid #E7E2D6; padding-right: 16px; }
.stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 500px) {
.stats-bar-inner { grid-template-columns: 1fr; }
.stat-item { border-right: none !important; border-bottom: 1px solid #E7E2D6; padding: 0 0 20px !important; }
.stat-item:last-child { border-bottom: none; }
.stat-num { white-space: normal !important; word-break: break-word; }
}
@media (max-width: 900px) {
.hero-contacts-inner { grid-template-columns: 1fr; gap: 0; }
.map-wrap { height: 300px; margin-top: 32px; }
.form-inner { grid-template-columns: 1fr; }
.cta-block { margin-top: 0; }
}
@media (max-width: 600px) {
.cards-inner { grid-template-columns: 1fr; }
.hero-contacts-inner { padding: 40px 16px 0; }
.cards-section, .form-section { padding: 48px 16px; }
.cta-block { padding: 32px 20px; }
} .breadcrumb { max-width: 1200px; margin: 0 auto; padding: 14px 24px; font-size: 13px; color: #9A9384; display: flex; gap: 6px; align-items: center; } .hero-about { background: #fff; padding: 0 0 80px; overflow: hidden; }
.hero-about-inner { max-width: 1200px; margin: 0 auto; padding: 60px 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-about-label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .2em; color: var(--yellow-dark); text-transform: uppercase; margin-bottom: 18px; }
.hero-about-title { font-family: 'Oswald', sans-serif; font-size: clamp(34px, 4.5vw, 58px); font-weight: 700; color: var(--dark); line-height: 1.08; margin-bottom: 6px; }
.hero-about-title span { color: var(--yellow); }
.hero-about-line { width: 60px; height: 4px; background: var(--yellow); margin: 20px 0 24px; border-radius: 2px; }
.hero-about-desc { font-size: 16px; color: var(--gray); line-height: 1.65; max-width: 440px; margin-bottom: 32px; }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--dark); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; padding: 16px 32px; cursor: pointer; border: none; letter-spacing: .04em; transition: background .2s; }
.btn-hero:hover { background: var(--yellow-dark); color: #fff; }
.hero-about-img { position: relative; }
.hero-about-img img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; } .stats-bar { background: #fff; border-top: 1px solid #E7E2D6; border-bottom: 1px solid #E7E2D6; }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { display: flex; align-items: flex-start; gap: 16px; padding: 0 20px; border-right: 1px solid #E7E2D6; }
.stat-label { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); text-transform: uppercase; margin: 4px 0 6px; } .about-section { background: #F7F5EF; padding: 88px 24px; }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .2em; color: var(--yellow-dark); text-transform: uppercase; margin-bottom: 16px; }
.about-title { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 6px; }
.about-line { width: 48px; height: 4px; background: var(--yellow); margin: 20px 0 26px; border-radius: 2px; }
.about-text { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.about-text strong { color: var(--dark); }
.about-list { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dark); }
.about-list li::before { content: ''; width: 22px; height: 22px; flex-shrink: 0; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316140E' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px; padding: 15px 30px; letter-spacing: .04em; transition: background .2s; cursor: pointer; border: none; }
.btn-outline-dark:hover { background: #2a2a2a; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-badge { position: absolute; bottom: 24px; right: 24px; background: #fff; padding: 18px 22px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); max-width: 260px; }
.about-badge-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-badge-icon svg { width: 22px; height: 22px; }
.about-badge-text { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.about-badge-sub { font-size: 12px; color: var(--gray); margin-top: 3px; } .adv-section { background: #fff; padding: 88px 24px; }
.adv-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .2em; color: var(--yellow-dark); text-transform: uppercase; margin-bottom: 14px; text-align: center; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; color: var(--dark); text-transform: uppercase; text-align: center; margin-bottom: 6px; }
.section-line { width: 60px; height: 4px; background: var(--yellow); margin: 18px auto 52px; border-radius: 2px; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.adv-card { border: 1px solid #E7E2D6; background: #FBFAF6; padding: 32px 28px; transition: box-shadow .2s, transform .2s; }
.adv-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.adv-icon { width: 52px; height: 52px; margin-bottom: 20px; }
.adv-icon svg { width: 52px; height: 52px; stroke: var(--yellow); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adv-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; line-height: 1.15; }
.adv-desc { font-size: 14px; color: var(--gray); line-height: 1.6; } .team-section { background: #F7F5EF; padding: 88px 24px; overflow: hidden; }
.team-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.team-img { position: relative; }
.team-img img { width: 100%; height: 460px; object-fit: cover; object-position: center top; } .cta-section { background: var(--dark); padding: 72px 24px; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-title { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; text-transform: uppercase; line-height: 1.1; margin-bottom: 18px; }
.cta-title span { color: var(--yellow); }
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; } @media (max-width: 900px) {
.hero-about-inner { grid-template-columns: 1fr; gap: 40px; }
.hero-about-img img { height: 320px; }
.stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
.stat-item { border-right: none; border-bottom: 1px solid #E7E2D6; padding: 0 0 20px; }
.stat-item:nth-child(odd) { border-right: 1px solid #E7E2D6; }
.stat-item:last-child { border-bottom: none; }
.about-inner { grid-template-columns: 1fr; gap: 40px; }
.about-img-wrap img { height: 340px; }
.adv-grid { grid-template-columns: repeat(2, 1fr); }
.team-inner { grid-template-columns: 1fr; gap: 40px; }
.team-img img { height: 320px; }
}
@media (max-width: 700px) { #requisites-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 600px) {
.hero-about-inner { padding: 40px 16px 0; }
.stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
.adv-grid { grid-template-columns: 1fr; }
.about-section, .adv-section, .team-section { padding: 56px 16px; }
.cta-section { padding: 56px 16px; }
.about-badge { right: 12px; bottom: 12px; max-width: 220px; }
}