@charset "UTF-8";
.about-texts {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.about-texts .about-p {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--navy);
  text-wrap: pretty;
}

.products-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  width: 100%;
}

/* product images */
.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-images img.wide {
  grid-column: 1/-1;
  width: 100%;
}
.product-images img {
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .product-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-images img.wide {
    grid-column: 1/-1;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
  }
  .product-images img {
    width: 100%;
    height: 100%;
  }
}
.product-models {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.product-models .product-models-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.product-models .product-models-wrap .product-models-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
.product-models .product-models-wrap .product-models-table th {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  padding: 14px 16px;
  border: 1px dashed rgba(40, 51, 74, 0.35);
  text-align: left;
  background: rgba(40, 51, 74, 0.03);
}
.product-models .product-models-wrap .product-models-table td {
  font-weight: 400;
  color: var(--navy);
  padding: 14px 16px;
  border: 1px dashed rgba(40, 51, 74, 0.35);
}
.product-models .product-models-wrap .product-models-table tr:hover td {
  background: rgba(18, 91, 255, 0.04);
}
.product-models .product-models-wrap .product-models-table .mname {
  font-weight: 700;
  color: var(--blue);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 700px) {
  .product-models .product-models-wrap {
    overflow-x: scroll;
  }
  .product-models .product-models-wrap .product-models-table {
    width: 700px;
    font-size: 12px;
  }
}
/* params */
.params-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.params-grid h3 {
  grid-column: 1/-1;
}

.param-card {
  background: #fff;
  padding: 2.5vw;
}

.param-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.param-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px dashed rgba(40, 51, 74, 0.35);
}

.param-row:first-of-type {
  border-top: 1px dashed rgba(40, 51, 74, 0.35);
}

.param-cell {
  padding: 11px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
}

.param-cell.lbl {
  font-weight: 600;
  border-right: 1px dashed rgba(40, 51, 74, 0.35);
  padding-right: 14px;
}

.param-cell.val {
  padding-left: 14px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1500px) {
  .params-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .param-card {
    padding: 24px;
  }
  .param-cell {
    font-size: 12px;
  }
  .params-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  z-index: 200;
  gap: 16px;
  border-bottom: 1px solid rgba(40, 51, 74, 0.09);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(40, 51, 74, 0.1);
}

.nav-logo {
  display: block;
  width: 185px;
  color: var(--navy);
}
.nav-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.035em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: background 0.25s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--navy);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .btn-nav span {
    display: none;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .btn-nav {
    padding: 8px 24px;
    height: 32px;
  }
  .btn-nav svg {
    display: none;
  }
  .nav-logo {
    display: block;
    width: auto;
    height: 32px;
  }
  .nav-logo svg {
    width: auto;
    height: 100%;
  }
}
/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #fff;
  padding: 96px 96px 60px;
  border-top: 1px solid rgba(40, 51, 74, 0.09);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1728px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 96px;
  margin-bottom: 64px;
}

.footer-logo-wrap {
  margin-bottom: 40px;
}

.footer-logo {
  width: 220px;
  color: var(--navy);
  display: block;
}

.footer-logo svg {
  width: 100%;
  height: auto;
}

.footer-address {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.025em;
  color: var(--navy);
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer-right .footer-tagline {
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.025em;
  color: var(--blue);
}
.footer-right .footer-phone {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.025em;
  color: var(--navy);
  text-align: right;
}

.footer-bottom {
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  border-top: 1px solid rgba(40, 51, 74, 0.12);
  padding-top: 40px;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.footer-pola-mark {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50%;
  max-width: 800px;
  height: auto;
  color: rgba(40, 51, 74, 0.06);
  pointer-events: none;
}

@media (max-width: 1280px) {
  footer {
    padding-left: 48px;
    padding-right: 48px;
  }
  .footer-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-right .footer-phone {
    text-align: left;
  }
}
@media (max-width: 960px) {
  footer {
    padding: 96px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-right {
    gap: 32px;
  }
  .footer-phone {
    text-align: left;
  }
  .footer-pola-mark {
    display: none;
  }
}
/* -- SECTION 1 ------------------- */
.section1 {
  padding: 10vw 5vw;
}

.section1-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10vw;
  align-items: start;
}

.section1-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (max-width: 1280px) {
  .section1-inner {
    grid-template-columns: 320px 1fr;
    gap: 5vw;
  }
}
@media (max-width: 1000px) {
  .section1 {
    padding: 15vw 7.5vw;
  }
  .section1-inner {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
  .section1-sidebar {
    position: relative;
    top: 0;
  }
}
/* -- SECTION 2 ------------------- */
.section2 {
  padding: 5vw 5vw;
  background: #fff;
}

.section2-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10%;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 1000px) {
  .section2 {
    padding: 15vw 7.5vw;
    background: #fff;
  }
  .section2-inner {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.callbox {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: #fff;
}
.callbox .call-box-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.025em;
  color: var(--navy);
  margin-bottom: 32px;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero.jpg") center/cover no-repeat;
  transform: scaleX(-1);
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(-1);
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%), linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10vw 5vw;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 700px;
  gap: 32px;
}

.hero-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  text-wrap: pretty;
}

.hero-sub {
  color: #fff;
}

.hero-gallery {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}
.hero-gallery img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 1000px) {
  .hero-content {
    width: 500px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-gallery {
    gap: 8px;
  }
  .hero-gallery img {
    max-width: 100px;
  }
}
@media (max-width: 600px) {
  .hero-bg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    inset: unset;
    aspect-ratio: 1/1;
  }
  .hero-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleX(-1);
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, transparent 75%);
  }
  .hero-content {
    width: 100%;
    padding: 60vw 7.5vw 15vw;
  }
  .hero-title {
    font-size: 12.5vw;
  }
  .hero-gallery {
    width: 100%;
    justify-content: space-between;
    gap: unset;
  }
  .hero-gallery img {
    width: 31%;
    max-width: unset;
  }
}
.real-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.real-grid .real-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray);
  cursor: pointer;
}
.real-grid .real-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.real-grid .real-item .real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}
.real-grid .real-item .real-label {
  position: absolute;
  bottom: 2.5vw;
  left: 2.5vw;
  right: 2.5vw;
  background: #fff;
  padding: 18px 22px 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.real-grid .real-item .real-label .real-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--navy);
}

@media (max-width: 1500px) {
  .real-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .real-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .real-grid {
    grid-template-columns: 1fr;
  }
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 8px;
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue);
}

h3 {
  font-size: 40px;
  font-weight: 300;
}

h4 {
  font-size: 32px;
  font-weight: 300;
}

p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 56px;
  margin-block-start: 0em !important;
  margin-block-end: 0em !important;
}

@media (max-width: 1000px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 32px;
  }
  p {
    font-size: 18px;
  }
}
/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(40, 51, 74, 0.09);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 32px;
  border-right: 1px solid rgba(40, 51, 74, 0.09);
}
.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(40, 51, 74, 0.13);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--blue);
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
}

@media (max-width: 1280px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-top: 1px solid rgba(40, 51, 74, 0.09);
  }
}
@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .stat-item {
    padding: 32px 7.5vw;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #28334A;
  --blue: #125BFF;
  --white: #ffffff;
  --gray: #C4C4C4;
  --off: #F8F9F9;
  --font: 'Barlow', sans-serif;
}

.color-blue {
  color: var(--blue);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: #fff;
  overflow-x: hidden;
  font-size: 18px;
}

/* ─── PRODUCTS ────────────────────────────────────────────── */
.bg--off {
  background: var(--off);
}

.products-inner {
  max-width: 1728px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 10%;
  align-items: start;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  width: 100%;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-cta:hover {
  background: var(--blue);
}