/*
    Created on : 23.06.2022, 00:56:00
    Author     : Alekhnovich Oleg (https://webplatinum.net)
*/

/* CUSTOMIZE THE MAIN CAROUSEL
-------------------------------------------------- */
#mainCarousel .carousel {
  margin-bottom: 4rem;
}

#mainCarousel .carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

#mainCarousel .carousel-item {
  height: 32rem;
}

#mainCarousel .carousel-bg-filter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: black;
  background: rgba(0, 0, 0, 0.5);
}

/* CAROUSEL FOR ADDITIONAL PRODUCT IMAGES
-------------------------------------------------- */
.additional-carousel-indicator {
  opacity: .5;
  transition: all 0.3s ease;
}

.additional-carousel-indicator:hover {
  opacity: 1;
  transition: all 0.3s ease;
}

.additional-carousel-indicator.active {
  opacity: 1;
  transition: all 0.3s ease;
}

/* CUSTOMIZE THE JUMBOTRON
-------------------------------------------------- */
.jumbotron-bg-filter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #e9ecef;
  background: rgba(0, 0, 0, 0.4);
}

/* MAIN CONTENT
-------------------------------------------------- */
a {
  color: #e09510;
}

a:hover {
  color: #e09514;
}

.text-darkblue {
  color: #003b77;
}

.text-orange {
  color: #e64c16;
}

.bg-darkblue {
  background-color: #003b77;
}

.bg-orange {
  background-color: #e64c16;
}

.error404 {
  font-size: 5rem;
}

@media (min-width: 390px) {
  .error404 {
    font-size: 7rem;
  }
}

@media (min-width: 576px) {
  .error404 {
    font-size: 10rem;
  }
}

@media (min-width: 768px) {
  .error404 {
    font-size: 14rem;
  }
}

@media (min-width: 1200px) {
  .error404 {
    font-size: 14rem;
  }
}

.aspect-ratio-1x1 {
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
}

.aspect-ratio-4x3 {
  aspect-ratio: 4 / 3;
  width: 100%;
  position: relative;
}

.aspect-ratio-16x9 {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
}

/* PAGINATION
-------------------------------------------------- */
.pagination {
  --bs-pagination-color: #333;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #003b77;
  --bs-pagination-active-border-color: #003b77;
}

/* USER ACCOUNT
-------------------------------------------------- */
@media (min-width: 768px) {
  .sidebar .offcanvas-lg {
    position: sticky;
    top: 48px;
  }

  .navbar-search {
    display: block;
  }
}

.sidebar .nav-link {
  font-size: .875rem;
}

.sidebar .nav-link.active {
  font-weight: 500;
  color: #e64c16 !important;
}

.sidebar-heading {
  font-size: .75rem;
}

/* 3th LEVEL SUBMENU (BOOTSTRAP 5.x)
-------------------------------------------------- */
.dropdown-submenu,
.dropdown-item {
  position: relative;
}

.dropdown-submenu>a.dropdown-toggle::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  align-self: center;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

.dropdown-submenu>.dropdown-menu-end {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 0.1rem;
}

.dropdown-submenu>a.dropdown-toggle.dropdown-toggle-start::after {
  transform: rotate(90deg);
  right: unset;
  left: 0;
}

/* BUTTON UP
-------------------------------------------------- */
#btn-back-to-top {
  position: fixed;
  bottom: 7px;
  right: 7px;
  display: none;
}

/* CSS3 EFFECTS
-------------------------------------------------- */
.fade-effect {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.fade-effect:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.7;
}

/* ===================== ROOT ===================== */
:root {
  --orange: #F5A623;
  --orange-dark: #E09510;
  --dark: #1a1a1a;
  --dark2: #111111;
  --dark3: #222222;
  --gray-bg: #F4F4F4;
  --text-muted-light: #888;
  --white: #fff;

  /* Layout */
  --page-max: 1920px;
  --content-max: 1680px;
  --section-pad: 60px 0;

  --rk-black: #050606;
  --rk-dark: #0b0f10;
  --rk-dark-2: #101719;
  --rk-graphite: #151d20;
  --rk-orange: #f5a623;
  --rk-orange-2: #ffb733;
  --rk-light: #f6f6f4;
  --rk-muted: #687176;
  --rk-border: #e1e1df;
  --rk-shadow: 0 18px 45px rgba(0, 0, 0, .13);
}

/* ===================== RESET / BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #d4d4d4;
  overflow-x: hidden;
  margin-left: auto;
  margin-right: auto;
}

img[src=""],
img:not([src]) {
  display: none;
}

/* ===================== PAGE-WIDTH WRAPPER ===================== */
.content-inner {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ===================== MAIN CAROUSEL (legacy) ===================== */
#mainCarousel .carousel {
  margin-bottom: 4rem;
}

#mainCarousel .carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

#mainCarousel .carousel-item {
  height: 32rem;
}

#mainCarousel .carousel-bg-filter {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.additional-carousel-indicator {
  opacity: .5;
  transition: opacity 0.3s;
}

.additional-carousel-indicator:hover,
.additional-carousel-indicator.active {
  opacity: 1;
}

/* ===================== JUMBOTRON ===================== */
.jumbotron-bg-filter {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ===================== UTILITY ===================== */
.text-darkblue { color: #003b77; }
.text-orange   { color: var(--rk-orange) !important; }
.bg-darkblue   { background-color: #003b77; }
.bg-orange     { background: var(--rk-orange) !important; }
.bg-rk-dark    { background: var(--rk-dark) !important; }
.bg-rk-light   { background: var(--rk-light) !important; }

.divider-orange {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 12px;
}

.aspect-ratio-1x1  { aspect-ratio: 1 / 1;   width: 100%; position: relative; }
.aspect-ratio-4x3  { aspect-ratio: 4 / 3;   width: 100%; position: relative; }
.aspect-ratio-16x9 { aspect-ratio: 16 / 9;  width: 100%; position: relative; }

.error404 { font-size: 5rem; }
@media (min-width: 390px) { .error404 { font-size: 7rem; } }
@media (min-width: 576px) { .error404 { font-size: 10rem; } }
@media (min-width: 768px) { .error404 { font-size: 14rem; } }

/* ===================== BOOTSTRAP OVERRIDES ===================== */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #003b77;
  --bs-btn-border-color: #003b77;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #003b77;
  --bs-btn-active-border-color: #003b77;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #F5A623;
  --bs-btn-border-color: #F5A623;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d88909;
  --bs-btn-hover-border-color: #d88909;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #F5A623;
  --bs-btn-active-border-color: #d88909;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #003b77;
}

.pagination {
  --bs-pagination-color: #333;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #003b77;
  --bs-pagination-active-border-color: #003b77;
}

/* ===================== BUTTONS ===================== */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-orange:hover { background: var(--orange-dark); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: #fff; color: #fff; }

.btn-contact {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-contact:hover { background: var(--orange-dark); color: #fff; }

.btn-orange-sm {
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.btn-orange-sm:hover { background: var(--orange-dark); color: #fff; }

.btn-telegram {
  background: var(--orange);
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: center;
  transition: background 0.2s;
}
.btn-telegram:hover { background: var(--orange-dark); color: #fff; }


.btn-viber {

  color: #7360F2;

}
.btn-viber,
.btn-call {
  background: transparent;
  color: var(--orange);
  border: 2px solid #F5A623;
  border-radius: 4px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: center;
  transition: background 0.2s;
  flex: 1;
}

.btn-viber:hover,
.btn-call:hover {
  background: #F5A623;
  color: #222;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-btns-row {
  display: flex;
  gap: 10px;
}

.btn-rk-orange {
  background: linear-gradient(180deg, var(--rk-orange-2), var(--rk-orange));
  color: #111;
  border: 0;
  font-weight: 800;
  padding: 17px 32px;
  border-radius: 4px;
}
.btn-rk-orange:hover { background: #ffc24c; color: #111; }

.btn-rk-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 4px;
}
.btn-rk-outline:hover { border-color: var(--rk-orange); color: var(--rk-orange); }

.btn-rk-outline-orange {
  color: #fff;
  border: 1px solid var(--rk-orange);
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 4px;
}
.btn-rk-outline-orange:hover { background: #ffc24c; color: #000; }

/* ===================== SECTION COMMON ===================== */
.section-label {
  color: var(--rk-orange);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}

.section-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fff;
}

.section-title-dark {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  color: #000;
  text-transform: uppercase;
}

.link-orange {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-orange:hover { color: var(--orange-dark); }

section.section-pad { padding: 88px 0; }

/* ===================== HERO ===================== */
.hero-section {
  background: var(--dark2);
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 62%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111 30%, rgba(17, 17, 17, 0.3) 65%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  padding: 72px 32px 0 70px;
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
  max-width: 520px;
}

.hero-content h1 span { color: var(--orange); display: block; }
.hero-content p { color: #ccc; font-size: 15px; margin-top: 18px; max-width: 380px; line-height: 1.6; }
.hero-btns { display: flex; gap: 12px; margin-top: 28px; }

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.hero-badge i { color: var(--orange); font-size: 22px; flex-shrink: 0; }

/* ── SERVICE HERO ── */
.hero-service {
 /* min-height: 740px;*/
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  background: #080a0b;
  overflow: hidden;
}

.hero-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, .98) 0%, rgba(5, 6, 6, .84) 34%, rgba(5, 6, 6, .34) 65%, rgba(5, 6, 6, .42) 100%),
    url(../images/pages/line-2.webp) center/cover no-repeat;
  filter: saturate(.85) contrast(1.05);
  transform: scale(1.01);
}

.hero-service::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, #080a0b, rgba(8, 10, 11, 0));
}

.breadcrumbs { color: #b9b9b9; font-size: 14px; margin-bottom: 34px; }

.hero-title {
  font-size: clamp(38px, 5.1vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  max-width: 760px;
}

.hero-desc {
  max-width: 620px;
  color: #d7d7d7;
  font-size: 20px;
  line-height: 1.65;
  margin: 28px 0 34px;
}

.hero-badges { margin-top: 58px; }

.hero-badge {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
}
.hero-badge i { color: var(--rk-orange); font-size: 31px; margin-right: 12px; }

/* ===================== ACCEPT ===================== */
.accept-section { background: #fff; padding: var(--section-pad); }

.accept-img-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  position: relative;
  overflow: hidden;
}


.accept-card {
  background: #fefefe;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 18px 14px 14px;
  flex: 1;
}
.accept-card i    { color: var(--orange); font-size: 20px; margin-bottom: 8px; }
.accept-card h4   { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; color: #111; }
.accept-card p    { font-size: 12px; color: #666; line-height: 1.4; }

/* На сторінці "Все обладнання" короткий опис товару обрізаємо до 3 рядків з "..." в кінці,
   аби картки товарів залишались однакової висоти незалежно від довжини опису. */
.accept-card .small,
.accept-card .small p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===================== PROCESS ===================== */
.process-section { background: var(--dark2); padding: var(--section-pad); }
.process-section .section-title { color: #fff; }

.process-step { padding: 20px 4px 0; position: relative; }
.step-num { font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; font-family: Arial, sans-serif; }
.step-arrow { position: absolute; top: 24px; right: -4px; color: var(--orange); font-size: 18px; }
.process-step h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.process-step p  { font-size: 12px; color: #888; line-height: 1.5; }

/* ===================== STATS ===================== */
.stat-item { text-align: center; padding: 20px 15px; border-right: 1px solid #e5e5e5; }
.stat-item:last-child { border-right: none; }
.stat-icon  { color: #d89a36; margin-bottom: 15px; }
.stat-number { font-size: 48px; font-weight: 700; line-height: 1; color: #111; margin-bottom: 12px; }
.stat-text   { font-size: 18px; line-height: 1.5; color: #333; }

.stats-mini { background: #111; color: white; padding: 48px 0; }
.stat-icon i { font-size: 34px; color: var(--orange); margin-bottom: 12px; display: inline-block; }
.stat-number-mini { font-size: 26px; font-weight: 800; margin-bottom: 6px; }

/* ===================== ABOUT ===================== */
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon { color: var(--orange); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.about-feature h5 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.about-feature p  { font-size: 13px; color: #666; line-height: 1.4; }

.about-desc    { font-size: 14px; color: #555; line-height: 1.6; margin-top: 16px; margin-bottom: 24px; }
.process-desc  { font-size: 14px; color: #c9c9c9; line-height: 1.6; margin-top: 16px; margin-bottom: 24px; }

/* ===================== CTA ===================== */
.cta-section { background: #080a0b; color: #fff; padding: 72px 0; }
.cta-label   { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.cta-title   { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.cta-desc    { font-size: 13px; color: #aaa; line-height: 1.5; }

.cta-cable-placeholder {
  border-radius: 8px;
  width: 100%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 40px;
}

/* ===================== PRICE TABLE ===================== */
.prices-section { background: #fff; padding: var(--section-pad); }

.price-note {
  background: #F8F9FA;
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  font-size: 14px;
  color: #444;
  margin-bottom: 50px;
}

.price-table-wrapper { background: #fff; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05); overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Roboto', sans-serif;
  min-width: 600px;
  font-size: 15px;
  margin-bottom: 0;
}

.price-table th,
.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

.price-table th,
.price-table thead th {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid var(--orange);
}

.price-table td:last-child { text-align: right; font-weight: 900; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }

/* Смугасті рядки */
.price-table tbody tr:nth-child(even) td { background-color: #f8fafc; }
.price-table tbody tr:hover td { background-color: #f1f5f9; transition: 0.2s; }

.price-value { font-weight: 700; color: var(--orange); font-size: 16px; letter-spacing: 0.3px; }
.price-value small { font-weight: 400; font-size: 12px; color: #777; }

.contract-price {
  font-weight: 600;
  color: #2c7da0;
  background: #eef7fc;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 13px;
}

.category-badge {
  background: #f0f0f0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  color: #333;
}

.highlight-row { background-color: #fef4e6; }

/* services-price-table */
.services-price-table {
  font-size: 15px;
  margin-bottom: 0;
}
.services-price-table thead th {
  background: #111;
  color: #fff;
  padding: 16px;
  border-bottom: 3px solid orange;
}
.services-price-table td {
  padding: 13px 16px;
  border-color: #ececec;
}
.services-price-table td:last-child { text-align: right; font-weight: 900; white-space: nowrap; }
.services-price-table tbody tr:nth-child(even) td { background-color: #f8fafc; }
.services-price-table tbody tr:hover td { background-color: #f1f5f9; transition: 0.2s; }

/* ===================== FAQ ===================== */
.faq-section { background: #fff; padding: var(--section-pad); }
.faq-subhead { font-size: 16px; color: #555; max-width: 700px; margin-bottom: 48px; }
.faq-accordion { display: flex; flex-direction: column; gap: 12px; max-width: 1100px; margin: 0 auto; }

/* FAQ — загальний */
.accordion-item {
  border: 1px solid #efefef;
  background: #fff;
  margin-bottom: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}
.accordion-button {
  background: #fff;
  font-weight: 700;
  font-size: 17px;
  color: #111;
  padding: 20px 28px;
  border-radius: 20px !important;
  box-shadow: none;
  font-family: 'Roboto', sans-serif;
  gap: 12px;
}
.accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--orange);
  box-shadow: none;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 20px 20px 0 0 !important;
}
.accordion-button:focus { box-shadow: none; border-color: rgba(245, 166, 35, .2); }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F5A623' class='bi bi-plus-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-size: 1rem;
  transition: all 0.2s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F5A623' class='bi bi-dash-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-body {
  padding: 20px 28px 26px;
  font-size: 15px;
  line-height: 1.55;
  color: #2c2c2c;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
.accordion-body strong { color: var(--orange); }
.faq-extra { background: #F8F9FA; border-radius: 28px; margin-top: 56px; padding: 36px 32px; text-align: center; }

/* FAQ — cable-reception стиль */
.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 22px 26px;
  font-weight: 900;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.faq-item i { color: var(--rk-orange); font-size: 20px; }
.faq-item:hover { background: #f1f3f5; }

.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  user-select: none;
  gap: 16px;
}
.faq-question span { flex: 1; }
.faq-question .bi-plus-lg { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .bi-plus-lg { transform: rotate(45deg); }

.faq-answer {
  padding: 0 20px 20px 20px;
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
  padding: 64px 0 56px;
  color: white;
  position: relative;
}
.about-hero .section-title { color: white; }

.stats-grid-mini { background: rgba(255, 255, 255, 0.05); border-radius: 32px; padding: 28px 20px; margin-top: 32px; }
.stat-badge { text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.15); }
.stat-badge:last-child { border-right: none; }
.stat-badge .num { font-size: 32px; font-weight: 800; color: var(--orange); }

.story-section,
.mission-section,
.experience-section,
.equipment-section,
.services-goods-section { padding: var(--section-pad); background: #f3f3f3; }
.mission-section        { background: #ffffff; }
.services-goods-section { background: #fff; }

.service-list,
.goods-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; margin-top: 24px; }

.service-item,
.goods-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 18px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.service-item i,
.goods-item i { color: var(--orange); font-size: 22px; }
.service-item:hover,
.goods-item:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02); }

.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 32px; }

.equip-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.equip-card i  { font-size: 42px; color: var(--orange); margin-bottom: 16px; }
.equip-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }

.quote-orange {
  border-left: 4px solid var(--orange);
  background: #fff7ed;
  padding: 28px 32px;
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 0;
}

.img-placeholder-about {
  background: #eaeef3;
  border-radius: 32px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 48px;
}

/* ===================== SERVICE CARDS ===================== */
.service-card {
  border: 1px solid var(--rk-border);
  box-shadow: var(--rk-shadow);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  background: #fff;
  transition: .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(0, 0, 0, .16); }
.service-card-img { height: 205px; background: #111; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 26px 24px 28px; }
.service-icon { color: var(--rk-orange); font-size: 28px; line-height: 1; margin-bottom: 16px; }
.service-card h3 { font-family: Inter, sans-serif; font-weight: 900; font-size: 16px; text-transform: uppercase; margin-bottom: 12px; }
.service-card p  { color: #555; line-height: 1.55; font-size: 14px; margin: 0; }

/* ===================== PRICE PANEL ===================== */
.price-panel {
  background: #fff;
  border: 1px solid var(--rk-border);
  border-radius: 5px;
  box-shadow: var(--rk-shadow);
  padding: 34px;
  height: 100%;
}

.factor-item { display: flex; gap: 16px; margin-bottom: 28px; }
.factor-icon,
.round-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--rk-orange);
  color: var(--rk-orange);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.factor-item h4 { font-family: Inter, sans-serif; font-size: 16px; font-weight: 900; margin-bottom: 7px; }
.factor-item p  { color: #555; line-height: 1.5; margin: 0; font-size: 14px; }

.price-cta { background: linear-gradient(180deg, #111719, #060707); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.price-cta p { color: #c8c8c8; line-height: 1.65; }

/* ===================== PROCESS CARD ===================== */
.process-card { color: #fff; position: relative; height: 100%; }
.process-img  { height: 190px; overflow: hidden; border-radius: 4px; margin-bottom: 22px; background: #111; }
.process-img img { width: 100%; height: 100%; object-fit: cover; }
.process-num  { font-family: Oswald, sans-serif; color: var(--rk-orange); font-size: 50px; line-height: 1; font-weight: 700; margin-bottom: 10px; }
.process-card h3 { font-family: Inter, sans-serif; font-size: 19px; font-weight: 900; margin-bottom: 10px; }
.process-card p  { color: #aaa; line-height: 1.55; margin: 0; }
.process-arrow { position: absolute; right: -25px; top: 86px; color: var(--rk-orange); font-size: 34px; z-index: 1; }

/* ===================== BENEFIT CARD ===================== */
.benefit-card { text-align: center; height: 100%; padding: 10px 22px; border-right: 1px solid #ddd; }
.benefit-card:last-child { border-right: 0; }
.benefit-card .round-icon { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 20px; font-size: 24px; }
.benefit-card h3 { font-family: Inter, sans-serif; font-size: 17px; font-weight: 900; margin-bottom: 10px; }
.benefit-card p  { font-size: 14px; color: #666; line-height: 1.55; margin: 0; }

/* ===================== EQUIPMENT GALLERY ===================== */
.equipment-gallery img { height: 230px; width: 100%; object-fit: cover; border-radius: 4px; box-shadow: var(--rk-shadow); }
.cta-img { height: 180px; width: 100%; object-fit: cover; border-radius: 3px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.padding-hero    { margin-top: 75px !important; }
.categories-hero { margin-top: 75px !important; }

.nav-link { color: #ffffff; }
.navbar-toggler { background-color: #dee2e6 !important; border: #ffffff !important; }
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show { color: #fbbc55; }
.navbar-nav .nav-link:hover { color: #F5A623; }

/* ===================== FOOTER ===================== */
.footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-desc      { font-size: 12px; color: #aaa; line-height: 1.5; max-width: 180px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 13px;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-contact-item i { color: var(--orange); font-size: 13px; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding: 14px 0; margin-top: 28px; }
.footer-bottom p,
.footer-bottom a { font-size: 11px; color: #555; text-decoration: none; }
.footer-bottom a:hover { color: #888; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { color: #666; transition: color 0.2s; }
.footer-social a:hover { color: var(--orange); }
.footer-social-custom a { font-size: 1.2rem !important; }
.footer-social-custom a svg { width: 1.2em !important; height: 1.2em !important; }

/* ===================== SIDEBAR / USER ACCOUNT ===================== */
@media (min-width: 768px) {
  .sidebar .offcanvas-lg { position: sticky; top: 48px; }
}
.sidebar .nav-link { font-size: .875rem; }
.sidebar .nav-link.active { font-weight: 500; color: #e64c16 !important; }
.sidebar-heading { font-size: .75rem; }

/* ===================== 3-LEVEL DROPDOWN ===================== */
.dropdown-submenu,
.dropdown-item { position: relative; }
.dropdown-submenu>a.dropdown-toggle::after { transform: rotate(-90deg); position: absolute; right: 3px; top: 0; bottom: 0; align-self: center; }
.dropdown-submenu>.dropdown-menu { top: 0; left: 100%; margin-left: .1rem; margin-right: .1rem; }
.dropdown-submenu>.dropdown-menu-end { left: auto; right: 100%; margin-left: 0; margin-right: .1rem; }
.dropdown-submenu>a.dropdown-toggle.dropdown-toggle-start::after { transform: rotate(90deg); right: unset; left: 0; }

/* ===================== BACK-TO-TOP ===================== */
#btn-back-to-top { position: fixed; bottom: 7px; right: 7px; display: none; }

/* ==========================================================
   EQUIPMENT PAGES — обладнання (спільні стилі)
   ========================================================== */

/* ── Навігація між позиціями обладнання ── */
.equip-nav {
  background: #111;
  border-bottom: 1px solid #222;
  padding: 12px 0;
}
.equip-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.equip-nav-inner::-webkit-scrollbar { display: none; }
.equip-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-decoration: none;
  border: 1px solid transparent;
  transition: .2s;
}
.equip-nav-link i { color: var(--rk-orange); font-size: 13px; }
.equip-nav-link:hover { color: #fff; border-color: #333; }
.equip-nav-link.active {
  color: var(--rk-orange);
  border-color: rgba(245, 166, 35, .45);
  background: rgba(245, 166, 35, .07);
}
.equip-nav-sep { color: #333; font-size: 16px; flex-shrink: 0; }

/* ── Жовтий банер ── */
.banner-cta { background: #e4e4e4; padding: 18px 0; }
.banner-cta .banner-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}
.banner-check-icon {
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Галерея ──
   Ліва колонка з галереєю розтягується на повну висоту правої.
   Використовуємо клас .equip-gallery-row на конкретному рядку Bootstrap
   щоб НЕ зачіпати інші .row.g-0 на сайті (process-section тощо).
   В HTML: <div class="row g-0 equip-gallery-row">
── */
.equip-gallery-row > [class*="col-"]:has(.equip-gallery) {
  display: flex;
  flex-direction: column;
}

.equip-gallery {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.gallery-main {
  position: relative;
  flex: 1;                  /* займає весь залишок між верхом і стрічкою */
  min-height: 320px;        /* мінімум щоб не схлопнутись */
  background: #000;
  overflow: hidden;
}

.gallery-main-img {
  position: absolute;       /* вписується в .gallery-main без власної висоти */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, .55);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.gallery-arrow:hover { background: var(--rk-orange); color: #111; }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.gallery-strip-wrap { background: #0d0d0d; padding: 10px; overflow: hidden; }
.gallery-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-thumb {
  flex: 0 0 80px;
  height: 56px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, opacity .2s;
  opacity: .55;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: .85; }
.gallery-thumb.active { border-color: var(--rk-orange); opacity: 1; }

/* ── Info panel (права колонка) ── */
.equip-info {
  padding: 32px 36px 36px;
}

.equip-info-model {
  display: inline-block;
  background: rgba(245, 166, 35, .15);
  color: var(--rk-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 166, 35, .3);
}

.equip-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.equip-info-desc { font-size: 13px; color: #999; line-height: 1.65; margin-bottom: 20px; }

.equip-features { list-style: none; padding: 0; margin: 0 0 22px; }
.equip-features li {
  font-size: 13px;
  color: #ccc;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.equip-features li:last-child { border-bottom: none; }
.equip-features li i { color: var(--rk-orange); font-size: 14px; flex-shrink: 0; margin-top: 2px; }

.equip-specs-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rk-orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.equip-info-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 24px;
}

/* ── spec-table — темна версія (всередині .equip-info) ── */
.equip-info .spec-table { border-collapse: collapse; }
.equip-info .spec-table tr { border-bottom: none; }
.equip-info .spec-table td { padding: 9px 12px; color: #aaa; }
.equip-info .spec-table td:first-child { color: #777; }
.equip-info .spec-table td:last-child  { color: #000000; font-weight: 700; text-align: right; }
/* смуги — темна версія (подвійна специфічність щоб перебити .spec-table нижче) */
.equip-info .spec-table tbody tr:nth-child(odd),
.equip-info .spec-table tr:nth-child(odd)  { background: rgba(255, 255, 255, .05) !important; }
.equip-info .spec-table tbody tr:nth-child(even),
.equip-info .spec-table tr:nth-child(even) { background: transparent !important; }

/* ── spec-table — світла версія (секція .bg-light тощо) ── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: none; }
.spec-table td { padding: 9px 12px; font-size: 13px; color: #333; line-height: 1.5; }
.spec-table td:first-child { color: #666; width: 65%; }
.spec-table td:last-child  { font-weight: 700; color: #111; text-align: right; }
/* смуги — світла версія */
.spec-table tr:nth-child(odd)  { background: #f8f8f6; }
.spec-table tr:nth-child(even) { background: #ffffff; }

/* ── CTA форма ── */
.cta-form-section { background: #ffffff; padding: 72px 0; }
.cta-form-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.15;
}
.cta-form-section h2 span { color: var(--rk-orange); display: block; }
.cta-form-section p { color: #000; font-size: 15px; line-height: 1.7; margin-top: 14px; }
.cta-note { font-size: 12px; color: #666; text-align: center; margin-top: 8px; }

.cta-input {
  background: #f3f3f3;
  border: 1px solid #333;
  color: #000;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 4px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}

/* ── Як ми працюємо ── */
.how-step-icon {
  width: 68px;
  height: 68px;
  background: #525252;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
  font-size: 26px;
  color: var(--rk-orange);
}
.how-step-num {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 22px;
  height: 22px;
  background: var(--rk-orange);
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-title { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 6px; letter-spacing: .04em; }
.how-step-desc  { font-size: 12px; color: #dddddd; line-height: 1.5; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1399.98px) {
  .hero-title { font-size: 56px; }
  .service-card-img { height: 180px; }
  .benefit-card { border-right: 0; }
}

@media (max-width: 991.98px) {
  .hero-service   { min-height: 680px; }
  .hero-badges    { margin-top: 38px; }
  .process-arrow  { display: none; }
  .navbar .btn    { margin-top: 12px; }
  .gallery-main   { min-height: 280px; }
  .equip-info     { padding: 24px; }
  .equip-info-title { font-size: 18px; }
}

@media (max-width: 991px) {
  .hero-content h1 { font-size: 36px; }
  .hero-bg-img     { width: 100%; opacity: 0.4; }
  .container-xxl   { padding-left: 0; padding-right: 0; }
}

@media (min-width: 992px) {
  .container-xxl { max-width: 1400px !important; }
}

@media (max-width: 767px) {
  :root { --section-pad: 48px 0; }
  .hero-content { padding: 48px 16px 0; }
  .hero-content h1 { font-size: 30px; max-width: 100%; }
  .hero-content p  { max-width: 100%; }
  .hero-btns       { flex-wrap: wrap; }
  .cta-title       { font-size: 24px; }
  .cta-btns-row    { flex-direction: column; }
  .btn-viber {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #7360F2;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-viber,
  .btn-call {
    background: transparent;
    color: var(--orange);
    border: 2px solid #F5A623;
    border-radius: 4px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-content: center;
    transition: background 0.2s;
    flex: 1;
  }
  
  .stat-item       { border-right: none; border-bottom: 1px solid #e5e5e5; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number     { font-size: 36px; }
  .stat-text       { font-size: 16px; }
  .accept .row.mx-auto.justify-content-center>.col { flex: 0 0 50%; max-width: 50%; }
  .process-section .col-lg-3 { flex: 0 0 50%; max-width: 50%; }
  .step-arrow      { display: none; }
}

@media (max-width: 575.98px) {
  section.section-pad { padding: 62px 0; }
  .hero-title   { font-size: 42px; }
  .hero-desc    { font-size: 16px; }
  .btn-rk-orange,
  .btn-rk-outline { width: 100%; }
  .price-panel  { padding: 24px; }
  .gallery-thumb { flex: 0 0 64px; height: 46px; }
  .equip-info-btns { flex-direction: column; }
  .equip-info-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .accept .row.mx-auto.justify-content-center>.col { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 640px) {
  .price-table th,
  .price-table td { padding: 8px 10px; font-size: 14px; }
}


/* Раніше — фон на tr, Bootstrap міг перебити через успадкування */
.spec-table tr:nth-child(odd) { background: #f8f8f6; }

/* Тепер — фон напряму на td з !important */
.spec-table tr:nth-child(odd) td { background: #e6e6e2 !important }
    /* ===== Стилі для нових блоків (додано за документом з правками) ===== */

   .intro-info-card { background: #ebebf1; border-radius: 16px; padding: 32px; height: 100%; }
   .intro-info-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; color: #1a1a1a; }
   .intro-info-card p { color: #555; margin-bottom: 10px; }
   
   .why-choose-list { list-style: none; padding: 0; margin: 0; }
   .why-choose-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #ddd; font-weight: 500; color: #1a1a1a; }
   .why-choose-list li i { color: #F5A623; font-size: 1.1rem; }
   .why-choose-desc { color: #555; max-width: 900px; }
   
   .products-section { padding: 60px 0; background: #f7f7f8; }
   .product-item { background: #fff; border-radius: 12px; padding: 20px; height: 100%; display: flex; align-items: center; gap: 12px; font-weight: 500; color: #1a1a1a; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
   .product-item i { color: #F5A623; font-size: 1.3rem; flex-shrink: 0; }
   
   .mission-section { padding: 60px 0; }
   .mission-list { list-style: none; padding: 0; margin: 0; }
   .mission-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: #333; }
   .mission-list li i { color: #F5A623; margin-top: 3px; flex-shrink: 0; }

   .btn-outline-secondary {
    --bs-btn-color: var(--rk-orange) !important;
    --bs-btn-border-color: var(--rk-orange) !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--rk-orange) !important;
    --bs-btn-hover-border-color: #6c757d;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6c757d;
    --bs-btn-active-border-color: #6c757d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--rk-orange) !important;
}