*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #141510;
  --dark2:      #1C1D17;
  --dark3:      #252620;
  --green:      #2A4A12;
  --green-mid:  #3A6318;
  --green-acc:  #5A8F28;
  --sand:       #C49A3C;
  --sand-light: #DDB95A;
  --cream:      #F0EAD6;
  --gray:       #7A7A68;
  --gray-light: #B8B8A8;
  --white:      #FFFFFF;
  --accent:     #D4860A;
  --border:     rgba(196,154,60,0.2);
  /* Legacy vars from old styles */
  --green-corp: #228B22;
  --beige-bg:   #F5F5DC;
  --brown-text: #8B4513;
  --footer-bg:  #f8f6f2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--sand); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--sand); color: var(--sand); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(20,21,16,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img { height: 34px; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-text span { color: var(--sand); }
nav ul { display: flex; gap: 28px; list-style: none; align-items: center; }
nav ul a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--sand); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 9px 20px; font-size: 12px !important; }
.nav-cta:hover { background: var(--sand) !important; color: var(--dark) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://kamyshexpert.kz/image/k10.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,21,16,0.96) 0%, rgba(20,21,16,0.65) 55%, rgba(20,21,16,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 100px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,154,60,0.12);
  border: 1px solid var(--border);
  padding: 8px 16px;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-acc);
  flex-shrink: 0;
}
.hero-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
h1 em { font-style: normal; color: var(--sand); }
.hero-sub {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-specs {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-spec { border-left: 2px solid var(--green-acc); padding-left: 14px; }
.hero-spec strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-spec span {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* STATS */
.stats-bar { background: var(--dark3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar .container { display: flex; }
.stat-item {
  flex: 1;
  padding: 30px 36px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* SECTIONS */
.section { padding: 96px 0; }

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
}
h2 em { font-style: normal; color: var(--sand); }

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
}
.product-card {
  background: var(--dark2);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.product-card:hover { background: var(--dark3); }
.product-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--green-acc);
  transition: height 0.35s;
}
.product-card:hover::after { height: 100%; }
.product-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -22px;
}
.product-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--sand-light);
}
.product-card p { font-size: 15px; color: var(--gray-light); line-height: 1.65; }

/* GALLERY */
.gallery-section { padding: 96px 0; background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 270px 270px;
  gap: 4px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.82);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,21,16,0.88));
  padding: 24px 18px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* SPECS */
.specs-section { padding: 96px 0; }
.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 15px 0; font-size: 15px; }
.specs-table td:first-child { color: var(--gray); width: 55%; padding-right: 16px; }
.specs-table td:last-child { font-weight: 600; color: var(--white); }
.specs-image { position: relative; height: 440px; overflow: hidden; }
.specs-image img { width: 100%; height: 100%; object-fit: cover; }
.specs-image-tag {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(20,21,16,0.92);
  border: 1px solid var(--border);
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
}

/* APPLICATIONS */
.apps-section { padding: 96px 0; background: var(--dark2); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
}
.app-card { background: var(--dark); padding: 40px 36px; transition: background 0.3s; }
.app-card:hover { background: var(--dark3); }
.app-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-acc);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.app-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 12px;
}
.app-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* PRODUCTION */
.production-section { padding: 96px 0; }
.production-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.production-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.production-images .main-img {
  grid-column: span 2;
  height: 300px;
  overflow: hidden;
}
.production-images .thumb { height: 180px; overflow: hidden; }
.production-images img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.production-images img:hover { transform: scale(1.04); }
.production-text p { font-size: 16px; color: var(--gray-light); line-height: 1.7; margin-bottom: 18px; }
.production-text h2 { margin-bottom: 24px; }
.prod-points { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 13px; }
.prod-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--gray-light);
}
.prod-point::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--green-acc);
  flex-shrink: 0;
  margin-top: 12px;
}

/* FORM */
.form-section {
  padding: 96px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.form-info h2 { color: var(--white); margin-bottom: 20px; }
.form-info p { font-size: 16px; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 36px; }
.form-contacts { display: flex; flex-direction: column; gap: 18px; }
.form-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s;
}
.form-contact-link:hover { color: var(--sand-light); }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: currentColor; }
form.main-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sand-light);
  background: rgba(255,255,255,0.14);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--green); color: var(--white); }
.btn-form {
  background: var(--accent);
  color: var(--white);
  padding: 17px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.btn-form:hover { background: #b8720a; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.65; max-width: 260px; margin-top: 16px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 14px; color: var(--gray); line-height: 1.75; }
.footer-col address a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-langs { display: flex; gap: 8px; }
.lang-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--sand); border-color: var(--sand); }

/* MOBILE */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  nav { padding: 0 20px; }
  nav ul { display: none; }
  .hero-content { padding: 60px 24px 80px; }
  .stats-bar .container { flex-wrap: wrap; }
  .stat-item { flex: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .product-grid, .specs-layout, .production-layout, .form-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 240px; }
  .gallery-item { height: 180px; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .gallery-section, .apps-section, .specs-section, .production-section, .form-section { padding: 64px 0; }
  .production-layout { gap: 40px; }
  .specs-layout { gap: 40px; }
  .form-layout { gap: 48px; }
}
@media (max-width: 600px) {
  .apps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  .hero-specs { gap: 20px; }
}

/* =====================================================
   КЛАССЫ ИЗ СТАРОГО CSS — рестайл под общую тему
   ===================================================== */

/* Сброс фонов для Bootstrap-контейнеров */
.navbar, .container-fluid {
    background-color: transparent !important;
}

/* HERO с фоновым изображением (Bootstrap-страницы) */
.hero-box-img {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    background-image: url('/image/hero_kamysh.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-box-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(20,21,16,0.92) 0%, rgba(20,21,16,0.60) 55%, rgba(20,21,16,0.20) 100%);
    z-index: 0;
}
.hero-subtl {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}
.hero-title em {
    font-style: normal;
    color: var(--sand);
}
.hero-subtitle {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
}

/* Кнопки Call & WhatsApp */
.call-button-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: .5rem;
    padding: 15px 32px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
    position: relative;
    z-index: 3;
}
.whatsapp-button-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    transition: border-color 0.2s, color 0.2s;
    position: relative;
    z-index: 3;
}
.call-button-custom:hover { background: var(--sand); }
.whatsapp-button-custom:hover { border-color: var(--sand); color: var(--sand); }

/* Карточки преимуществ */
.advantages-section {
    padding: 96px 0;
    background: var(--dark2);
}
.advantages-grid {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--border);
    margin-top: 56px;
}
.adv-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 40px 32px;
    background: var(--dark);
    border: none;
    text-align: center;
    color: var(--white);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.adv-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--green-acc);
    transition: width 0.35s;
}
.adv-card:hover { background: var(--dark3); }
.adv-card:hover::after { width: 100%; }
.adv-icon img {
    width: 44px; height: 44px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
    opacity: 0.75;
}
.adv-title {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sand-light);
    margin-bottom: 10px;
}
.adv-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* Bootstrap Carousel */
.carousel-indicators button {
    background-color: rgba(196,154,60,0.4);
    width: 28px; height: 3px;
    border-radius: 0;
    border: none;
    margin: 4px;
    opacity: 1;
    transition: background 0.2s;
}
.carousel-indicators .active { background-color: var(--sand); }
.carousel-control-prev, .carousel-control-next {
    background-color: rgba(20,21,16,0.75);
    border: 1px solid var(--border);
    width: 48px; height: 48px;
    top: 50%; transform: translateY(-50%);
    border-radius: 0;
    transition: background 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Owl Carousel */
.owl-custom-nav {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 24px;
}
.btn-prev, .btn-next {
    background: var(--dark3);
    color: var(--gray-light);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-prev:hover, .btn-next:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* CTA-блоки */
.cta-box {
    width: 100%;
    padding: 80px 48px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 0;
    margin: 80px auto;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--green-acc);
}
.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.08;
}
.cta-title em { font-style: normal; color: var(--sand); }
.cta-btn {
    display: inline-block;
    padding: 15px 34px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: background 0.2s;
}
.cta-btn:hover { background: var(--sand); }
.cta-form {
    background: url(/image/foto18.jpg) no-repeat center center;
    background-size: cover;
    padding: 96px 0;
    position: relative;
}
.cta-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,21,16,0.78);
}

/* Бренды / логотипы */
.tp-brand-5__item-box {
    display: inline-block;
    padding: 20px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transition: background 0.2s;
}
.tp-brand-5__item-box:hover { background: var(--dark3); }
.tp-brand-5__active { overflow-x: hidden; white-space: nowrap; }

/* Адаптивность */
@media (max-width: 992px) {
    .hero-title { font-size: 38px; }
    .cta-title { font-size: 34px; }
    .cta-box { padding: 60px 32px; }
}
@media (max-width: 768px) {
    .hero-box-img { min-height: 340px; padding: 80px 0; }
    .hero-title { font-size: 32px; }
    .advantages-grid { flex-direction: column; align-items: stretch; }
    .adv-card { max-width: 100%; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 28px; }
    .call-button-custom { width: 100%; margin-bottom: 10px; margin-right: 0; justify-content: center; }
    .whatsapp-button-custom { width: 100%; justify-content: center; }
    .cta-btn { width: 100%; text-align: center; }
    .cta-box { padding: 48px 20px; }
}




/*ABOUT PAGE*/


.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--sand); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--sand); color: var(--sand); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(20,21,16,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img { height: 34px; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-text span { color: var(--sand); }
nav ul { display: flex; gap: 28px; list-style: none; align-items: center; }
nav ul a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--sand); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 9px 20px; font-size: 12px !important; }
.nav-cta:hover { background: var(--sand) !important; color: var(--dark) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://kamyshexpert.kz/image/k10.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,21,16,0.96) 0%, rgba(20,21,16,0.65) 55%, rgba(20,21,16,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 100px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,154,60,0.12);
  border: 1px solid var(--border);
  padding: 8px 16px;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-acc);
  flex-shrink: 0;
}
.hero-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
h1 em { font-style: normal; color: var(--sand); }
.hero-sub {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-specs {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-spec { border-left: 2px solid var(--green-acc); padding-left: 14px; }
.hero-spec strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-spec span {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* STATS */
.stats-bar { background: var(--dark3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar .container { display: flex; }
.stat-item {
  flex: 1;
  padding: 30px 36px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* SECTIONS */
.section { padding: 96px 0; }

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
}
h2 em { font-style: normal; color: var(--sand); }

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
}
.product-card {
  background: var(--dark2);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.product-card:hover { background: var(--dark3); }
.product-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--green-acc);
  transition: height 0.35s;
}
.product-card:hover::after { height: 100%; }
.product-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -22px;
}
.product-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--sand-light);
}
.product-card p { font-size: 15px; color: var(--gray-light); line-height: 1.65; }

/* GALLERY */
.gallery-section { padding: 96px 0; background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 270px 270px;
  gap: 4px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.82);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,21,16,0.88));
  padding: 24px 18px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* SPECS */
.specs-section { padding: 96px 0; }
.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 15px 0; font-size: 15px; }
.specs-table td:first-child { color: var(--gray); width: 55%; padding-right: 16px; }
.specs-table td:last-child { font-weight: 600; color: var(--white); }
.specs-image { position: relative; height: 440px; overflow: hidden; }
.specs-image img { width: 100%; height: 100%; object-fit: cover; }
.specs-image-tag {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(20,21,16,0.92);
  border: 1px solid var(--border);
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
}

/* APPLICATIONS */
.apps-section { padding: 96px 0; background: var(--dark2); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
}
.app-card { background: var(--dark); padding: 40px 36px; transition: background 0.3s; }
.app-card:hover { background: var(--dark3); }
.app-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-acc);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.app-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 12px;
}
.app-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* PRODUCTION */
.production-section { padding: 96px 0; }
.production-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.production-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.production-images .main-img {
  grid-column: span 2;
  height: 300px;
  overflow: hidden;
}
.production-images .thumb { height: 180px; overflow: hidden; }
.production-images img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.production-images img:hover { transform: scale(1.04); }
.production-text p { font-size: 16px; color: var(--gray-light); line-height: 1.7; margin-bottom: 18px; }
.production-text h2 { margin-bottom: 24px; }
.prod-points { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 13px; }
.prod-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--gray-light);
}
.prod-point::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--green-acc);
  flex-shrink: 0;
  margin-top: 12px;
}

/* FORM */
.form-section {
  padding: 96px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.form-info h2 { color: var(--white); margin-bottom: 20px; }
.form-info p { font-size: 16px; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 36px; }
.form-contacts { display: flex; flex-direction: column; gap: 18px; }
.form-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s;
}
.form-contact-link:hover { color: var(--sand-light); }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: currentColor; }
form.main-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sand-light);
  background: rgba(255,255,255,0.14);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--green); color: var(--white); }
.btn-form {
  background: var(--accent);
  color: var(--white);
  padding: 17px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.btn-form:hover { background: #b8720a; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.65; max-width: 260px; margin-top: 16px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 14px; color: var(--gray); line-height: 1.75; }
.footer-col address a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-langs { display: flex; gap: 8px; }
.lang-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--sand); border-color: var(--sand); }

/* MOBILE */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  nav { padding: 0 20px; }
  nav ul { display: none; }
  .hero-content { padding: 60px 24px 80px; }
  .stats-bar .container { flex-wrap: wrap; }
  .stat-item { flex: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .product-grid, .specs-layout, .production-layout, .form-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 240px; }
  .gallery-item { height: 180px; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .gallery-section, .apps-section, .specs-section, .production-section, .form-section { padding: 64px 0; }
  .production-layout { gap: 40px; }
  .specs-layout { gap: 40px; }
  .form-layout { gap: 48px; }
}
@media (max-width: 600px) {
  .apps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  .hero-specs { gap: 20px; }
}


/* ── breadcrumb ── */
.bc-bar { padding: 100px 48px 0; background: var(--dark2); }
.bc-row { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); }
.bc-row a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.bc-row a:hover { color: var(--sand); }
.bc-cur { color: var(--sand); }
.bc-sep { opacity: 0.4; font-size: 11px; }

/* ── page hero ── */
.pg-hero { background: var(--dark2); padding: 56px 48px 72px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.pg-hero::after { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(135deg, transparent, rgba(90,143,40,0.04)); pointer-events: none; }
.pg-hero h1 { font-size: clamp(36px, 4.5vw, 60px); margin-bottom: 18px; }
.pg-hero p { font-size: 17px; color: var(--gray-light); max-width: 600px; line-height: 1.65; }

/* ── about ── */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.about-imgs .ai-main { grid-column: span 2; height: 320px; overflow: hidden; }
.about-imgs .ai-sm { height: 200px; overflow: hidden; }
.about-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.about-imgs img:hover { transform: scale(1.04); }
.about-p { font-size: 16px; color: var(--gray-light); line-height: 1.75; margin-bottom: 18px; }

.vals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; background: var(--border); }
.val-card { background: var(--dark2); padding: 40px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.val-card:hover { background: var(--dark3); }
.val-card::after { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--green-acc); transition: height 0.35s; }
.val-card:hover::after { height: 100%; }
.val-n { font-family: 'Oswald', sans-serif; font-size: 64px; font-weight: 700; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: -18px; }
.val-card h3 { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sand-light); margin-bottom: 10px; }
.val-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── catalog ── */
.cat-grid 
{ 
	display: grid; 
	grid-template-columns: repeat(4,1fr);
	gap: 2px; 
	margin-top: 56px;
	background: var(--border); 
}
.ct-card 
{ 
	background: var(--dark2); 
	overflow: hidden; 
	transition: background 0.3s;
	display: flex;
    flex-direction: column;
}

.ct-card:hover { background: var(--dark3); }
.ct-img { height: 220px; overflow: hidden; }
.ct-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.8); display: block; }
.ct-card:hover .ct-img img { transform: scale(1.05); filter: brightness(1); }
.ct-body { padding: 32px; display: flex;
    flex-direction: column;
    flex: 1;}
.ct-num { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500; color: var(--green-acc); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.ct-card h3 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--sand-light); margin-bottom: 10px; line-height: 1.2; }
.ct-card p 
{ 
	font-size: 14px;
	color: var(--gray); 
	line-height: 1.65; 
	margin-bottom: 20px;
flex: 1;}
.ct-more { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.ct-more::after { content: ' →'; }

/* ── service ── */
.svc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-img { height: 420px; overflow: hidden; position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-img-tag { position: absolute; bottom: 18px; left: 18px; background: rgba(20,21,16,0.92); border: 1px solid var(--border); padding: 9px 16px; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sand); }
.svc-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.svc-tag { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-acc); border: 1px solid var(--green-acc); padding: 5px 14px; }
.svc-body-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.svc-body p { font-size: 16px; color: var(--gray-light); line-height: 1.75; margin-bottom: 18px; }
.svc-body h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; color: var(--white); margin: 36px 0 14px; }
.svc-aside { background: var(--dark2); border: 1px solid var(--border); padding: 36px; position: sticky; top: 88px; }
.svc-aside h4 { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sand); margin-bottom: 20px; }
.aside-r { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.aside-r:last-of-type { border-bottom: none; margin-bottom: 24px; }
.aside-l { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.aside-v { font-size: 15px; font-weight: 600; color: var(--white); }
.aside-links a { display: block; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: 'Oswald', sans-serif; font-size: 13px; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
.aside-links a:last-child { border-bottom: none; }
.aside-links a:hover { color: var(--sand); }
.svc-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-top: 56px; }
.svc-gallery .g-wide { grid-column: span 2; height: 280px; overflow: hidden; }
.svc-gallery .g-sm { height: 280px; overflow: hidden; }
.svc-gallery .g-xs { height: 200px; overflow: hidden; }
.svc-gallery img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82); display: block; transition: transform 0.4s; }
.svc-gallery img:hover { transform: scale(1.04); filter: brightness(1); }

/* ── contacts ── */
.cts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.cts-block { margin-bottom: 40px; }
.cts-block h3 { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sand); margin-bottom: 18px; }
.cts-row { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--white); font-size: 17px; font-weight: 600; margin-bottom: 14px; transition: color 0.2s; }
.cts-row:hover { color: var(--sand-light); }
.cts-icon { width: 44px; height: 44px; background: var(--dark2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cts-icon svg { width: 20px; height: 20px; fill: var(--sand); }
.cts-sub { font-size: 13px; color: var(--gray); font-weight: 400; display: block; margin-top: 2px; }
.cts-map { background: var(--dark2); border: 1px solid var(--border); height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; margin-bottom: 32px; }
.cts-map strong { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--white); }
.cts-map p { font-size: 14px; color: var(--gray); text-align: center; line-height: 1.5; margin: 0; }
.cts-form .form-group input,
.cts-form .form-group select,
.cts-form .form-group textarea {
  background: var(--dark2); border: 1px solid var(--border); color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-size: 15px; padding: 15px 18px;
  outline: none; width: 100%; -webkit-appearance: none; appearance: none; transition: border-color 0.2s;
}
.cts-form .form-group input::placeholder,
.cts-form .form-group textarea::placeholder { color: var(--gray); }
.cts-form .form-group input:focus,
.cts-form .form-group select:focus,
.cts-form .form-group textarea:focus { border-color: var(--sand-light); }
.cts-form .form-group textarea { resize: vertical; min-height: 90px; }
.cts-form .form-group select option { background: var(--dark2); color: var(--white); }
.cts-form .form-note { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── responsive ── */
@media (max-width: 960px) {
  .pg-hero { padding: 40px 24px 56px; }
  .bc-bar { padding: 80px 24px 0; }
  .about-2col, .svc-hero-grid, .svc-body-grid, .cts-grid { grid-template-columns: 1fr; }
  .about-2col { gap: 40px; }
  .vals-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
  .svc-aside { position: static; }
  .svc-gallery { grid-template-columns: 1fr 1fr; }
  .svc-gallery .g-wide { grid-column: span 2; height: 220px; }
  .svc-gallery .g-sm, .svc-gallery .g-xs { height: 160px; }
}
@media (max-width: 600px) {
  .vals-grid, .cat-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   КЛАССЫ ИЗ СТАРОГО CSS — рестайл под общую тему
   ===================================================== */

.navbar, .container-fluid {
    background-color: transparent !important;
}

.hero-box-img {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    background-image: url('/image/hero_kamysh.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-box-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(20,21,16,0.92) 0%, rgba(20,21,16,0.60) 55%, rgba(20,21,16,0.20) 100%);
    z-index: 0;
}
.hero-subtl {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}
.hero-title em {
    font-style: normal;
    color: var(--sand);
}
.hero-subtitle {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
}

.call-button-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: .5rem;
    padding: 15px 32px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
    position: relative;
    z-index: 3;
}
.whatsapp-button-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    transition: border-color 0.2s, color 0.2s;
    position: relative;
    z-index: 3;
}
.call-button-custom:hover { background: var(--sand); }
.whatsapp-button-custom:hover { border-color: var(--sand); color: var(--sand); }

.advantages-section {
    padding: 96px 0;
    background: var(--dark2);
}
.advantages-grid {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--border);
    margin-top: 56px;
}
.adv-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 40px 32px;
    background: var(--dark);
    border: none;
    text-align: center;
    color: var(--white);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.adv-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--green-acc);
    transition: width 0.35s;
}
.adv-card:hover { background: var(--dark3); }
.adv-card:hover::after { width: 100%; }
.adv-icon img {
    width: 44px; height: 44px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
    opacity: 0.75;
}
.adv-title {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sand-light);
    margin-bottom: 10px;
}
.adv-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

.carousel-indicators button {
    background-color: rgba(196,154,60,0.4);
    width: 28px; height: 3px;
    border-radius: 0;
    border: none;
    margin: 4px;
    opacity: 1;
    transition: background 0.2s;
}
.carousel-indicators .active { background-color: var(--sand); }
.carousel-control-prev, .carousel-control-next {
    background-color: rgba(20,21,16,0.75);
    border: 1px solid var(--border);
    width: 48px; height: 48px;
    top: 50%; transform: translateY(-50%);
    border-radius: 0;
    transition: background 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.owl-custom-nav {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 24px;
}
.btn-prev, .btn-next {
    background: var(--dark3);
    color: var(--gray-light);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-prev:hover, .btn-next:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.cta-box {
    width: 100%;
    padding: 80px 48px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 0;
    margin: 80px auto;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--green-acc);
}
.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.08;
}
.cta-title em { font-style: normal; color: var(--sand); }
.cta-btn {
    display: inline-block;
    padding: 15px 34px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: background 0.2s;
}
.cta-btn:hover { background: var(--sand); }
.cta-form {
    background: url(/image/foto18.jpg) no-repeat center center;
    background-size: cover;
    padding: 96px 0;
    position: relative;
}
.cta-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,21,16,0.78);
}

.tp-brand-5__item-box {
    display: inline-block;
    padding: 20px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transition: background 0.2s;
}
.tp-brand-5__item-box:hover { background: var(--dark3); }
.tp-brand-5__active { overflow-x: hidden; white-space: nowrap; }

@media (max-width: 992px) {
    .hero-title { font-size: 38px; }
    .cta-title { font-size: 34px; }
    .cta-box { padding: 60px 32px; }
}
@media (max-width: 768px) {
    .hero-box-img { min-height: 340px; padding: 80px 0; }
    .hero-title { font-size: 32px; }
    .advantages-grid { flex-direction: column; align-items: stretch; }
    .adv-card { max-width: 100%; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 28px; }
    .call-button-custom { width: 100%; margin-bottom: 10px; margin-right: 0; justify-content: center; }
    .whatsapp-button-custom { width: 100%; justify-content: center; }
    .cta-btn { width: 100%; text-align: center; }
    .cta-box { padding: 48px 20px; }
}

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:20px 0; cursor:pointer; user-select:none; }
.faq-q span { font-size:18px; font-weight:500; }
.faq-arrow { fill:currentColor; transition:transform 0.3s ease; flex-shrink:0; margin-left:16px; }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.35s ease; }
.faq-a p { opacity:0; transition:opacity 0.25s ease; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-item.open .faq-a { max-height:300px; padding:0 0 20px 0; }
.faq-item.open .faq-a p { opacity:1; }