@font-face{
  font-family: "Exo 2";
  src:
    url("../fonts/exo2/Exo2-VariableFont_wght.woff2") format("woff2"),
    url("../fonts/exo2/Exo2-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Exo 2";
  src:
    url("../fonts/exo2/Exo2-Italic-VariableFont_wght.woff2") format("woff2"),
    url("../fonts/exo2/Exo2-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root{
  --bg:#fff;
  --panel:#0b0b10;
  --text:#0b0b10;
  --muted:rgba(242,242,244,.65);
  --muted2:rgba(242,242,244,.45);
  --chip:rgba(255,255,255,.08);
  --chipActive:rgba(170,120,255,.22);
  --chipBorder:rgba(255,255,255,.14);
  --accent:rgba(170,120,255,1);
  --font-main: "Exo 2";
}

*{box-sizing:border-box;
    transition: transform 0.3s ease;}

html {
    width: 100%;
    overflow-x: hidden;
}

html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg, #000);
  background-image: var(--site-bg-image);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 1440px auto;
    background-attachment: fixed;
}


a{color:inherit}
.container{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

section h2 {
  font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    color: #0f172a;
    text-transform: uppercase;
}

/* Header (black bar) */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  /*background: rgba(0,0,0,.38);*/
  /*backdrop-filter: blur(10px);*/
}
.header-inner{
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header-nav .menu{
  list-style:none;
  display:flex;
  gap:18px;
  padding:0;
  margin:0;
}
.header-nav .menu a{
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
}
.header-nav .menu a:hover{color:#fff}

.header-tools{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:11px;
}
/* ===== Gender switch ===== */

.tool-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Label */
.tool-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
}

/* Switch rail */
.tool-group-items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 32px);
  width: 64px;
  height: 24px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* Gradient border (Figma) */
.tool-group-items::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;

  background: linear-gradient(
    141.89deg,
    #FFFFFF 12.16%,
    #4F4F4F 34.24%,
    #FFFFFF 71.88%,
    #4F4F4F 92.31%
  );

  padding: 1px;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Active pill */
.tool-group-items::before {
  content: "";
  position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;

  background: linear-gradient(
    180deg,
    #6F3AFF 0%,
    #4F2EDB 100%
  );

  transition: transform 0.25s ease;
}

/* Move pill when W is active */
.tool-group-items:has(.chip.is-active:last-child)::before {
  transform: translateX(32px);
}

/* Chips */
.chip {
  position: relative;
  z-index: 1;

  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;

  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.chip.is-active {
  color: #fff;
}

/* Optional hover */
.chip:hover {
  color: #fff;
}

/* ========================= */



.tool-icons{display:flex; align-items:center; gap:10px;}
.icon-btn{
  width:26px;height:26px;border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;
}
.icon-dot{width:10px;height:10px;border-radius:50%;background:rgba(170,120,255,.9)}
.icon-bag{width:12px;height:12px;border-radius:3px;border:2px solid rgba(255,255,255,.85); position:relative}
.icon-bag:after{content:""; position:absolute; left:1px; right:1px; top:-4px; height:6px; border:2px solid rgba(255,255,255,.85); border-bottom:none; border-radius:6px 6px 0 0}

/* Hero */
.hero{
  position:relative;
  min-height:640px;
  padding:0;
}
.hero-media{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center 20%;
  filter:saturate(1.05) contrast(1.05);
} 
.hero-media:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,.90) 92%, rgba(0,0,0,1) 100%);
}
.hero-content{
  position:relative;
  min-height:640px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 0 56px 0;
}
.hero-title{
  margin:0 0 10px 0;
  font-size:20px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.hero-subtitle{
  margin:0;
  color:var(--muted2);
  font-size:12px;
  max-width:520px;
}

/* Catalog grid */
.catalog{
  padding:126px 0 120px;
      position: relative;
} 
.catalog:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
}
h1.catalog-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 16px;
}
.catalog-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    margin: 0;
    margin-bottom: 56px;
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.card{
    position: relative;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
}
.card-media{
  position:relative;
  aspect-ratio: 4 / 5;
}
.card-media img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transform: translateZ(0);
}
.card-placeholder{
  width:100%; height:100%;
  background: linear-gradient(135deg, rgba(170,120,255,.18), rgba(255,255,255,.05));
}
.card-grad{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.00) 40%, rgba(0,0,0,.55) 100%);
}
.card-meta{
  position:absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 12px;
  text-align:center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari */
}
.card-title{
    font-size: 20px;
    font-weight: 600;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
}
.card-price{
margin-top: 22px;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
}

.card:hover{border-color:rgba(170,120,255,.35); transform: translateY(-1px); transition: .2s ease;}
.card:hover .card-grad{background: linear-gradient(180deg, rgba(0,0,0,.00) 35%, rgba(0,0,0,.65) 100%);}

/* Footer */
.site-footer{
  padding: 0;
}

.footer-top{
    padding: 42px 0;
}

.footer-top__grid{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo__img{
max-width: 202px;
  height: auto;
  display: block;
}

.footer-top__right{
  text-align: right;
      font-size: 12px;
}

.footer-legal{
    line-height: 1.55;
    margin: 0 0 35px;
}

.footer-payments{
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-payments__img{
    max-height: 38px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.footer-bottom{
background: rgba(0, 0, 0, .6);
}

.footer-bottom__grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 42px 0;
}
.footer-bottom__left {
    max-width: 570px;
}

/* меню */
.footer-nav{ display:block; }
.footer-nav__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
    gap: 12px 40px;
}

.footer-nav__list a{
  color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.footer-nav__list a::before {
  content: "[";
  margin-right: 4px;
}

.footer-nav__list a::after {
  content: "]";
  margin-left: 4px;
}

.footer-nav__list a:hover{ color: var(--accent); }

/* соцсети (иконки задашь позже через CSS) */
.footer-social{
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.soc{
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: background-color .2s 
ease, border-color .2s 
ease, transform .15s 
ease;
}

.soc--instagram {
  background-image: url("../img/Instagram.svg");
}

.soc--telegram {
  background-image: url("../img/Telegram.svg");
}

.soc--tiktok {
  background-image: url("../img/TikTok.svg");
}

.soc--vk {
  background-image: url("../img/VK.svg");
}

.soc--x {
  background-image: url("../img/Support.svg"); /* если X = support */
}
.soc:hover {
  transform: translateY(-1px);
}



.gender-switch{
  display:flex;
  align-items:center;
  gap:14px;
}

.gender-switch__label{
  font-size: 18px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color:#fff;
}

.gender-switch__pill{
  display:flex;
  align-items:center;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.55);
  overflow:hidden;
  background: rgba(0,0,0,.35);
}

.gender-switch__tab{
  width: 64px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size: 20px;
  letter-spacing:.08em;
  color: rgba(255,255,255,.40);
}

.gender-switch__tab.is-active{
  background: var(--accent);
  color:#fff;
}

.gender-switch__reset{
  font-size: 12px;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-decoration:none;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
}

.gender-switch__reset.is-active{
  opacity:.35;
  pointer-events:none;
}

.text-page{
  padding: 40px 0 70px;
  max-width: 792px;             
  margin: 0 auto;    
    margin-top: 60px;
    margin-bottom: 180px;  
  border-radius: 20px;          
  border: 2px solid transparent;
  padding: 64px 102px;           
  background: linear-gradient(
    153.63deg,
    rgba(111, 58, 255, 0.4) 0%,
    rgba(10, 4, 28, 0.4) 29.7%,
    rgba(10, 4, 28, 0.4) 80.67%,
    rgba(111, 58, 255, 0.4) 102.31%
  );
  border-image-source: linear-gradient(
    95.1deg,
    #6F3AFF 3.69%,
    #231250 32.71%,
    #614E94 52.83%,
    #231250 76.58%,
    #6F3AFF 90.59%
  );
  border-image-slice: 1;
  box-shadow: 0 0 40px rgba(111,58,255,.12);
}

.text-page__title{
  margin: 0;
  color: var(--text, #fff);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.text-page__content{

}

/* адаптив под мобилку */
@media (max-width: 900px){
  .text-page__card{
    padding: 28px 18px;
    max-width: 100%;
  }
}



/* адаптив */
@media (max-width: 980px){
  .footer-top__grid{ grid-template-columns: 1fr; }
  .footer-top__right{ text-align: left; }
  .footer-payments{ justify-content: flex-start; }
  .footer-bottom__grid{ grid-template-columns: 1fr; }
  .footer-social{ justify-content: flex-start; }
}


/* адаптив */
@media (max-width: 1100px){
  .footer-grid{ grid-template-columns: 1fr; gap: 22px; }
  .footer-legal{ text-align: left; margin-left: 0; }
  .footer-payments{ justify-content: flex-start; }
  .footer-social{ justify-content: flex-start; }
  .footer-nav{ grid-template-columns: repeat(2, max-content); }
}
@media (max-width: 980px){
  .catalog-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr}
  .footer-social{justify-content:flex-start}
}
@media (max-width: 560px){
  .header-inner{height:auto; padding:10px 12px; flex-wrap:wrap}
  .catalog-grid{grid-template-columns:1fr}
  .container{width:calc(100% - 24px)}
  .hero{min-height:560px}
  .hero-content{min-height:560px; padding-bottom:38px}
}

/* =========================================================
   DOMTAT HEADER (copied layout, adapted for this theme)
   ========================================================= */

/* header */
#header {
  position: relative;
  color: #f7f7f7;
  /* form */
  /* slider top */
}
#header .header-main-page {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #333;
}
#header .header-inner-main-page {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
}
#header .header-inner {
  background-color: var(--main-template-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#header .header-top {
  padding-top: 20px;
  margin-bottom: 20px;
}
#header .header-logo img {
  max-width: 200px;
  max-height: 100px;
}
#header .header-address {
  display: flex;
  color: #f7f7f7;
}
#header .header-address__icon {
  font-size: 1.1em;
  margin-right: 10px;
}
#header .header-address__icon:before {
  content: "\f041";
  font-family: FontAwesome;
  font-size: 1em;
}
#header .header-address__text {
  font-size: 0.9em;
  line-height: 1.3;
}
#header .header-phone {
  position: relative;
  text-align: right;
  margin-bottom: 3px;
}
#header .header-phone__main-phone {
  display: inline-block;
  font-size: 1.2em;
  text-align: right;
  margin-bottom: 3px;
  transition: all 1s;
}
#header .header-phone__main-phone:after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 0.7em;
  color: #ccc;
  vertical-align: middle;
}
#header .header-phone__main-phone:before {
  content: "\f095";
  font-family: FontAwesome;
  font-size: 1em;
}
#header .header-phone__main-phone:hover .header-phone__popup {
  display: block;
}
#header .header-phone__link {
  text-decoration: none;
  color: #f7f7f7;
}
#header .header-phone__popup {
  position: absolute;
  z-index: 3;
  top: -4px;
  right: 0;
  display: none;
  border: 2px solid #dadada;
  min-width: 240px;
  min-height: 50px;
  padding: 20px 20px 10px 20px;
  background: #fff;
  color: #333;
  white-space: nowrap;
  text-align: center;
  border-radius: 4px;
}
#header .header-phone__popup-item {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#header .header-phone__popup-item:last-child {
  border-bottom: none;
}
#header .header-phone__popup-link-phone {
  color: #333;
  text-decoration: none;
}
#header .header-phone__popup-link-email {
  font-size: 0.8em;
  color: #333;
}
#header .header-phone__popup-link-email:hover {
  text-decoration: none;
}
#header .header-phone__messenger {
  margin-bottom: -10px;
}
#header .header-phone__messenger ul {
  display: flex;
  justify-content: center;
}
#header .header-phone__messenger ul li {
  margin-right: 15px;
}
#header .header-phone__messenger ul li:last-child {
  margin-right: 0;
}
#header .header-phone__messenger .fa {
  padding: 10px;
  font-size: 1.4em;
  color: #e4e3e3;
  border-radius: 3px;
}
#header .header-phone__messenger .fa:hover {
  opacity: 0.8;
}
#header .header-phone__messenger .fa-whatsapp {
  color: #1eaa53;
  font-size: 1.5em;
  margin-top: -2px;
}
#header .header-phone__messenger .fa-telegram {
  color: #1979a1;
}
#header .header-phone__messenger .fa-vk {
  color: #537baa;
}
#header .header-btn-callback {
  text-align: right;
}
#header .header-btn-callback__link {
  margin-right: 11px;
  font-size: 0.9em;
  text-decoration: none;
  border-bottom: 1px dotted #f7f7f7;
  color: #f7f7f7;
}
#header .header-btn-callback__link:hover {
  border: none;
}
#header .header-btn-zayvka__link {
  padding: 15px;
}
#header .menu-line-main-page {
  border-bottom: 1px solid #f7f7f7;
}
#header .menu-line {
  border-top: 1px solid #f7f7f7;
}
#header .header-form {
  position: relative;
  width: 100%;
}
#header .header-form__inner {
  position: absolute;
  right: 30px;
  margin-top: calc(50vh - 258px);
}
#header .header-slider {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}
#header .header-slider__img {
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: relative;
}
#header .header-slider__img .big,
#header .header-slider__img .small {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
#header .header-slider__img .small {
  display: none;
}
@media (max-width: 991px) {
  #header .header-slider__img .big {
    display: none;
  }
  #header .header-slider__img .small {
    display: block;
  }
}
#header .header-slider__shadow {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#header .header-slider__inner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 660px;
}
#header .header-slider__offer {
  position: absolute;
  z-index: 3;
  top: 39%;
  left: 0;
  padding: 30px 30px 60px 30px;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
#header .header-slider__title {
  font-size: 2.8em;
  margin: 0 0 10px 0;
}
#header .header-slider__desc {
  line-height: 1.4;
  margin: 0 0 20px 0;
  font-size: 1.1em;
  white-space: pre-line;
}
#header .header-slider__price {
  margin: 0 auto;
  font-size: 2.2em;
}
#header .header-slider__btn {
  display: flex;
  margin-top: 30px;
}

/* header fix */
#header .header-fix {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .25s ease;
}
#header .header-fix.is-visible {
  transform: translateY(0);
}
#header .head_slide,
#header .m_head_slide {
  background-color: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
}

/* slick fixes */
#header .header-slider .slick-list,
#header .header-slider .slick-track {
  height: 100vh;
}
#header .header-slider .slick-slide {
  height: 100vh;
}



/* inner pages header */
#header.header-inner-page .header-main-page {
  height: auto;
  min-height: 0;
  background-color: var(--main-template-color);
}
#header.header-inner-page .header-inner-main-page {
  position: relative;
}
#header.header-inner-page .header-top-menu.menu-line-main-page {
  margin-bottom: 0;
}
#header.header-inner-page .header-slider {
  display: none !important;
}

#header .header-main-page.no-slider {
  height: auto;
  min-height: 0;
  background-color: var(--main-template-color);
}
#header .header-main-page.no-slider .header-inner-main-page {
  position: relative;
}

@media (max-width: 991px) {
  #header.header-inner-page .header-top {
    padding-top: 15px;
    margin-bottom: 15px;
  }
  #header.header-inner-page .header-address,
  #header.header-inner-page .header-links,
  #header.header-inner-page .header-phone,
  #header.header-inner-page .header-btn-callback {
    text-align: center;
    justify-content: center;
    margin-top: 10px;
  }
}


.site-main-front-page {
	display: block;
}

/* HEADER */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all .25s ease;
}

.site-header__inner {
	padding: 20px 0 0;
	background: transparent;
	transition: all .25s ease;
}

.site-header.is-scrolled .site-header__inner {
	padding: 10px 0 0;
background: rgba(20, 20, 20, 0.4);
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.site-header__top {
	display: flex;
  align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: #fff;
}

.site-header.is-scrolled .site-header__nav {
  margin-top: 4px;
  border-bottom: none;
}

.site-header__logo {
	flex: 0 0 auto;
}

.site-header__logo-img {
	max-width: 220px;
	height: auto;
	display: block;
}

.site-header.is-scrolled .site-header__logo-img {
    height: 64px;
    width: 64px;
}

.site-header__logo-text {
	display: inline-block;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}

.site-header__logo-link {
	text-decoration: none;
}

.site-header__address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #fff;
	max-width: 320px;
	font-size: 15px;
	line-height: 1.35;
}

.site-header__socials-list {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__socials-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 28px;
	line-height: 1;
}

.site-header__socials-image {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.site-header__contacts {
	margin-left: auto;
	text-align: right;
	color: #fff;
}

.site-header__phone-link {
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	font-weight: 600;
}

.site-header__callback {
	margin-top: 6px;
}

.site-header__callback-link {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255,255,255,.7);
	font-size: 15px;
}

.krep-callback-popup {
	width: min(440px, calc(100vw - 32px));
	padding: 0;
	border-radius: 18px;
	background: #fff;
	color: #0f172a;
	overflow: hidden;
	box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
}

.krep-callback-popup .carousel__button.is-close {
	top: 14px;
	right: 14px;
	color: #0f172a;
}

.krep-callback-popup__head {
	padding: 30px 32px 22px;
	background: linear-gradient(135deg, #0f172a 0%, #0f6b4e 100%);
	color: #fff;
}

.krep-callback-popup__eyebrow {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.72);
}

.krep-callback-popup__title {
	margin: 0;
	font-size: 30px;
	line-height: 1.08;
	font-weight: 800;
}

.krep-callback-popup__text {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255,255,255,.82);
}

.krep-callback-popup__form {
	padding: 26px 32px 32px;
}

.krep-callback-popup__notice {
	padding: 14px 16px;
	border-radius: 10px;
	background: #f8fafc;
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
}

.krep-callback-popup .wpcf7-form {
	margin: 0;
}

.krep-callback-popup .wpcf7-form p {
	margin: 0 0 14px;
}

.krep-callback-popup .wpcf7-form label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 700;
	color: #334155;
}

.krep-callback-popup .wpcf7-form-control-wrap {
	display: block;
}

.krep-callback-popup input[type="text"],
.krep-callback-popup input[type="tel"],
.krep-callback-popup input[type="email"] {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #dbe3ea;
	border-radius: 10px;
	background: #fff;
	color: #0f172a;
	font-size: 16px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.krep-callback-popup input[type="text"]:focus,
.krep-callback-popup input[type="tel"]:focus,
.krep-callback-popup input[type="email"]:focus {
	border-color: #0284c7;
	box-shadow: 0 0 0 3px rgba(2, 132, 199, .12);
}

.krep-callback-popup input[type="submit"],
.krep-callback-popup .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0 20px;
	border: 0;
	border-radius: 10px;
	background: #0284c7;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.krep-callback-popup input[type="submit"]:hover,
.krep-callback-popup .wpcf7-submit:hover {
	background: #0369a1;
	transform: translateY(-1px);
}

.krep-callback-popup .wpcf7-spinner {
	margin: 10px auto 0;
	display: block;
}

.krep-callback-popup .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
}

.krep-callback-popup .wpcf7-response-output {
	margin: 14px 0 0 !important;
	padding: 10px 12px !important;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.4;
}

.site-header__nav {
	margin-top: 16px;
	border-bottom: 1px solid rgba(255,255,255,.28);
}

.header-menu {
	display: flex;
	align-items: center;
	gap: 44px;
	margin: 0;
	padding: 0;
	list-style: none;
  justify-content: space-around;
}

.header-menu > li {
	position: relative;
}

.header-menu > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 56px;
  padding: 0 15px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	border-radius: 8px 8px 0 0;
	transition: background .2s ease, color .2s ease;
}

.site-header.is-scrolled .header-menu > li > a {
    min-height: 46px;
}

.header-menu > li:hover > a,
.header-menu > li > a:hover {
	background: rgba(0, 0, 0, .3);
}

.header-menu > li.menu-item-has-children > a {
	gap: 8px;
	cursor: default;
}

.header-menu > li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-top: -3px;
	border: 2px solid currentColor;
	border-left: 0;
	border-top: 0;
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.header-menu > li.menu-item-has-children:hover > a::after {
	margin-top: 3px;
	transform: rotate(225deg);
}

.header-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	padding: 10px;
	margin: 0;
	list-style: none;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 0 0 14px 14px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, .22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
	z-index: 100;
	pointer-events: none;
}

.header-menu li:hover > .sub-menu,
.header-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.header-menu .sub-menu li a {
	display: block;
	padding: 12px 14px;
	border-radius: 8px;
	color: #0f172a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-transform: none;
	transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.header-menu .sub-menu li a:hover {
	padding-left: 18px;
	background: #f1f5f9;
	color: #0284c7;
}

.header-menu .sub-menu .sub-menu {
	top: -10px;
	left: calc(100% + 10px);
	border-radius: 14px;
}

.site-header__burger,
.site-mobile-menu {
	display: none;
}

/* HERO */
.home-hero {
	position: relative;
	height: 100vh;
	min-height: 760px;
	background: #111;
	overflow: hidden;
}

.home-hero__slider,
.home-hero__slide,
.home-hero__media {
	height: 100%;
}

.home-hero__slide {
	position: relative;
}

.home-hero__media,
.home-hero__overlay {
	position: absolute;
	inset: 0;
}

.home-hero__bg,
.home-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-hero__bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.home-hero__bg--mobile {
	display: none;
}

.home-hero__video {
	object-fit: cover;
}

.home-hero__overlay {
	background: rgba(0,0,0,.42);
	z-index: 2;
}

.home-hero .container {
	position: relative;
	height: 100%;
	z-index: 3;
}

.home-hero__content {
	position: absolute;
	top: 56%;
	left: 0;
	transform: translateY(-50%);
	max-width: 700px;
	color: #fff;
}

.home-hero__title {
	margin: 0 0 16px;
	font-size: clamp(40px, 4.4vw, 48px);
	line-height: .98;
	font-weight: 400;
	color: #fff;
}

.home-hero__desc {
	max-width: 560px;
	font-size: 18px;
	line-height: 1.45;
	color: #fff;
}

.home-hero__actions {
	margin-top: 28px;
}

.home-hero .btn-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	background: #fff;
	color: #111;
	text-decoration: none;
	border-radius: 2px;
	font-weight: 600;
}

.home-hero .slick-list,
.home-hero .slick-track {
	height: 100%;
}

.home-hero .slick-dots {
	bottom: 28px;
}

.home-hero .slick-dots li button:before {
	font-size: 12px;
	color: #fff;
	opacity: .5;
}

.home-hero .slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 1;
}

/* MAIN BLOCKS AFTER HERO */
.home-blocks {
	padding: 80px 0;
	background: #fff;
}

.acf-debug-block {
	padding: 20px;
	margin-bottom: 20px;
	border: 1px dashed #bbb;
	background: #f7f7f7;
	font-size: 14px;
}

/* INNER PAGES */
.site-header--inner .site-header__inner {
	background: rgba(20, 20, 20, 0.92);
	padding: 10px 0 0;
}

/* MOBILE */
@media (max-width: 991px) {
	body.is-mobile-menu-open {
		overflow: hidden;
	}

	.site-header {
		z-index: 1100;
	}

	.site-header__inner {
		padding: 10px 0;
		background: rgba(20, 20, 20, .94);
		backdrop-filter: blur(10px);
	}

	.site-header__top {
		flex-wrap: nowrap;
		align-items: center;
		gap: 12px;
	}

	.site-header__logo-img {
		width: 74px;
		max-width: 74px;
		height: auto;
	}

	.site-header__logo-text {
		font-size: 24px;
	}

	.site-header__address,
	.site-header__socials,
	.site-header__callback,
	.site-header__nav {
		display: none;
	}

	.site-header__contacts {
		flex: 1;
		margin-left: 0;
		text-align: right;
		min-width: 0;
		color: #fff;
	}

	.site-header__phone span {
		display: none;
	}

	.site-header__phone-link {
		font-size: 16px;
		font-weight: 800;
		white-space: nowrap;
	}

	.site-header__burger {
		display: inline-flex;
		position: relative;
		flex: 0 0 auto;
		width: 46px;
		height: 46px;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(255, 255, 255, .22);
		border-radius: 8px;
		background: rgba(255, 255, 255, .08);
		color: #fff;
		cursor: pointer;
	}

	.site-header__burger span {
		position: absolute;
		left: 12px;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: currentColor;
		transition: transform .2s ease, opacity .2s ease, top .2s ease;
	}

	.site-header__burger span:nth-child(1) {
		top: 15px;
	}

	.site-header__burger span:nth-child(2) {
		top: 22px;
	}

	.site-header__burger span:nth-child(3) {
		top: 29px;
	}

	.site-header.is-mobile-menu-open .site-header__burger span:nth-child(1) {
		top: 22px;
		transform: rotate(45deg);
	}

	.site-header.is-mobile-menu-open .site-header__burger span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-mobile-menu-open .site-header__burger span:nth-child(3) {
		top: 22px;
		transform: rotate(-45deg);
	}

	.site-mobile-menu {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1090;
		background: rgba(15, 23, 42, .48);
		backdrop-filter: blur(4px);
	}

	.site-mobile-menu[hidden] {
		display: none !important;
	}

	.site-mobile-menu__panel {
		position: absolute;
		top: 0;
		right: 0;
		width: min(420px, 100%);
		height: 100%;
		padding: 24px 20px 28px;
		overflow-y: auto;
		background: #111827;
		color: #fff;
		box-shadow: -24px 0 60px rgba(0, 0, 0, .28);
	}

	.site-mobile-menu__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		margin-bottom: 24px;
		padding-bottom: 18px;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}

	.site-mobile-menu__title {
		font-size: 22px;
		font-weight: 800;
		line-height: 1;
	}

	.site-mobile-menu__close {
		display: inline-flex;
		position: relative;
		width: 42px;
		height: 42px;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(255, 255, 255, .18);
		border-radius: 8px;
		background: rgba(255, 255, 255, .06);
		color: #fff;
		cursor: pointer;
	}

	.site-mobile-menu__close span {
		position: absolute;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: currentColor;
	}

	.site-mobile-menu__close span:first-child {
		transform: rotate(45deg);
	}

	.site-mobile-menu__close span:last-child {
		transform: rotate(-45deg);
	}

	.mobile-menu,
	.mobile-menu .sub-menu {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-menu {
		display: grid;
		gap: 8px;
	}

	.mobile-menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 48px;
		padding: 13px 14px;
		border-radius: 8px;
		background: rgba(255, 255, 255, .06);
		color: #fff;
		font-size: 16px;
		font-weight: 800;
		line-height: 1.2;
		text-decoration: none;
		text-transform: uppercase;
	}

	.mobile-menu a:hover,
	.mobile-menu a:focus {
		background: #f59e0b;
		color: #111827;
	}

	.mobile-menu .sub-menu {
		display: grid;
		gap: 6px;
		margin: 8px 0 4px 14px;
	}

	.mobile-menu .sub-menu a {
		min-height: 42px;
		padding: 11px 12px;
		background: rgba(255, 255, 255, .04);
		color: rgba(255, 255, 255, .84);
		font-size: 14px;
		font-weight: 700;
		text-transform: none;
	}

	.mobile-menu .sub-menu .sub-menu {
		margin-left: 10px;
	}

	.site-mobile-menu__meta {
		display: grid;
		gap: 14px;
		margin-top: 26px;
		padding-top: 22px;
		border-top: 1px solid rgba(255, 255, 255, .12);
	}

	.site-mobile-menu__phone {
		color: #fff;
		font-size: 24px;
		font-weight: 850;
		line-height: 1.1;
		text-decoration: none;
	}

	.site-mobile-menu__worktime,
	.site-mobile-menu__address {
		color: rgba(255, 255, 255, .72);
		font-size: 14px;
		line-height: 1.45;
	}

	.site-mobile-menu__socials {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		margin: 4px 0 0;
		padding: 0;
		list-style: none;
	}

	.site-mobile-menu__socials a {
		display: inline-flex;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		background: rgba(255, 255, 255, .08);
		color: #fff;
		text-decoration: none;
	}

	.site-mobile-menu__socials img {
		display: block;
		width: 32px;
		height: 32px;
		object-fit: contain;
	}

	.site-mobile-menu__callback {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 48px;
		margin-top: 8px;
		padding: 13px 18px;
		border-radius: 8px;
		background: #f59e0b;
		color: #111827;
		font-weight: 850;
		text-decoration: none;
	}

	.home-hero {
		min-height: 620px;
	}

	.home-hero__bg--desktop {
		display: none;
	}

	.home-hero__bg--mobile {
		display: block;
	}

	.home-hero__content {
		top: 58%;
		max-width: 100%;
		padding-right: 20px;
	}

	.home-hero__title {
		font-size: 38px;
	}

	.home-hero__desc {
		font-size: 16px;
	}
}


.leaflet-control-attribution.leaflet-control svg {
    display: none !important;
}

/* =========================
   STANDARD PAGE TEMPLATE
   ========================= */

.krep-page {
	padding: 190px 0 80px;
	background: #fff;
	min-height: 60vh;
}

.krep-page__container {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.krep-page__header {
	margin-bottom: 36px;
}

.krep-page__title {
	margin: 0;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.05;
	font-weight: 800;
	color: #0f172a;
	text-transform: uppercase;
}

.krep-page__content {
	font-size: 17px;
	line-height: 1.7;
	color: #334155;
}

.krep-page__content > *:first-child {
	margin-top: 0;
}

.krep-page__content > *:last-child {
	margin-bottom: 0;
}

.krep-page__content h2 {
	margin: 44px 0 18px;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.15;
	color: #0f172a;
}

.krep-page__content h3 {
	margin: 32px 0 14px;
	font-size: 24px;
	line-height: 1.25;
	color: #0f172a;
}

.krep-page__content p {
	margin: 0 0 18px;
}

.krep-page__content ul,
.krep-page__content ol {
	margin: 0 0 22px 22px;
	padding: 0;
}

.krep-page__content li {
	margin-bottom: 8px;
}

.krep-page__content a {
	color: #0284c7;
	text-decoration: none;
}

.krep-page__content a:hover {
	text-decoration: underline;
}

.krep-page__content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

@media (max-width: 991px) {
	.krep-page {
		padding: 150px 0 64px;
	}
}

@media (max-width: 575px) {
	.krep-page {
		padding: 130px 0 52px;
	}

	.krep-page__container {
		width: min(100% - 32px, 1280px);
	}

	.krep-page__header {
		margin-bottom: 28px;
	}
}


/* =========================
   KREP FOOTER — DARK
   ========================= */

/* =========================
   FAQ
   ========================= */

.krep-faq {
	padding: 88px 0 96px;
	background: #fff;
	color: #0f172a;
}

.krep-faq__container {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.krep-faq__title {
	margin: 0 0 44px;
	font-size: clamp(34px, 4.4vw, 64px);
	line-height: 1.05;
	font-weight: 800;
	color: #343434;
	text-align: center;
	letter-spacing: 0;
}

.krep-faq__list {
	display: grid;
	gap: 0;
}

.krep-faq__item {
	border-bottom: 1px solid #d9d9d9;
}

.krep-faq__question {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 106px;
	padding: 24px 48px 24px 0;
	color: #020202;
	font-size: clamp(22px, 2.1vw, 30px);
	line-height: 1.22;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.krep-faq__question::-webkit-details-marker {
	display: none;
}

.krep-faq__question::after {
	content: "";
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 3px solid #ff9f1a;
	border-left: 0;
	border-top: 0;
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.krep-faq__item[open] .krep-faq__question::after {
	margin-top: 8px;
	transform: rotate(225deg);
}

.krep-faq__answer {
	max-width: 980px;
	padding: 0 64px 30px 0;
	color: #475569;
	font-size: 18px;
	line-height: 1.65;
}

.krep-faq__answer > *:first-child {
	margin-top: 0;
}

.krep-faq__answer > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.krep-faq {
		padding: 58px 0 64px;
	}

	.krep-faq__container {
		width: min(100% - 32px, 1280px);
	}

	.krep-faq__title {
		margin-bottom: 30px;
		font-size: 34px;
		text-align: left;
	}

	.krep-faq__question {
		min-height: 76px;
		padding: 18px 0;
		gap: 18px;
		font-size: 21px;
	}

	.krep-faq__question::after {
		width: 14px;
		height: 14px;
		border-width: 2px;
	}

	.krep-faq__answer {
		padding: 0 0 24px;
		font-size: 16px;
	}
}

.krep-footer {
	background: #121212;
	color: #fff;
}

.krep-footer__main {
	padding: 72px 0 64px;
	background: #151515;
}

.krep-footer__container {
	width: min(1360px, calc(100% - 48px));
	margin: 0 auto;
}

.krep-footer__main .krep-footer__container {
	display: grid;
	grid-template-columns: minmax(250px, 1.05fr) minmax(160px, .7fr) minmax(230px, .9fr) minmax(300px, 1.1fr);
	gap: 46px;
	align-items: flex-start;
}

.krep-footer__logo,
.krep-footer__logo-text {
	display: inline-flex;
	margin-bottom: 22px;
	text-decoration: none;
}

.krep-footer__logo-img {
	display: block;
	width: 96px;
	height: auto;
}

.krep-footer__logo-text {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
}

.krep-footer__contact-list {
	display: grid;
	gap: 14px;
}

.krep-footer__contact {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: flex-start;
	gap: 12px;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.45;
	text-decoration: none;
}

.krep-footer__contact[href]:hover,
.krep-footer__menu a:hover,
.krep-footer__policy a:hover {
	color: #fff;
}

.krep-footer__contact-icon {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	color: #f59e0b;
}

.krep-footer__contact[href^="tel"] {
	color: #fff;
	font-size: 21px;
	font-weight: 850;
	line-height: 1.15;
}

.krep-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.krep-footer__socials a {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	background: rgba(255, 255, 255, .07);
	color: #fff;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}

.krep-footer__socials a:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.krep-footer__socials img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.krep-footer__title {
	margin: 0 0 22px;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 850;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.krep-footer__menu {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.krep-footer__menu a {
	color: rgba(255, 255, 255, .76);
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
}

.krep-footer__menu a:hover {
	padding-left: 4px;
}

.krep-footer__form-text,
.krep-footer__form-notice {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .7);
	font-size: 15px;
	line-height: 1.5;
}

.krep-footer__form .wpcf7-form p {
	margin: 0 0 12px;
}

.krep-footer__form .wpcf7-form label {
	display: block;
	color: rgba(255, 255, 255, .76);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.krep-footer__form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 7px;
}

.krep-footer__form input[type="text"],
.krep-footer__form input[type="tel"],
.krep-footer__form input[type="email"] {
	width: 100%;
	min-height: 46px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 15px;
	outline: none;
}

.krep-footer__form input[type="text"]::placeholder,
.krep-footer__form input[type="tel"]::placeholder,
.krep-footer__form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, .42);
}

.krep-footer__form input[type="text"]:focus,
.krep-footer__form input[type="tel"]:focus,
.krep-footer__form input[type="email"]:focus {
	border-color: #f59e0b;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, .16);
}

.krep-footer__form input[type="submit"],
.krep-footer__form .wpcf7-submit {
	display: inline-flex;
	width: 100%;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: #f59e0b;
	color: #111827;
	font-size: 15px;
	font-weight: 850;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.krep-footer__form input[type="submit"]:hover,
.krep-footer__form .wpcf7-submit:hover {
	background: #ffb23d;
	transform: translateY(-1px);
}

.krep-footer__form .wpcf7-spinner {
	display: block;
	margin: 10px auto 0;
}

.krep-footer__form .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
}

.krep-footer__form .wpcf7-response-output {
	margin: 12px 0 0 !important;
	padding: 10px 12px !important;
	border-radius: 8px;
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	line-height: 1.4;
}

.krep-footer__bottom {
	padding: 20px 0;
	background: #0f0f0f;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.krep-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.krep-footer__policy a,
.krep-footer__copy {
	color: rgba(255, 255, 255, .66);
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
}

.krep-footer__copy {
	text-align: right;
}

@media (max-width: 1180px) {
	.krep-footer__main .krep-footer__container {
		grid-template-columns: 1fr 1fr;
		gap: 40px 36px;
	}
}

@media (max-width: 640px) {
	.krep-footer__container {
		width: min(100% - 32px, 1280px);
	}

	.krep-footer__main {
		padding: 46px 0 42px;
	}

	.krep-footer__main .krep-footer__container {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.krep-footer__logo-img {
		width: 88px;
	}

	.krep-footer__contact {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.krep-footer__contact-icon {
		width: 36px;
		height: 36px;
	}

	.krep-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.krep-footer__copy {
		text-align: left;
	}
}
