:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --surface: rgba(243, 246, 247, 0.92);
  --surface-strong: #f8fafb;
  --surface-dark: #0f1827;
  --text: #0b1220;
  --muted: #556171;
  --line: rgba(11, 18, 32, 0.14);
  --brand: #10182a;
  --brand-2: #172233;
  --brand-3: #233342;
  --accent: #ffc600;
  --accent-strong: #ffd84c;
  --success: #79d0a7;
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
  --container: 1240px;
  --shadow-sm: 0 10px 24px rgba(10, 17, 29, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 17, 29, 0.18);
}

@font-face {
  font-family: "Fixel Text";
  src: url("../fonts/FixelText-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Text";
  src: url("../fonts/FixelText-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Text";
  src: url("../fonts/FixelText-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Text";
  src: url("../fonts/FixelText-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

body {
  font-family: "Fixel Text", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

main {
  overflow: clip;
}

.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-title,
.page-hero h1,
.hero-title,
.cta h2,
.footer-title,
.article h1,
.article h2,
.article h3,
.panel-title {
  font-family: "Fixel Display", "Segoe UI", sans-serif;
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.section-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(201, 164, 90, 0.14);
  color: #f4d490;
  border: 1px solid rgba(201, 164, 90, 0.28);
}

.page-hero {
  padding: 48px 0 20px;
}

.page-hero-box {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 24, 42, 0.92) 0%, rgba(30, 44, 63, 0.92) 55%, rgba(47, 65, 77, 0.88) 100%), linear-gradient(90deg, rgba(201, 164, 90, 0.2), rgba(201, 164, 90, 0));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.page-hero-box::after {
  content: "";
  position: absolute;
  inset: auto -6% -40% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 90, 0.28), rgba(201, 164, 90, 0));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .container {
    width: min(var(--container), 100% - 48px);
  }
}
@media (max-width: 992px) {
  .grid-2,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3,
  .two-col {
    grid-template-columns: 1fr;
  }
  .page-hero-box {
    padding: 28px;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 28px);
  }
  .section {
    padding: 42px 0;
  }
  .section-head,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: start;
  }
  .page-hero-box {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .container {
    width: calc(100% - 20px);
  }
  .section {
    padding: 34px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .page-hero {
    padding: 34px 0 12px;
  }
  .page-hero-box {
    padding: 18px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #101820;
  box-shadow: 0 16px 36px rgba(255, 198, 0, 0.24);
}

.btn-primary::after {
  content: "\f138";
  font-family: "bootstrap-icons";
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.24s ease;
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: inherit;
}

.site-header .btn-outline,
.site-footer .btn-outline,
.card .btn-outline,
.sidebar-block .btn-outline,
.article .btn-outline {
  background: rgba(16, 24, 42, 0.03);
  border-color: rgba(16, 24, 42, 0.12);
  color: var(--brand);
}

.btn-outline-accent {
  background: transparent;
  border-color: rgba(255, 198, 0, 0.6);
  color: var(--brand);
}

.btn-outline-accent:hover {
  border-color: rgba(255, 198, 0, 0.92);
  background: rgba(255, 198, 0, 0.08);
}

.field,
textarea,
.search-line input,
select,
input[type=text],
input[type=email] {
  width: 100%;
  border: 1px solid rgba(15, 24, 39, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  padding: 13px 14px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.search-line,
.form-grid,
.filter-bar {
  display: grid;
  gap: 12px;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
}

.filter-bar {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-top: 18px;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.popup.is-open {
  display: block;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.56);
}

.popup-dialog {
  position: relative;
  width: min(680px, 100vw - 32px);
  margin: 8vh auto 0;
  padding: 26px;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.popup-dialog h2 {
  margin: 0 0 10px;
  color: var(--brand);
}

.popup-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #fff;
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }
  .popup-dialog {
    margin-top: 6vh;
  }
}
@media (max-width: 767px) {
  .form-grid,
  .filter-bar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .field,
  textarea,
  .search-line input,
  select,
  input[type=text],
  input[type=email] {
    padding: 12px;
    font-size: 16px;
  }
  .popup-dialog {
    width: min(680px, 100vw - 20px);
    margin-top: 4vh;
    padding: 18px;
  }
}
.card,
.article,
.sidebar-block,
.adv {
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card {
  overflow: hidden;
}

.card > img,
.card-media-link > img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-media-link {
  display: block;
}

.card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title-link:hover,
.card-title-link:focus-visible {
  color: var(--brand-3);
}

.card-body,
.sidebar-block,
.adv,
.article {
  padding: 18px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.card-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  margin: 14px 0;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand);
}

.spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.98) 0%, rgba(233, 238, 241, 0.98) 100%);
}

.spec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 42, 0), rgba(16, 24, 42, 0.035));
  pointer-events: none;
}

.spec-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-card::before {
  display: none;
}

.product-card > img,
.product-card .card-media-link > img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border: 0;
  background: transparent;
}

.product-card .card-body {
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(11, 18, 32, 0.22);
}

.product-card .card-title {
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card .spec-grid {
  gap: 8px;
}

.product-card .spec-cell {
  background: rgba(16, 24, 42, 0.03);
  border-color: rgba(16, 24, 42, 0.12);
}

.product-card .spec-list {
  margin-top: 8px;
}

.product-card .btn {
  min-height: 44px;
  padding: 10px 18px;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.product-card-actions .btn {
  flex: 1 1 220px;
}

.product-card .btn-outline-accent {
  background: transparent;
  border-color: rgba(255, 198, 0, 0.56);
  color: var(--brand);
}

@media (max-width: 992px) {
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-card > img,
  .product-card .card-media-link > img {
    min-height: 230px;
    aspect-ratio: 16/10;
  }
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 0;
  background: rgba(16, 24, 42, 0.08);
  border: 1px solid rgba(16, 24, 42, 0.12);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill.is-live {
  background: rgba(121, 208, 167, 0.15);
  color: #205b44;
  border-color: rgba(121, 208, 167, 0.3);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spec-cell {
  padding: 10px 12px;
  border-radius: 0;
  background: rgba(11, 18, 32, 0.045);
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.spec-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spec-value {
  display: block;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.card-note {
  margin: 0;
  color: #223040;
  font-size: 0.94rem;
}

.spec-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.spec-list li {
  padding: 9px 11px;
  border-radius: 0;
  background: rgba(16, 24, 42, 0.04);
  border: 1px solid rgba(16, 24, 42, 0.08);
  color: #263444;
  font-size: 0.92rem;
}

.spec-list-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.adv {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 244, 247, 0.94));
}

.adv h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.article {
  padding: clamp(22px, 3vw, 36px);
}

.article h2,
.article h3 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

.article p {
  color: #233142;
}

@media (max-width: 992px) {
  .advantages,
  .spec-list-2col {
    grid-template-columns: 1fr 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .card-body,
  .sidebar-block,
  .adv,
  .article {
    padding: 16px;
  }
  .advantages,
  .spec-list-2col {
    grid-template-columns: 1fr;
  }
  .product-card-actions {
    flex-direction: column;
  }
  .card-topline,
  .spec-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 575px) {
  .card-body,
  .sidebar-block,
  .adv,
  .article {
    padding: 14px;
  }
  .card-title {
    font-size: 1rem;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .spec-cell,
  .spec-list li {
    padding: 10px;
  }
  .product-card .btn {
    width: 100%;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(245, 248, 250, 0.76);
  border-bottom: 1px solid rgba(15, 24, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 10px 14px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .header-inner {
    gap: 14px;
    min-height: 74px;
  }
  .logo img {
    height: 34px;
  }
  .main-nav {
    gap: 16px;
  }
  .main-nav a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 24, 39, 0.08);
  }
  .main-nav.is-open {
    display: flex;
  }
  .header-inner > .btn {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-inner {
    min-height: 68px;
  }
  .logo img {
    height: 30px;
  }
  .nav-toggle {
    padding: 9px 12px;
    font-size: 0.88rem;
  }
}
.site-footer {
  margin-top: 56px;
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(15, 24, 39, 0.98), rgb(11, 17, 28));
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
}

.footer-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 40px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .site-footer {
    margin-top: 40px;
    padding: 32px 0;
  }
  .footer-logo img {
    height: 34px;
  }
}
.page-home .hero {
  position: relative;
  padding: 96px 0 58px;
  isolation: isolate;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.page-home .hero-bg::before,
.page-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-home .hero-bg::before {
  background: linear-gradient(115deg, rgba(7, 13, 23, 0.11) 0%, rgba(12, 19, 30, 0.26) 42%, rgba(18, 27, 41, 0.06) 100%);
}

.page-home .hero-bg::after {
  background: linear-gradient(0deg, rgba(139, 106, 47, 0.12), rgba(139, 106, 47, 0.12));
}

.page-home .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.page-home .product-list {
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .hero-card,
.page-home .hero-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.page-home .hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(160deg, rgba(9, 15, 25, 0.9), rgba(17, 26, 40, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.page-home .hero-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.22), rgba(255, 198, 0, 0));
  filter: blur(100px);
}

.hero-title {
  margin: 18px 0 16px;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hero-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(232, 237, 240, 0.96), rgba(244, 247, 248, 0.92));
  border: 1px solid rgba(11, 18, 32, 0.12);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 14px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 24, 39, 0.1);
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: 1.16rem;
}

.cta {
  padding: 60px 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 164, 90, 0.28);
  background: linear-gradient(135deg, rgba(201, 164, 90, 0.22), rgba(255, 255, 255, 0.86) 42%, rgba(29, 43, 62, 0.12));
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-gallery {
  padding-top: 8px;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-gallery-item {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.home-gallery-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 200ms ease;
}

.home-gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}

.gallery-lightbox.is-open {
  display: block;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.88);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 14px;
  width: min(1320px, 100vw - 36px);
  height: min(90vh, 940px);
  margin: 4.5vh auto 0;
}

.gallery-lightbox-image-wrap {
  display: grid;
  gap: 10px;
}

.gallery-lightbox-image-wrap img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #0f1724;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 24, 39, 0.22);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand);
  font-size: 1.12rem;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  right: 0;
  top: -58px;
}

.gallery-lightbox-counter {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

@media (max-width: 1280px) {
  .page-home .hero {
    padding: 72px 0 44px;
  }
  .hero-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
  }
}
@media (max-width: 992px) {
  .page-home .hero-grid,
  .metrics {
    grid-template-columns: 1fr;
  }
  .page-home .hero {
    padding: 56px 0 34px;
  }
  .page-home .hero-panel {
    padding: 20px;
  }
  .metrics {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .page-home .hero {
    padding-top: 48px;
  }
  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-lightbox-dialog {
    grid-template-columns: 1fr;
    width: min(100vw, 100vw - 18px);
    height: auto;
    margin-top: 3vh;
    gap: 10px;
  }
  .gallery-lightbox-image-wrap img {
    max-height: 70vh;
  }
  .gallery-lightbox-close {
    right: 0;
    top: -52px;
  }
  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .gallery-lightbox-prev {
    left: 8px;
  }
  .gallery-lightbox-next {
    right: 8px;
  }
  .cta-box,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
  .hero-text {
    max-width: none;
  }
}
@media (max-width: 575px) {
  .page-home .hero {
    padding: 40px 0 24px;
  }
  .page-home .hero-card,
  .page-home .hero-panel {
    padding: 18px;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 18px;
  }
  .home-gallery-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .home-gallery-item img {
    height: 210px;
  }
  .gallery-lightbox-nav,
  .gallery-lightbox-close {
    width: 40px;
    height: 40px;
  }
  .page-home .section-advantages {
    background: #172233;
  }
}
.section-testimonials-preview {
  padding-top: 8px;
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(245, 247, 248, 0.98), rgba(235, 240, 242, 0.98));
}

.testimonial-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-text {
  margin: 0;
  color: #1c2a39;
  font-size: 0.98rem;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-meta strong {
  color: var(--brand);
  font-size: 0.98rem;
}

.page-home .section-advantages {
  background: linear-gradient(135deg, #111b2b 0%, #1a273a 55%, #223246 100%);
}

.page-home .section-advantages .section-title {
  color: #fff;
}

.page-home .section-advantages .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .section-advantages .adv {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.page-home .section-advantages .adv::after {
  content: "";
  position: absolute;
  inset: auto -28px -28px auto;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.14), rgba(255, 198, 0, 0));
}

.page-home .section-advantages .adv-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 198, 0, 0.34);
  background: linear-gradient(180deg, rgba(255, 198, 0, 0.18), rgba(255, 198, 0, 0.06));
  color: #ffc600;
  font-size: 1.35rem;
}

.page-home .section-advantages .adv h3,
.page-home .section-advantages .adv p {
  color: #fff;
}

.section-head-centered {
  justify-content: center;
  text-align: center;
}

.customers-slider-swiper {
  border: 1px solid rgba(15, 24, 39, 0.12);
  background: linear-gradient(180deg, rgba(247, 249, 250, 0.98), rgba(238, 242, 244, 0.98));
  padding: 18px;
}

.customers-slide {
  height: auto;
}

.customer-card {
  display: grid;
  gap: 10px;
  margin: 0;
}

.customer-card-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 24, 39, 0.12);
  background: #fff;
  aspect-ratio: 1/1;
}

.customer-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-card-caption {
  margin: 0;
  color: var(--brand);
  font-size: 0.9rem;
  line-height: 1.35;
  min-height: 2.4em;
}

.customers-slider-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.customers-slider-controls .customers-prev,
.customers-slider-controls .customers-next {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid rgba(15, 24, 39, 0.16);
  background: #fff;
  color: var(--brand);
}

.customers-slider-controls .customers-prev::after,
.customers-slider-controls .customers-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.customers-slider-controls .customers-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.customers-slider-controls .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 0;
  background: rgba(11, 18, 32, 0.24);
  opacity: 1;
}

.customers-slider-controls .swiper-pagination-bullet-active {
  background: #ffc600;
}

.section-certificates {
  padding-top: 10px;
}

.certificate-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(14, 24, 38, 0.12);
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.98), rgba(241, 244, 246, 0.96));
}

.certificate-card-media {
  display: block;
  min-height: 100%;
  padding: 20px;
  background: linear-gradient(160deg, rgba(19, 29, 43, 0.9), rgba(27, 41, 59, 0.92)), radial-gradient(circle at top left, rgba(255, 198, 0, 0.2), transparent 40%);
}

.certificate-card-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.certificate-card-body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.certificate-card-body .card-title,
.certificate-card-body .card-note {
  margin: 0;
}

.how-it-works__tab-wrapper {
  border: 1px solid rgba(15, 24, 39, 0.1);
  background: linear-gradient(180deg, rgba(247, 249, 250, 0.98), rgba(238, 242, 244, 0.98));
}

.how-it-works__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(15, 24, 39, 0.1);
}

.how-tab {
  min-height: 78px;
  padding: 20px 18px;
  border: 0;
  border-right: 1px solid rgba(15, 24, 39, 0.1);
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.how-tab:last-child {
  border-right: 0;
}

.how-tab.is-active {
  background: linear-gradient(135deg, rgba(255, 198, 0, 0.22), rgba(255, 198, 0, 0.08));
  color: #111b2b;
}

.how-it-works__tab-content {
  padding: 0;
}

.how-pane {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
}

.how-pane[hidden] {
  display: none;
}

.how-pane-media {
  min-height: 100%;
  background: #132030;
}

.how-pane-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.how-pane-body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.how-pane-body h3,
.how-pane-body p,
.how-pane-list {
  margin: 0;
}

.how-pane-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
}

@media (max-width: 992px) {
  .how-it-works__nav,
  .how-pane,
  .certificate-card {
    grid-template-columns: 1fr;
  }
  .how-it-works__nav {
    border-bottom: 0;
  }
  .how-tab {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 24, 39, 0.1);
  }
  .how-tab:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .certificate-card-media img,
  .how-pane-media img {
    min-height: 280px;
  }
  .customers-slider-swiper {
    padding: 14px;
  }
  .customer-card-caption {
    min-height: 0;
    font-size: 0.86rem;
  }
}
@media (max-width: 575px) {
  .certificate-card-media,
  .how-pane-body,
  .certificate-card-body {
    padding: 18px;
  }
  .page-home .section-advantages .adv {
    padding: 18px;
  }
  .how-tab {
    padding: 16px;
    font-size: 0.92rem;
  }
  .certificate-card-media img,
  .how-pane-media img {
    min-height: 220px;
  }
  .customers-slider-controls {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .customers-slider-controls .customers-prev,
  .customers-slider-controls .customers-next {
    display: none;
  }
}
.page-catalog .page-hero-box,
.page-product .page-hero-box,
.page-about .page-hero-box,
.page-blog .page-hero-box,
.page-post .page-hero-box,
.page-contacts .page-hero-box {
  background: linear-gradient(135deg, rgba(15, 24, 39, 0.95) 0%, rgba(29, 43, 62, 0.92) 55%, rgba(47, 65, 77, 0.85) 100%), url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.page-catalog .card > img {
  aspect-ratio: 16/10;
}

.page-catalog .container.grid.grid-2 {
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-catalog .product-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-catalog .product-card::before {
  display: none;
}

.page-catalog .product-card > img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border: 0;
}

.page-catalog .product-card .card-body {
  border: 1px solid rgba(11, 18, 32, 0.22);
  background: #eef2f4;
}

@media (max-width: 992px) {
  .page-catalog .product-card > img {
    min-height: 230px;
    aspect-ratio: 16/10;
  }
}
@media (max-width: 767px) {
  .page-catalog .container.grid.grid-2 {
    gap: 18px;
  }
}
@media (max-width: 575px) {
  .page-catalog .product-card .card-body {
    padding: 14px;
  }
  .page-catalog .product-card > img {
    min-height: 190px;
  }
}
.page-product .card .badge {
  background: rgba(201, 164, 90, 0.16);
  color: var(--brand);
  border-color: rgba(201, 164, 90, 0.32);
}

.page-product .article {
  margin-top: 4px;
}

.page-product .section-product-title {
  padding: 20px 0;
}

.page-product .product-title-block {
  position: relative;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(11, 18, 32, 0.22);
  border-bottom: 1px solid rgba(11, 18, 32, 0.22);
}

.page-product .product-title-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 120px;
  height: 1px;
  background: var(--accent);
}

.page-product .product-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-product .product-title-block h1 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-product .product-title-block p {
  margin: 10px 0 0;
  max-width: 72ch;
  color: #364455;
}

.page-product .section-breadcrumbs {
  padding-top: 40px;
  padding-bottom: 2px;
}

.page-product .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-product .breadcrumbs a {
  color: var(--brand);
}

.page-product .section-product-gallery {
  padding-top: 8px;
}

.page-product .product-gallery-full {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  width: 100%;
}

.page-product .product-gallery-main,
.page-product .product-gallery-thumbs {
  height: 78vh;
}

.page-product .product-gallery-main {
  width: 100%;
}

.page-product .product-gallery-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
}

.page-product .product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-product .product-gallery-thumbs .swiper-slide {
  height: calc((78vh - 42px) / 4);
  opacity: 0.55;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: #f4f6f8;
  cursor: pointer;
}

.page-product .product-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: rgba(11, 18, 32, 0.42);
}

.page-product .product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-product .product-title {
  margin-top: 12px;
  font-size: 1.65rem;
}

.page-product .product-price-note {
  margin: 10px 0 0;
  color: var(--brand);
  font-size: 1.05rem;
}

.page-product .product-price-note strong {
  font-size: 1.2em;
}

.page-product .product-actions {
  margin-top: 8px;
}

.page-product .popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.page-product .popup.is-open {
  display: block;
}

.page-product .popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.56);
}

.page-product .popup-dialog {
  position: relative;
  width: min(680px, 100vw - 32px);
  margin: 8vh auto 0;
  padding: 26px;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.page-product .popup-dialog h2 {
  margin: 0 0 10px;
  color: var(--brand);
}

.page-product .popup-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.page-product .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #fff;
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.page-product .section-product-description .spec-list-2col,
.page-product .section-product-kit .spec-list-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 992px) {
  .page-product .section-breadcrumbs {
    padding-top: 28px;
  }
  .page-product .product-title-block h1 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
  }
  .page-product .product-gallery-full {
    grid-template-columns: 1fr;
  }
  .page-product .product-gallery-main {
    height: 62vh;
  }
  .page-product .product-gallery-thumbs {
    order: 2;
    height: 112px;
  }
  .page-product .product-gallery-thumbs .swiper-wrapper {
    flex-direction: row;
  }
  .page-product .product-gallery-thumbs .swiper-slide {
    width: 120px;
    height: 100px;
  }
  .page-product .popup-dialog {
    margin-top: 6vh;
  }
}
@media (max-width: 767px) {
  .page-product .section-product-description .spec-list-2col,
  .page-product .section-product-kit .spec-list-2col {
    grid-template-columns: 1fr;
  }
  .page-product .section-breadcrumbs {
    padding-top: 22px;
  }
  .page-product .product-gallery-main {
    height: 46vh;
  }
  .page-product .product-gallery-thumbs {
    height: 96px;
  }
}
@media (max-width: 575px) {
  .page-product .breadcrumbs {
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.84rem;
  }
  .page-product .section-product-title {
    padding: 14px 0;
  }
  .page-product .product-title-block {
    padding: 10px 0 12px;
  }
  .page-product .product-gallery-full {
    gap: 10px;
  }
  .page-product .product-gallery-main {
    height: 38vh;
  }
  .page-product .product-gallery-thumbs .swiper-slide {
    width: 88px;
    height: 78px;
  }
  .page-product .popup-dialog {
    width: min(680px, 100vw - 20px);
    margin-top: 4vh;
    padding: 18px;
  }
}
.page-about .sidebar-block,
.page-blog .sidebar-block,
.page-post .sidebar-block,
.page-contacts .sidebar-block,
.page-testimonials .sidebar-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 246, 249, 0.98));
}

.about-lead {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.about-stats {
  display: grid;
  align-items: start;
}

.about-flow .card,
.testimonials-page-grid .card {
  height: 100%;
}

.post-article-full {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-latest-news {
  padding-top: 6px;
}

.about-principles {
  margin-top: 6px;
}

.page-testimonials .page-hero-box,
.page-about .page-hero-box {
  background: linear-gradient(135deg, rgba(15, 24, 39, 0.95) 0%, rgba(24, 36, 53, 0.92) 55%, rgba(35, 51, 66, 0.88) 100%), linear-gradient(90deg, rgba(255, 198, 0, 0.12), rgba(255, 198, 0, 0));
}

@media (max-width: 992px) {
  .about-lead {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .post-article-full {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .section-latest-news {
    padding-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
