@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	background: #F6F7FA;
	scroll-behavior: auto;
	color: #2F4C6E;
}

*{
	box-sizing: border-box;
}

a{
	text-decoration: none;
  transition: 0.3s;
}

.wrap{
	width: 1200px;
	margin: 0 auto;
	/*background: #ccc;*/
}

.burger {
    display: none;
}

.lang{
  background: #fff;
  padding: 14px;
  border-radius: 25px;
  color: #63777E;
}

.flex-between{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-center{
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-arround{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.blue-btn:hover{
  opacity: 0.8;
}

hr{
  border: none;
  height: 1px;
  background-color: #D9D9D9;
  margin: 10px 0;
}


.top-nav{
	margin-top: 30px;
}

.logo img{
	width: 100%;
}

.menu{
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
}

.menu > li > a{
	padding: 5px 10px;
	color: #63777E;
  font-size: 14px;
}

.menu > li > a:hover{
  background: #F4F4F4;
  border-radius: 5px;
}

nav{
	background: #fff;
	padding: 14px;
	border-radius: 25px;
}

nav.fixed {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation: navShow .4s ease;
    z-index: 1000;
    width: max-content;
    padding: 10px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.top-nav.fixed nav {
    background: rgba(255,255,255,.7);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,.3);

    box-shadow:
        0 8px 32px rgba(0,0,0,.08);

    transition: .3s;
}

@keyframes navShow {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.phone{
  margin-left: 15px;
}

.phone a{
	color: #63777E;
	font-weight: bold;
	position: relative;
	padding: 5px 10px;
}

.phone a:hover{
  opacity: 0.8;
}

.phone::before{
	content: "";
	background: url(../img/top-phone-icon.svg) no-repeat;
	width: 11px;
	height: 11px;
	display: inline-block;
	background-size: cover;
}

.hero {
  background: #f4f5f7;
  min-height: 577px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 100px;
  /*gap: 60px;*/
  /*min-height: 700px;*/
}

.hero-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content > h2{
  margin: 0;
}

.hero-content > span{
	font-weight: bold;
	font-size: 64px;
	color: #ababab;
}

.hero-content > span i{
	color: #004699;
}

.hero-subtitle{
	color: #2F4C6E;
	font-size: 24px;
	font-weight: normal;
	margin: 0;
}

.hero-description{
	font-size: 18px;
}

.hero-visual {
  position: relative;
  height: 100%;
}

.hero-visual img{
	position: absolute;
	top: 0px;
	right: -60px;
}

.hero-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #0d4ea6;
  right: 0;
  top: 50px;
  opacity: 0;
  transform: translateY(300px) scale(.7);
  animation: circleShow 1.2s ease-out forwards;
}

.hero-btn{
	color: #fff;
	background: #004699;
	padding: 15px 40px;
	border-radius: 25px;
	font-weight: bold;
	display: inline-block;
	width: fit-content;
}

.hero-circle {
  position: absolute;
/*  width: 500px;
  height: 500px;*/
  border-radius: 50%;
  background: #5b83be;
  top: -8%;
  right: -100px;
  transform: translateY(-50%);
}

.hero-image {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: block;
}

@keyframes circleShow {
    0% {
        opacity: 0;
        transform: translateY(350px) scale(.6);
    }

    70% {
        opacity: 1;
        transform: translateY(-20px) scale(1.03);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.hero-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 95px 0 45px 0;
  position: relative;
  z-index: 10;
}

.advantage {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.about {
  background: #fff;
  padding: 100px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
  align-items: center;
}

.label {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2f4f7f;
  text-transform: uppercase;
}

.label::before{
  content: '';
  width: 8px;
  height: 8px;
  background: #004699;
  border-radius: 25px;
  display: inline-block;
  margin-right: 5px;
}

.about-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

.about-text {
  /*max-width: 550px;*/
  font-size: 16px;
  color: #64748b;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  min-height: 170px;
  padding: 20px;
  background: #F4F4F4;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

}

.stat-number {
  margin-bottom: 16px;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #0050b3;
}

.stat-text {
  font-size: 16px;
  line-height: 1.3;
  color: #666;
}

.brands {
    padding: 100px 0;
}

.brands-head {
    margin-bottom: 60px;
}

.brands-label {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: #6c7a89;
}

.brands-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
}

.brands-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
}

.brands-description {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.4;
  color: #4d6486;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

/* Верхний ряд */

.tokiro,
.hyundai,
.amsoil {
    grid-column: span 2;
}

/* Нижний ряд */

.united {
    grid-column: span 3;
}

.cworks {
    grid-column: span 3;
}

/* Карточка */

.brand-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: .3s ease;
}

.brand-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

/* Изображение */

.brand-image {
    height: 250px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;

    overflow: hidden;
}

.brand-image img {
    width: 80%;
    height: 85%;
    object-fit: contain;

    transition: .4s ease;
}

.brand-card:hover .brand-image img {
    transform: scale(1.05);
}

/* Контент */

.brand-info {
    padding: 30px;
}

.brand-category {
    display: block;

    margin-bottom: 12px;

    color: #6a6a6a;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.brand-info h3 {
    margin: 0 0 14px;

    color: #1d2f6f;

    font-size: 22px;
    font-weight: 800;
}

.brand-info p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;
}

/* Кнопка */

.brand-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin-top: 24px;

    padding: 14px 30px;

    border-radius: 12px;

    background: #3250b8;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: .3s;
}

.brand-btn:hover {
    background: #2644a9;
}

/* Широкие карточки */

.wide-card {
    flex-direction: row;
    align-items: stretch;
}

.wide-card .brand-image {
    width: 45%;
    min-height: 320px;
    height: auto;
}

.wide-card .brand-info {
    width: 55%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* UNITED */

.blue-bg {
    /*background: #003a9c;*/
}

.united .brand-image img {
    width: 100%;
    /*height: 80%;*/
}

/* TOKIRO */

.tokiro .brand-image img {
    width: 95%;
}

/* HYUNDAI */

.hyundai .brand-image img {
    width: 70%;
}

/* AMSOIL */

.amsoil .brand-image img {
    width: 110%;
}

/* CWORKS */

/*.cworks .brand-image img {
    width: 120%;
}*/

/* Адаптив */

@media (max-width: 992px) {

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .tokiro,
    .hyundai,
    .amsoil,
    .united,
    .cworks {
        grid-column: span 1;
    }

    .wide-card {
        flex-direction: column;
    }

    .wide-card .brand-image,
    .wide-card .brand-info {
        width: 100%;
    }

    .brand-image {
        height: 220px;
    }

    .wide-card .brand-image {
        min-height: 220px;
    }
}


.advantages {
  padding: 100px 0;
  background: #fff;
}

.advantages-label {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6f7c8a;
}

.advantages-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

.advantages-grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 32px;
}

.advantage-card {
  position: relative;
  /*min-height: 300px;*/
  padding: 30px;
  background: #f5f6f8;
  border-right: 1px solid #e6e8ec;
  border-bottom: 1px solid #e6e8ec;
}

.advantage-card:nth-child(3n) {
  border-right: none;
}

.advantage-card:nth-last-child(-n + 3) {
  border-bottom: none;
}

.advantage-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 16px;
  color: #8f8f8f;
}

.advantages-icon {
  /*margin-bottom: 48px;*/
}

.advantage-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.advantage-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #314f7c;
}

.advantage-card p {
  max-width: 320px;
  font-size: 15px;
  color: #56657a;
}


.directions {
  padding: 100px 0;
}

.directions-label {
  display: block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: #61717d;
}

.directions-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  max-width: 750px;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.direction-card {
  padding: 40px;
  min-height: 240px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  transition: .3s;
}

.direction-card:hover {
  transform: translateY(-5px);
}

.direction-number {
  display: block;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  color: #004aad;
}

.direction-card h3 {
  min-height: 24px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #304f7d;
}

.direction-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background: #e5e5e5;
}

.direction-card p {
  color: #8a8a8a;
}

.geography {
  padding-bottom: 100px;
}

.geography-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.geography-map {
  overflow: hidden;
  border-radius: 28px;
  padding: 20px;
  background: #004aad;
}

.text-office::before{
  content: '';
  width: 10px;
  height: 10px;
  background: #CD1E1E;
  border-radius: 25px;
  display: inline-block;
  margin-right: 5px;
}

.text-warehouse::before{
  content: '';
  width: 10px;
  height: 10px;
  background: #2FCFFF;
  border-radius: 25px;
  display: inline-block;
  margin-right: 5px;
}


.geography-map img {
  width: 100%;
  display: block;
}

.geography-map p{
  color: #fff;
}

.geography-label {
  display: block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: #61717d;
}

.geography-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

.geography-text {
  max-width: 500px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #61717d;
}

.geography-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 18px 36px;
  border-radius: 50px;
  background: #004aad;
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  padding: 18px 36px;
  border-radius: 50px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #304f7d;
  text-decoration: none;
}

.contacts {
  padding: 100px 0;
  background: #fff;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: stretch;
}

.contacts-label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #667684;
}

.contacts-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

.contacts-text {
  margin-bottom: 40px;
  max-width: 320px;
  color: #5f7084;
  line-height: 1.6;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #F6F7FA;
  border: 1px solid #e6e8ec;
  border-radius: 20px;
  text-decoration: none;
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid #e6e8ec;
}

.contact-icon img {
  width: 24px;
}

.contact-content {
  flex: 1;
}

.contact-content span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #a2aab5;
}

.contact-content strong {
  font-weight: 500;
  color: #4d6486;
}

.contact-arrow {
  font-size: 22px;
  color: #2f4f7f;
}

.partner-box {
  padding: 50px;
  background: #F6F7FA;
  border: 1px solid #e6e8ec;
  border-radius: 32px;
  text-align: center;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid #7b7b7b;
  border-radius: 999px;
  margin-bottom: 40px;
  font-size: 14px;
}

.partner-title {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

.partner-text {
  max-width: 620px;
  margin: 0 auto 40px;
  color: #5f7084;
  line-height: 1.6;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.partner-tag {
  padding: 10px 18px;
  border: 1px solid #9da8b3;
  border-radius: 999px;
  font-size: 12px;
  color: #5f7084;
}

.partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #004aad;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  padding: 15px 40px;
}



.footer {
  padding: 48px 0;
  border-top: 1px solid #d9d9d9;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  height: 40px;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-dev img {
  width: 24px;
  height: 24px;

  object-fit: contain;
}

.footer-dev span {
  font-size: 16px;
  color: #5f7084;
}

.footer-dev {
  transition: .3s;
}

.footer-dev:hover {
  opacity: .7;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #004aad;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  z-index: 1000;
  transition: .3s;
  border: none;
  cursor: pointer;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.scroll-top {
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.title-animation {
  opacity: 0;
  transform: translateY(60px);
  transition:
      opacity .8s ease,
      transform .8s ease;
}

.title-animation.show {
  opacity: 1;
  transform: translateY(0);
}

.quality-banner {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  margin-top: 50px;
  overflow: hidden;
  transition: transform .8s ease;
  background-image: url('../img/quality-banner.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-banner::before {
  content: '';

  position: absolute;
  inset: 0;

  background:
      linear-gradient(
          90deg,
          rgba(0, 0, 0, .7) 0%,
          rgba(0, 0, 0, .45) 35%,
          rgba(0, 0, 0, .1) 100%
      );
}

.quality-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 80px;
}

.quality-label {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.quality-title {
  max-width: 420px;
  color: #fff;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
}


.show-mob{
  display: none;
}

.instagram-section{
  padding: 50px 0 100px 0;
}

.factory-section{
  padding: 50px 0 0 0;
}

.instagram-title{
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

.instagram-section .content,
.factory-section .content{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.insta-item-large {
    grid-row: span 2;
}

.insta-item {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
    border-radius: 24px;
}

.insta-item video,
.insta-item img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
}

.insta-item:hover video,
.insta-item:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(255,255,255,.85);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    backdrop-filter: blur(10px);
}

/* Video hero */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.hero-nav .wrap {
  width: 100%;
  padding: 28px 48px 26px;
}

/*.hero-nav .logo img {
  width: 300px;
}
*/
.hero-nav nav {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.hero-nav .menu {
  gap: clamp(20px, 3vw, 62px);
  align-items: center;
}

.hero-nav .menu > li > a {
  padding: 6px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-nav .menu > li > a:hover {
  background: transparent;
  opacity: .72;
}

.header-langs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-nav .lang {
  background: transparent;
  padding: 0;
  color: rgba(255,255,255,.7);
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
}

.hero-nav .lang.active {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #101916;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 150px 0 72px;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: 0;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 18, 16, .58) 0%, rgba(6, 18, 16, .35) 42%, rgba(6, 18, 16, .72) 100%),
    linear-gradient(90deg, rgba(4, 13, 12, .5) 0%, rgba(4, 13, 12, .28) 45%, rgba(4, 13, 12, .18) 100%);
}

.hero .wrap {
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  z-index: 3;
}

.hero .container {
  display: block;
  margin-top: 0;
}

.hero-content {
  max-width: 1340px;
  gap: 28px;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 4.7vw, 92px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-title span {
  color: rgba(255,255,255,.52);
}

.hero-description {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 22px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  flex: 0 0 auto;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-btn {
  min-height: 92px;
  border-radius: 999px;
  padding: 0 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: auto;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.hero-btn-primary {
  background: #fff;
  color: #111;
}

.hero-btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn-ghost span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2f4c6e;
  font-size: 28px;
  line-height: 1;
}

.hero-product-card {
  width: min(600px, 34vw);
  min-height: 248px;
  border-radius: 30px;
  background: #fff;
  padding: 10px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: center;
  color: #111;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}

.hero-product-image {
  height: 228px;
  border-radius: 22px;
  overflow: hidden;
  background: #1c2426;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-image img {
  width: 118%;
  height: 118%;
  object-fit: contain;
  object-position: center;
  transform: translateY(12px);
}

.hero-product-info span {
  display: block;
  margin-bottom: 12px;
  color: #b6b6b6;
  font-size: 17px;
}

.hero-product-info h2 {
  margin: 0 0 36px;
  color: #111;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 500;
}

.hero-product-info p {
  margin: 0;
  color: #ababab;
  font-size: 17px;
  line-height: 1.25;
}

/* Inset video hero */
body {
  background: #f3f4f6;
}

.hero-nav {
  top: 12px;
  left: 12px;
  right: 12px;
  border-bottom: none;
}

.hero-nav .wrap {
  padding: 58px 56px 0;
  gap: 28px;
}

.hero-nav .logo img {
    width: 300px;

}

.hero-nav nav {
  padding: 0 26px;
  min-height: 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.hero-nav .menu {
  gap: clamp(16px, 1.8vw, 42px);
}

.hero-nav .menu > li > a {
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.hero-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-phone {
  color: #fff;
  font-size: 22px;
  /*font-weight: 800;*/
  white-space: nowrap;
}

.hero-phone::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: -3px;
  background: url(../img/top-phone-icon.svg) center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.hero-consult {
  min-height: 60px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1b2630;
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 24px);
  margin: 12px;
  border-radius: 14px;
  padding: 150px 0 44px;
  justify-content: flex-end;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(5, 12, 18, .58) 0%, rgba(5, 12, 18, .24) 44%, rgba(5, 12, 18, .68) 100%),
    linear-gradient(90deg, rgba(3, 10, 18, .78) 0%, rgba(3, 10, 18, .46) 43%, rgba(3, 10, 18, .18) 100%);
}

.hero .wrap {
  padding-left: 56px;
  padding-right: 56px;
}

.hero .container {
  margin-bottom: 34px;
}

.hero-content {
  max-width: 920px;
  gap: 18px;
}

.hero-kicker {
  color: rgba(255,255,255,.85);
  font-size: 26px;
  font-weight: 800;
}

.hero-title {
  max-width: 880px;
  font-size: clamp(58px, 6vw, 108px);
  line-height: .95;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 760px;
  color: #fff;
  font-size: clamp(24px, 1.85vw, 36px);
  line-height: 1.22;
  font-weight: 500;
}

.hero-description {
  max-width: 790px;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
}

.hero-bottom {
  min-height: 108px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.22);
  align-items: center;
}

.hero-actions {
  gap: 34px;
}

.hero-btn {
  min-height: 68px;
  padding: 0 58px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
}

.hero-btn-primary {
  color: #26313a;
}

.hero-btn-primary span,
.hero-btn-link span {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.hero-btn-link {
  padding: 0;
  min-height: 68px;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 18px;
  /*width: min(960px, 56vw);*/
  width: min(1110px, 56vw);
}

.hero-benefit {
  min-height: 68px;
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.hero-benefit-icon {
  /*width: 38px;*/
  height: 38px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: rgba(255,255,255,.15);*/
  background: #fff;
}

.hero-benefit-icon img {
  width: 40px;
  height: 40px;
  /*filter: brightness(0) invert(1);*/
}

.hero-benefit span {
  font-size: 13px;
  line-height: 1.25;
  /*font-weight: 700;*/
}

