@charset "UTF-8";


@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo-300.ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo-500.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo-700.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo-900.ttf');
    font-weight: 900;
    font-style: normal;
}



@media (min-width: 992px) {
    .container {
        max-width: 992px
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px
    }
}
body {
    font-size: 17px;
    line-height: 24px;
    font-family: Museo;
    color: #333
}
button {
    outline: 0;
    cursor: pointer
}
button:focus {
    outline: 0
}
input {
    outline: 0
}
input:focus {
    outline: 0
}
header .header {
    padding-top: 20px;
    padding-bottom: 18px
}
header .header .logo-block {
    width: 491px
}
header .header .logo-block img {
    margin-right: 28px;
    width: 50%;
}
header .header .logo-block span {
    font-size: 19px;
    display: block;
    margin-bottom: -5px
}
header .header .contacts .tel-block {
    margin-right: 28px;
    margin-bottom: -5px
}
header .header .contacts .tel-block img {
    margin-right: 13px
}
header .header .contacts .tel-block div a {
    font-size: 28px;
    color: #003955;
    font-family: Museo;
    font-weight: 700;
    display: block
}
header .header .contacts .tel-block div a:hover {
    text-decoration: none
}
header .header .contacts .tel-block div span {
    color: #003955;
    display: block
}
header .header .contacts button {
    width: 223px;
    height: 48px;
    border-radius: 4px;
    font-family: Museo;
    background: #f5c542;
    font-size: 24px;
    border: none;
    color:#00001a;
}
header .header .contacts button:hover {
    background: #e5b800;
}






/* ===== НАВИГАЦИЯ ===== */
/* Основной навбар */
#mainNav {
  background: linear-gradient(to right, #000e43, #215f90);
  padding: 10px 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1000;
  position: relative;
}
/* Sticky навбар */
#mainNav.stickytop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
/* Контейнер навбара */
#mainNav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Пустой блок для выравнивания */
.nav-logo-placeholder {
  width: 100px;
}
@media (min-width: 768px) {
  .nav-logo-placeholder {
    display: none;
  }
}
/* Логотип в мобильном меню */
.mobile-logo {
  text-align: center;
  margin-bottom: 20px;
}
.mobile-logo img {
  max-height: 61px;
  width: auto;
  background: white;
  padding: 6px;
  border-radius: 14px;
}
/* Кнопка "Позвонить" для мобильных */
.mobile-call-btn {
    color: #fff;
    padding: 8px 21px;
    font-weight: 500;
    font-size: 28px;
    display: flex;
    align-items: center;

}
.mobile-call-btn:hover {
  background: #e5b800;
  color: #000;
}
/* Гамбургер */
.navbar-toggler {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 1002;
  transition: opacity 0.3s ease;
}
.navbar-toggler.hidden {
  opacity: 0;
  pointer-events: none;
}
.navbar-toggler .hamburger,
.navbar-toggler .hamburger::before,
.navbar-toggler .hamburger::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}
.navbar-toggler .hamburger {
  position: relative;
}
.navbar-toggler .hamburger::before {
  transform: translateY(-10px);
}
.navbar-toggler .hamburger::after {
  transform: translateY(10px);
}
/* Кнопка закрытия в мобильном меню */
.close-menu {
  position: absolute;
  top: 1px;
  right: 13px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  z-index: 1003;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Меню */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0px;
}
.nav-menu a {
 color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 6px;
    border-radius: 4px;
}
.nav-menu a:hover {
  color: #f7c600;
  background: rgba(255,255,255,0.1);
}
/* Разделители для десктопа */
@media (min-width: 768px) {
  .nav-menu a:not(:last-child)::after {
    content: "|";
    color: rgba(255,255,255,0.5);
    margin-left: 12px;
    font-weight: 300;
  }
  .mobile-menu-info,
  .mobile-logo,
  .close-menu {
    display: none;
  }
  .navbar-toggler,
  .mobile-call-btn {
    display: none !important;
  }
  #mainNav .container {
    justify-content: center;
  }
}
/* Мобильное меню */
@media (max-width: 767.98px) {
  #mainNav .container {
    justify-content: space-between;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000e43;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 25px 30px 25px;
    gap: 15px;
    transition: right 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-menu.show {
    right: 0;
  }
  .nav-menu a {
    width: 100%;
    padding: 6px 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu-info {
    margin-top: 17px;
    width: 100%;
    text-align: center;
  }
  .work-hours, .phone, .email {
    margin-bottom: 13px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .work-hours i, .phone i, .email i {
    margin-right: 10px;
    color: #f7c600;
    width: 20px;
  }
  .phone a, .email a {
     
  }
  .social-links {
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }
  .social-links img {
   width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.2s;
  }
  .social-links a:hover img {
    transform: scale(1.15);
  }
}
/* Фон затемнения */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}
.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}



main .first-block {
    background: url(../images/first-block-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
     
}
main .first-block .col-12 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px
}
main .first-block .h1-block {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .75);
    width: 741px;
    height: 325px;
    padding: 49px 31px;
    text-align: center;
    position: relative
}
main .first-block .h1-block h1 {
    font-size: 60px;
    color: #14303e;
    font-family: Museo;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    line-height: 1;
    margin-bottom: 15px
}
main .first-block .h1-block h2 {
    font-size: 39px;
    color: #14303e;
    line-height: 1;
    font-family: Museo;
    margin-bottom: 40px
}
main .first-block .h1-block p {
    color: #c00;
    font-size: 29px;
    font-family: Museo;
    line-height: 34px;
    margin-bottom: 0
}
main .first-block .h1-block span {
    font-family: Museo;
    font-size: 34px;
    color: #fff;
    background: url(../images/akcii.png) no-repeat center center;
    display: block;
    height: 69px;
    text-transform: uppercase;
    margin-bottom: 16px
}
main .first-block .calculate {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #2d343c;
    -webkit-box-shadow: 0 0 11.68px 4.32px rgba(0, 0, 1, .05);
    box-shadow: 0 0 11.68px 4.32px rgba(0, 0, 1, .05);
    width: 369px;
    height: 414px;
    color: #fff
}
main .first-block .calculate .calculate-head {
    padding: 22px 31px 15px;
    font-size: 26px;
    font-family: Museo;
    text-transform: uppercase;
    text-align: center
}
main .first-block .calculate .calculate-head h2 {
    margin-bottom: 0
}
main .first-block .calculate hr {
    margin: 0;
    border-color: #3f4955
}
main .first-block .calculate .calculate-body {
    padding: 22px 31px;
    justify-self: flex-end
}
main .first-block .calculate .calculate-body form {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-gap: 14px
}
main .first-block .calculate .calculate-body form div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}
main .first-block .calculate .calculate-body form div label {
    font-size: 18px
}
main .first-block .calculate .calculate-body form div input {
    border-width: 1px;
    border-color: #d1d1d1;
    border-style: solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    height: 41px;
    font-size: 20px;
    color: #033;
    text-align: center
}
main .first-block .calculate .calculate-body form div #square {
    width: 90px;
    margin-left: auto
}
main .first-block .calculate .calculate-body form div #price {
    width: 154px;
    margin-left: auto
}
main .first-block .calculate .calculate-body form div #phone {
    width: 167px;
    margin-left: auto;
    font-size: 16px;
    text-align: left;
    padding: 0 15px
}
main .first-block .calculate .calculate-body form p {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 5px
}
main .first-block .calculate .calculate-body form button {
    width: 306px;
    height: 53px;
    background: -webkit-gradient(linear, left bottom, left top, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(360deg, #f6d30c 0, #ffe937 100%);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: none;
    -webkit-box-shadow: 0 4px 0 0 #e7ae01;
    box-shadow: 0 4px 0 0 #e7ae01;
    font-size: 20px;
    text-transform: uppercase;
    font-family: Museo
}
main .first-block .calculate .calculate-body form button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(180deg, #f6d30c 0, #ffe937 100%)
}
main .characteristics {
    padding-top: 90px;
    padding-bottom: 90px
}
main .characteristics h2 {
    font-size: 36px;
    color: #003955;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px
}
main .characteristics .grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    grid-gap: 50px 50px
}
main .characteristics .grid .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}
main .characteristics .grid .item .img-block {
    width: 65px;
    height: 65px;
    border-width: 2px;
    border-color: #e8e8e8;
    border-style: solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 31px;
    margin-top: 3px
}
main .characteristics .grid .item .desc {
    width: 250px
}
main .characteristics .grid .item .desc h3 {
    font-size: 23px;
    color: #003955;
    font-family: Museo;
    margin-bottom: 10px
}
main .characteristics .grid .item .desc span {
    line-height: 1
}
main .kinds {
    background: #f3f2f2;
    padding-top: 35px;
     
}
main .kinds h2 {
    font-size: 40px;
    font-weight: 700;
    color: #003955;
    text-align: center;
    margin-bottom: 30px
}
main .kinds .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 27px
}
main .kinds .grid .item {
    height: 555px;
    width: 370px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    overflow: hidden
}
main .kinds .grid .item .wrap {
    padding: 18px 32px 22px
}
main .kinds .grid .item .wrap .img {
    height: 277px;
    width: 100%
}
main .kinds .grid .item .wrap h3 {
    font-size: 28px;
    font-family: Museo;
    color: #003955;
    text-align: center
}
main .kinds .grid .item .wrap .item-price {
    font-size: 24px;
    font-family: Museo;
    color: #19bf2d;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px
}
main .kinds .grid .item .wrap button {
    width: 306px;
    height: 53px;
    background: -webkit-gradient(linear, left bottom, left top, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(360deg, #f6d30c 0, #ffe937 100%);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: none;
    -webkit-box-shadow: 0 4px 0 0 #e7ae01;
    box-shadow: 0 4px 0 0 #e7ae01;
    font-size: 20px;
    text-transform: uppercase;
    font-family: Museo;
    width: 100%;
    margin-top: 22px
}
main .kinds .grid .item .wrap button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(180deg, #f6d30c 0, #ffe937 100%)
}
main .kinds .grid .item .wrap div span {
    display: block;
    margin-bottom: 5px
}
main .kinds .grid .item .wrap div span img {
    margin-right: 5px;
    margin-top: -3px
}
main .texnology {
    padding-top: 90px;
    padding-bottom: 90px
}
main .texnology .grid {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}
main .texnology h2 {
    font-size: 36px;
    color: #003955;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center
}
main .texnology img {
    width: 250px;
    height: 250px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 25px
}
main .texnology h3 {
    font-size: 20px;
    font-family: Museo;
    color: #000;
    text-transform: uppercase;
    text-align: center
}
main .zamer {
    background: url(../images/bg2.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 44px 0 32px
}
main .zamer .h2-block {
    width: 550px;
    color: #fff
}
main .zamer .h2-block h2 {
    font-size: 51px;
    display: block;
    margin-bottom: 30px
}
main .zamer .h2-block span {
    font-size: 26px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.2
}
main .zamer .h2-block span.first {
    margin-bottom: 25px
}
main .zamer .h2-block span img {
    margin-right: 20px
}
main .zamer .form {
    width: 369px;
    height: 300px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 11.68px 4.32px rgba(0, 0, 1, .05);
    box-shadow: 0 0 11.68px 4.32px rgba(0, 0, 1, .05);
    padding: 28px 33px 34px;
    text-align: center
}
main .zamer .form h3 {
    font-size: 26px;
    font-family: Museo;
    color: #003955;
    text-transform: uppercase;
    margin-bottom: 2px
}
main .zamer .form span {
    font-size: 21px;
    font-family: Museo;
    color: #003955;
    text-transform: uppercase;
    margin-bottom: 13px;
    display: block
}
main .zamer .form h4 {
    font-family: Museo;
    display: block;
    background: url(../images/akcii2.png) no-repeat center center;
    font-size: 17px;
    font-family: Museo;
    text-transform: uppercase;
    color: #fff;
    width: 256px;
    height: 37px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 21px
}
main .zamer .form form button {
    width: 306px;
    height: 53px;
    background: -webkit-gradient(linear, left bottom, left top, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(360deg, #f6d30c 0, #ffe937 100%);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: none;
    -webkit-box-shadow: 0 4px 0 0 #e7ae01;
    box-shadow: 0 4px 0 0 #e7ae01;
    font-size: 20px;
    text-transform: uppercase;
    font-family: Museo;
    width: 100%
}
main .zamer .form form button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(180deg, #f6d30c 0, #ffe937 100%)
}
main .zamer .form form input {
    border-width: 1px;
    border-color: #ccc;
    border-style: solid;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    width: 100%;
    height: 47px;
    padding: 0 16px;
    margin-bottom: 12px
}
main .potolki-for {
    padding-top: 80px;
    padding-bottom: 80px
}
main .potolki-for h2 {
    color: #003955;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center
}
main .potolki-for .grid {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-row-gap: 30px
}
main .potolki-for .item {
    text-align: center
}
main .potolki-for .item img {
    display: block;
    margin-bottom: 15px
}
main .potolki-for .item span {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: Museo
}
main .ask {
    background: #e8e8e8;
    padding-top: 90px;
    padding-bottom: 100px;
    text-align: center
}
main .ask h2 {
    color: #003955;
    font-size: 36px
}
main .ask h3 {
    font-size: 24px;
    color: #121313
}
main .ask h3 a {
    color: #c00
}
main .ask .ask-blocks {
    margin-top: 20px
}
main .ask .ask-blocks .item {
    text-align: left;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    margin-bottom: 13px;
    overflow: hidden;
    border: 2px solid #19bf2d
}
main .ask .ask-blocks .item h4 {
    width: 100%;
    height: 65px;
    color: #fff;
    font-size: 22px;
    padding: 0 24px;
    padding-right: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #19bf2d;
    margin-bottom: 0;
    position: relative;
    cursor: pointer
}
main .ask .ask-blocks .item h4:after {
    content: '+';
    font-size: 40px;
    position: absolute;
    right: 13px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    line-height: 34px;
    height: 32px
}
main .ask .ask-blocks .item h4.active:after {
    content: '–';
    font-size: 34px;
    line-height: 26px
}
main .ask .ask-blocks .item div {
    width: 100%;
    padding: 15px 24px;
    background: #fff;
    font-family: Museo;
    color: #1d1a1a;
    display: none
}
main .ask .ask-blocks .item div.active {
    width: 100%;
    left: -2px;
    height: auto;
    z-index: 100;
    display: block
}
main .ask button {
    width: 306px;
    height: 53px;
    background: -webkit-gradient(linear, left bottom, left top, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(bottom, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(360deg, #f6d30c 0, #ffe937 100%);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: none;
    -webkit-box-shadow: 0 4px 0 0 #e7ae01;
    box-shadow: 0 4px 0 0 #e7ae01;
    font-size: 20px;
    text-transform: uppercase;
    font-family: Museo;
    margin-top: 20px
}
main .ask button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f6d30c), to(#ffe937));
    background: -webkit-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: -o-linear-gradient(top, #f6d30c 0, #ffe937 100%);
    background: linear-gradient(180deg, #f6d30c 0, #ffe937 100%)
}
main .reviews {
    padding-top: 44px;
    padding-bottom: 20px
}
main .reviews h2 {
    font-size: 36px;
    color: #003955;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 130px
}
main .reviews .items {
    display: grid;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: repeat(3, 366px)
}
main .reviews .items .item {
    text-align: center;
    border-width: 2px;
    border-color: #e8e8e8;
    border-style: solid;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    width: 366px;
    height: 100%;
    padding: 0 30px 50px
}
main .reviews .items .item img {
    width: 186px;
    height: 187px;
    border-style: solid;
    border-width: 7px;
    border-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-top: -95px;
    margin-bottom: 15px
}
main .reviews .items .item h5 {
    margin-bottom: 10px
}
main .reviews .items .item span {
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-family: pnr
}
main .call {
    text-align: center;
    padding: 70px 0 65px;
    background: linear-gradient(to right, #000e43, #215f90);
}
main .call h2 {
    font-size: 40px;
    font-family: Museo;
    line-height: 51px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 13px
}
main .call h3 {
    font-size: 26px;
    font-family: Museo;
    line-height: 30px;
    margin-bottom: 30px;
    color: #fff
}
main .call button {
    background: #f5c542;
    color: #000;
    width: 270px;
    height: 51px;
    border-radius: 6px;
    font-size: 25px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: .3s;
}
main .call button:hover {
    background: #e5b800;
}
main #map {
    width: 100%;
    height: 500px;
    position: relative
}
main #map .col-12 {
    position: relative
}
main #map .places {
    border-width: 2px;
    border-color: #3a487e;
    border-style: solid;
    background-color: rgba(255, 255, 255, .8);
    position: absolute;
    width: 440px;
    height: 325px;
    z-index: 100;
    top: 85px;
    bottom: 0;
    left: 15px;
    right: 0;
    display: block;
    text-align: center;
    padding-top: 9px;
    border-radius: 35px;
}
main #map .places .places-logo {
    display: block;
    margin-left: auto;
    margin-right: auto
}
main #map .places span {
    display: block;
    font-size: 22px;
    color: #1c1d1e;
    margin-top: 20px
}
main #map .places div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px
}
main #map .places div img {
    margin-right: 13px
}
main #map .places div a {
    color: #c00;
    font-size: 34px;
    font-family: Museo
}
main #map .places div a:hover {
    text-decoration: none
}

.up {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #959595;
    opacity: .62;
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    right: 50px;
    bottom: 50px;
    width: 55px;
    height: 55px;
    z-index: 300;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}
.up:hover {
    opacity: 1
}
@media (max-width: 1199px) {
    header .header .logo-block {
        width: 100%
    }
    header .header .contacts {
        width: 100%;
        margin-top: 20px
    }
    main .first-block .col-12 {
        grid-template-columns: 1fr
    }
    main .first-block .h1-block {
        margin-left: auto;
        margin-right: auto
    }
    main .first-block .calculate {
        margin-left: auto;
        margin-right: auto
    }
    main .characteristics .grid {
        grid-template-columns: repeat(2, 350px);
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    main .kinds .grid {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }
    main .kinds .grid .item3 {
        margin-top: 50px
    }
    main .texnology .grid {
        grid-template-columns: repeat(2, 250px);
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        grid-gap: 30px 50px
    }
    main .potolki-for .grid {
        grid-template-columns: repeat(2, 370px);
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        grid-gap: 30px 50px
    }
    main .ask .ask-blocks {
        grid-template-columns: repeat(2, 455px)
    }
    main .reviews .items {
        grid-template-columns: repeat(2, 366px);
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        grid-gap: 130px 50px
    }
    main .reviews .items .item3 {
        grid-row: 2;
        grid-column: 1/3;
        justify-self: center
    }
}
@media (max-width: 991px) {
    main .first-block .h1-block {
        width: 100%
    }
    main .first-block .h1-block h1 {
        font-size: 54px
    }
    main .first-block .h1-block h2 {
        font-size: 36px;
        margin-bottom: 30px
    }
    main .first-block .h1-block span {
        margin-bottom: 20px
    }
    main .first-block .h1-block p {
        font-size: 28px;
        line-height: 40px
    }
    main .characteristics .grid {
        grid-template-columns: repeat(2, 320px);
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        grid-gap: 50px 10px
    }
    main .characteristics .grid .item .desc h3 {
        font-size: 21px
    }
    main .characteristics .grid .item .desc span {
        font-size: 16px
    }
    main .kinds .grid .item2 {
        margin-top: 50px
    }
    main .zamer .h2-block {
        margin-left: auto;
        margin-right: auto
    }
    main .zamer .form {
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px
    }
    main .potolki-for .grid {
        grid-template-columns: repeat(2, 1fr)
    }
    main .potolki-for .item img {
        width: 100%
    }
    main .ask .ask-blocks {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 13px
    }
    main .ask .ask-blocks .item h4 {
        font-size: 20px
    }
    main .reviews .items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 130px 30px
    }
    main .reviews .items .item {
        width: 100%
    }
    main .call h2 {
        font-size: 33px
    }
   
}
@media (max-width: 767px) {
    header .header .logo-block span {
        font-size: 17px
    }
    header .header .contacts .tel-block div a {
        font-size: 26px
    }
    header .header .contacts .tel-block div span {
        font-size: 16px
    }
    main .first-block .h1-block h1 {
        font-size: 39px
    }
    main .first-block .h1-block h2 {
        font-size: 26px
    }
    main .first-block .h1-block p {
        font-size: 20px;
        line-height: 36px
    }
    main .first-block .h1-block {
        height: 360px
    }
    main .characteristics .grid {
        grid-template-columns: 1fr
    }
    main .characteristics .grid .item {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    main .texnology .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 20px
    }
    main .zamer .h2-block h2 {
        font-size: 49px;
        text-align: center
    }
    main .potolki-for .grid {
        grid-gap: 30px 20px
    }
    main .ask {
        padding-top: 70px
    }
    main .ask h3 {
        font-size: 18px;
        line-height: 24px
    }
    main .ask .ask-blocks {
        grid-template-columns: 1fr
    }
    main .ask .ask-blocks2 {
        margin-top: 0
    }
    main .reviews .items {
        grid-template-columns: 1fr
    }
    main .reviews .items .item3 {
        grid-column: 1
    }
    main .call h2 {
        font-size: 24px;
        line-height: 36px
    }
    main .call h3 {
        font-size: 20px
    }
    .up {
        right: 20px;
        bottom: 20px
    }
   
    main #map {
        height: 600px;
        overflow: hidden
    }
    main #map .container {
        max-width: 100%;
        padding: 0
    }
    main #map .places {
        position: static;
        width: 100%;
        border: none
    }
    nav a {
        display: block;
        text-align: center;
        padding: 10px 0
    }
    nav svg {
        width: 30px;
        height: 30px
    }
}
@media (max-width: 575px) {
    header .header .logo-block img {
        margin: 0 auto;
        width: 100%;
    }
    header .header .logo-block span {
        text-align: center;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto
    }
    header .header {
        padding-left: 0;
        padding-right: 0
    }
    header .header .contacts .tel-block {
        margin: 0;
        width: 100%
    }
    header .header .contacts .tel-block div a {
        font-size: 24px
    }
    header .header .contacts .tel-block div span {
        font-size: 15px
    }
    header .header .contacts button {
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px
    }
    main .first-block .col-12 {
        grid-template-columns: 100%
    }
    main .first-block .h1-block {
        padding: 30px 20px;
        height: auto
    }
    main .first-block .h1-block span {
        font-size: 22px;
        -webkit-background-size: 100% 100%;
        background-size: 100%;
        margin-bottom: 0;
        width: 250px;
        margin-left: auto;
        margin-right: auto
    }
    main .first-block .h1-block p {
        line-height: 24px
    }
    main .first-block .h1-block h2 {
        margin-bottom: 0
    }
    main .first-block .calculate {
        max-width: 369px;
        height: auto;
        width: 100%
    }
    main .first-block .calculate .calculate-body form div {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    main .first-block .calculate .calculate-body form div label {
        width: 100%;
        text-align: center
    }
    main .first-block .calculate .calculate-body form div input {
        margin: 0 auto
    }
    main .first-block .calculate .calculate-body form {
        grid-template-columns: 100%
    }
    main .texnology .grid {
        grid-template-columns: 1fr;
        text-align: center
    }
    main .characteristics .grid {
        grid-template-columns: 100%
    }
    main .characteristics .grid .item .img-block {
        margin-right: 20px
    }
    main .ask button {
        width: 100%;
        max-width: 306px
    }
    main .call button {
        width: 100%;
        max-width: 306px
    }
    main .zamer .form {
        max-width: 369px;
        width: 100%
    }
    main .first-block .calculate .calculate-body form button {
        max-width: 306px;
        width: 100%
    }
    main .characteristics h2 {
        font-size: 32px
    }
    main .characteristics .grid .item .desc {
        width: 188px
    }
    main .characteristics .grid .item .desc h3 {
        font-size: 20px;
        margin-bottom: 5px
    }
    main .characteristics .grid .item .desc span {
        font-size: 14px
    }
    main .kinds {
        padding-top: 70px
    }
    main .kinds h2 {
        font-size: 36px
    }
    main .kinds .grid .item .wrap {
        padding: 18px 20px 22px
    }
    main .kinds .grid .item .img {
        width: 100%;
        height: auto
    }
    main .kinds .grid .item .wrap h3 {
        font-size: 21px
    }
    main .kinds .grid .item .wrap .item-price {
        font-size: 20px
    }
    main .kinds .grid .item {
        height: auto
    }
    main .characteristics {
        padding-top: 70px
    }
    main .texnology h2 {
        font-size: 32px
    }
    main .texnology {
        padding-top: 70px;
        padding-bottom: 70px
    }
    main .zamer .h2-block h2 {
        font-size: 26px
    }
    main .zamer .h2-block span {
        font-size: 17px
    }
    main .zamer .form h4 {
        max-width: 256px;
        width: 100%;
        -webkit-background-size: 100% 100%;
        background-size: 100%
    }
    main .zamer .form {
        padding: 28px 25px 34px
    }
    main .zamer .form h3 {
        font-size: 19px
    }
    main .zamer .form span {
        font-size: 16px
    }
    main .potolki-for h2 {
        font-size: 32px
    }
    main .potolki-for .grid {
        grid-template-columns: 1fr
    }
    main .potolki-for {
        padding-top: 70px;
        padding-bottom: 70px
    }
    main .ask h2 {
        font-size: 26px
    }
    main .ask .ask-blocks .item h4 {
        font-size: 16px
    }
    main .reviews {
        padding-top: 70px
    }
    main .reviews h2 {
        font-size: 32px
    }
    main .reviews .items .item {
        padding: 0 15px 50px
    }
    main .reviews .items .item span {
        font-size: 14px
    }
    main .call h2 {
        font-size: 28px;
        line-height: 31px
    }
    main .call h3 {
        font-size: 20px;
        line-height: 22px
    }
    main #map .places span {
        font-size: 28px
    }
    main #map .places div a {
        font-size: 24px
    }
}
.success {
    width: 300px;
    height: 50px;
    font-size: 18px;
    font-family: Museo;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 22vh;
    left: 0;
    right: 0;
    background: #fdfdfd;
    border: 2px solid #000;
    padding: 10px 20px;
    z-index: 100;
    display: none;
    -webkit-box-shadow: 0 0 10px 0;
    box-shadow: 0 0 10px 0;
    color: #000
}
@media (max-width: 1199px) {
    .success {
        top: 200px
    }
}
.modal-open .modal {
    background: rgba(0, 0, 0, .8)
}
.modal .modal-dialog {
    max-width: 370px;
    width: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 380px
}
@media (max-width: 361px) {
    .modal .modal-dialog {
        max-width: 300px
    }
}
@media (max-width: 1199px) {
    .modal .modal-dialog {
        margin-top: 50px
    }
}
.modal .modal-content {
    background: #fff;
    border: none;
    padding: 45px 32px 43px;
    border-radius: 15px;
}
@media (max-width: 361px) {
    .modal .modal-content {
        padding: 40px 20px 28px
    }
}
.modal .modal-header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    padding: 0
}
.modal .modal-footer {
    padding: 0
}
.modal .modal-body {
    padding: 0;
    text-align: center;
}
.modal .modal-body button {
    display: inline-block;
    padding: 16px 32px;
    background: #f5c542;
    color: #000;
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s ease;
    border: none;
}
.modal .modal-body button:hover {
    background: #e5b800;
}
.modal h2 {
    font-size: 30px;
    text-align: center;
    color: #033;
    font-family: Museo;
    line-height: 28px;
    width: 100%;
    display: block;
    margin-bottom: 15px
}
.modal h2 span {
    font-size: 20px
}
.modal h4 {
    font-size: 18px;
    color: #033;
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
.modal input {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    outline: 0;
    border: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 10px 19px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    color: #333
}
.modal input:focus {
    outline: 0
}
.modal input.tel {
    margin-bottom: 25px;
}
.modal button {
    cursor: pointer;
    outline: 0
}
.modal button:focus {
    outline: 0
}
.modal .close {
        position: absolute;
    right: 8px;
    top: 0;
    opacity: 0.55;
    transition: .3s ease;
    font-size: 30px;
}
.modal .close:hover {
    opacity: .85
}

.mobtel {
            display: none; /* Скрываем по умолчанию */
        }

        @media (max-width: 768px) {
            .mobtel {
                display: block;
    font-size: 27px;
    color: #f8f9fa;
    padding-left: 52px;
            }
        }
        
        
        
        
        .hero {
  padding: 48px 100px;
  
}

.hero__content {
  max-width: 629px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    color: #1f2d3d;
    margin-bottom: 20px;
}

.hero h1 span {
  color: #082155; /* тёмно-синий акцент */
}

.hero__subtitle  {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero__advantages {
  margin-bottom: 35px;
}

.hero__advantages div {
    font-size: 23px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero__btn {
    display: inline-block;
    padding: 16px 32px;
    background: #f5c542;
    color: #000;
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s ease;
    border: none;       /* убираем рамку */
    margin-right: 4px
}

.hero__btn:hover {
    background: #e5b800;
}





/* =========================
   НАШИ УСЛУГИ (БАЛКОНЫ)
========================= */

.kinds {
  padding: 70px 0;
  background: #ffffff;
}

.kinds h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  color: #0b2e59;
  margin-bottom: 50px;
}

/* Карточка услуги */
.kinds .service-row {
  display: flex;
  background: #f8f9fb;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.kinds .service-row.reverse {
  flex-direction: row-reverse;
}

/* Изображение */
.kinds .service-img {
  width: 40%;
}

.kinds .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Контент */
.kinds .service-content {
  width: 60%;
  padding: 35px 40px;
}

.kinds .service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b2e59;
  margin-bottom: 15px;
}

/* Описание с полосой */
.kinds .service-desc {
  position: relative;
  padding-left: 16px;
  margin-bottom: 15px;
}

.kinds .service-desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 100%;
  background: #f7c600;
  border-radius: 2px;
}

.kinds .service-desc p {
  margin: 0;
  line-height: 1.6;
}

/* Цена и срок */
.kinds .service-content p {
  margin: 6px 0;
  font-size: 20px;
}

/* Кнопки */
.kinds .service-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.kinds .service-buttons .btn-main {
  background: #f7c600;
  color: #000;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.kinds .service-buttons .btn-main:hover {
  background: #e5b800;
}

.kinds .service-buttons .btn-outline {
  background: transparent;
  border: 2px solid #1f5fa8;
  color: #1f5fa8;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.kinds .service-buttons .btn-outline:hover {
  background: #1f5fa8;
  color: #ffffff;
}

/* Адаптив */
@media (max-width: 992px) {
  .kinds .service-row,
  .kinds .service-row.reverse {
    flex-direction: column;
  }

  .kinds .service-img,
  .kinds .service-content {
    width: 100%;
  }

  .kinds .service-content {
    padding: 25px;
  }

  .kinds h2 {
    font-size: 28px;
  }

  .kinds .service-content h3 {
    font-size: 28px;
  }
}





/* ================================
   КАК МЫ РАБОТАЕМ — СЕТКА С ИКОНКАМИ
================================ */

.how-work {
    padding: 44px 0;
    background: #ffffff;
}

.how-work h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 50px;
}

/* Сетка */
.how-grid {
  gap: 24px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

/* Карточка */
.how-item {
    background: #f3f2f2;
    border-radius: 16px;
    padding: 28px 20px 26px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Жёлтый круг */
.how-icon {
   width: 100px;
    height: 100px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background-color: #f7c948;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65px 65px;
}

/* Текст */
.how-item h3 {
    font-size: 18px;
    font-weight: 900;
    color: #0b2e59;
    margin-bottom: 6px;
}

.how-item p {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
    margin: 0;
   
}

/* ===== ИКОНКИ (SVG ВНУТРИ CSS) ===== */

/* Замер */
 
.icon-measure {
  background-image: url("https://tvoya-zvezda.ru/images/icon-measure.svg");}

/* Расчёт и договор */
.icon-calc {
    background-image: url("https://tvoya-zvezda.ru/images/icon-calc.svg");}


/* Демонтаж */
.icon-demo {
    background-image: url("https://tvoya-zvezda.ru/images/icon-demo.svg");}

/* Монтаж и отделка */
.icon-install {
    background-image: url("https://tvoya-zvezda.ru/images/icon-install.svg");}

/* Сдача объекта */
.icon-done {
    background-image: url("https://tvoya-zvezda.ru/images/icon-done.svg");}

/* Адаптив */
@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}






.text-kak{
font-size: 25px;
    font-weight: 700;
    color: #0b2e59;
    padding-bottom: 15px;
}


/* ===== АДАПТИВ ===== */

/* Разрешаем перенос */
.how-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Карточки по умолчанию */
.how-item {
    flex: 0 0 calc(20% - 24px); /* 5 в ряд */
    max-width: calc(20% - 24px);
}

/* Планшеты */
@media (max-width: 1200px) {
    .how-item {
        flex: 0 0 calc(33.333% - 24px); /* 3 в ряд */
        max-width: calc(33.333% - 24px);
    }
}

@media (max-width: 768px) {
    .how-item {
        flex: 0 0 calc(50% - 24px); /* 2 в ряд */
        max-width: calc(50% - 24px);
    }

    .how-work h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .text-kak {
        font-size: 20px;
    }

    .how-item p {
        font-size: 16px;
    }
}

/* Мобильники */
@media (max-width: 480px) {
    .how-item {
        flex: 0 0 100%; /* 1 в ряд */
        max-width: 100%;
    }

    .how-icon {
        width: 80px;
        height: 80px;
        background-size: 50px 50px;
    }

    .text-kak {
        font-size: 28px;
    }

    .how-item p {
        font-size: 20px;
    }
}






/* =========================
   ПОЧЕМУ МЫ (БЕЗ H3/H4)
========================= */

.why-us {
    background: #f2f4f7;
    padding: 44px 0;
}

.why-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.why-item-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 12px;
    position: relative;
    padding-left: 14px;
}

.why-item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 80%;
    background: #f7c600;
    border-radius: 2px;
}

.why-item-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

/* Адаптив */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-title {
            font-size: 36px;
    line-height: 32px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 24px;
    }
}


/* =========================
   НАШИ РАБОТЫ
========================= */

.portfolio {
    background: #ffffff;
    padding: 44px 0;
}

.portfolio-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.portfolio-item {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
}

.portfolio-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-more {
    text-align: center;
    margin-top: 40px;
}

/* кнопка уже в твоём стиле */
.btn-main {
    background: #f5c542;
    color: #000;
    width: 270px;
    height: 51px;
    border-radius: 6px;
    font-size: 25px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.btn-main:hover {
    background: #e5b800;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    user-select: none;
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* адаптив */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   ОТЗЫВЫ
========================= */

.reviews {
    background: #f2f4f7;
    padding: 80px 0;
}


.review-head
{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}



.reviews-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.review-stars {
    color: #f7c600;
    font-size: 30px;
    white-space: nowrap;
}

.review-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 14px;
    margin-top: 14px;
}

.review-name {
    font-weight: 700;
    color: #0b2e59;
    font-size: 28px;
    padding-right: 15px;
}

.reviews-action {
    text-align: center;
    margin-top: 40px;
}


.review-date {
    margin-top: 14px;
    font-size: 17px;
    color: #888;
}

/* =========================
   МОДАЛЬНОЕ ОКНО
========================= */




.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    position: relative;
    text-align: center;
}

.review-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
}

.review-modal-title {
    font-size: 30px;
    font-weight: 900;
    color: #0b2e59;
    margin-bottom: 20px;
    text-align: center;
}

/* рейтинг */
.rating-select {
    display: flex;
    gap: 8px;
    font-size: 32px;
    color: #d0d0d0;
    cursor: pointer;
    margin-bottom: 20px;
    justify-content: center;
}

.rating-select span.active {
    color: #f7c600;
}

/* поля */
.review-modal-content input,
.review-modal-content textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.review-modal-content textarea {
    resize: vertical;
    min-height: 100px;
}



/* адаптив */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.price-tabs {
  padding: 31px 0;
  background: #f4f6f8;
}

/* Заголовки */
.price-tabs h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b2e59;
  margin-bottom: 40px;
}

/* Навигация табов */
.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.tabs-nav button {
  background: #ffffff;
  border: 2px solid #e2e6ea;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  color: #0b2e59;
  font-size: 25px;
}

.tabs-nav button:hover {
  border-color: #f7c600;
}

.tabs-nav button.active {
  background: #f5c542;
    border-color: #f5c542;
  color: #000;
}

/* Контент табов */
.tabs-content {
  max-width: 900px;
  margin: 0 auto;
}

.tab {
  display: none;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  animation: fade 0.3s ease;
}

.tab.active {
  display: block;
}

.tab p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #333;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: #0b2e59;
}

.price span {
  color: #f5c542;
  font-size: 30px;
  font-weight: 900;
}

/* Таблицы */
.tab table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.tab th, .tab td {
  padding: 18px 22px;
  text-align: left;
}

.tab thead {
  background: #0b2e59;
  color: #fff;
}

.tab tbody tr {
  border-bottom: 1px solid #eee;
}

.tab tbody tr:last-child {
  border-bottom: none;
}

.tab td:last-child {
  font-weight: 700;
  color: #0b2e59;
  white-space: nowrap;
}

/* Анимация появления */
@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Адаптив */
@media (max-width: 768px) {
  .tab {
    padding: 25px;
  }
  .tab p {
    font-size: 20px;
  }
  .price {
    font-size: 28px;
  }
  .tab th, .tab td {
    padding: 9px;
    font-size: 15px;
  }
}







.faq-section {
  padding: 20px 20px;
  background: #f4f6f8;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b2e59;
  margin-bottom: 12px;
}

/* Вопрос */
.faq-question {
  width: 100%;
  background: #fff;
  border: 2px solid #e2e6ea;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #0b2e59;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-question:hover {
  border-color: #f7c600;
  background: #f8f9fb;
}

/* Ответ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  border-left: 2px solid #f7c600;
  border-right: 2px solid #f7c600;
  border-bottom: 2px solid #e2e6ea;
  border-radius: 0 0 10px 10px;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #333;
  line-height: 1.6;
}



/* =========================
   ФУТЕР
========================= */

.site-footer {
    background: linear-gradient(to right, #000e43, #215f90);
    color: #ffffff;
    padding: 60px 20px 0;
    font-size: 15px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Заголовки */
.footer-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
    
}

/* Текст */
.footer-text {
    line-height: 1.6;
    color: #d6e2f0;
    font-size: 18px;
    font-weight: 500;
}

/* Меню */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-menu a {
    color: #d6e2f0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #f7c600;
}

/* Телефон */
.footer-phone {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

/* CTA */
.footer-cta {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 12px;
}

.footer-btn {
   background: #f5c542;
    color: #000;
    width: 270px;
    height: 51px;
    border-radius: 6px;
    font-size: 25px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: .3s;
    margin-top: 10px;
    margin-bottom: 12px;
}

.footer-btn:hover {
    background: #e5b800;
}

/* Нижняя полоса */
.footer-bottom {
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #b7c9dd;
}

/* Адаптив */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Брендовый блок */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-right: 40px;
}

.footer-logo-wrap {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.footer-logo-wrap img {
    max-width: 225px;
    height: auto;
    display: block;
}

.footer-brand-text {
    font-size: 17px;
    line-height: 1.5;
    color: #d6e2f0;
    font-weight: 500;
}


/* ================== Общие ================== */
.quiz-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.quiz-modal.active { display: block; }
.quiz-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.quiz-box { position: relative; background: #fff; max-width: 520px; width: 100%; margin: auto; top: 50%; transform: translateY(-50%); padding: 30px; border-radius: 14px; z-index: 2; }
.quiz-close { position: absolute; top: 10px; right: 14px; font-size: 26px; background: none; border: none; cursor: pointer; }

/* ================== Прогресс ================== */
.quiz-progress { margin-bottom: 20px; }
.quiz-step-number { display: block; margin-bottom: 5px; font-weight: 600; }
.quiz-progress-bar { width: 100%; height: 10px; background: #eee; border-radius: 5px; position: relative; overflow: hidden; }
.quiz-progress-fill { height: 100%; width: 0; background: #f7c600; transition: width 0.4s; }
.quiz-progress-percent { position: absolute; right: 5px; top: -22px; font-size: 12px; color: #555; }

/* ================== Шаги ================== */
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-title, .quiz-step h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.quiz-options { display: grid; gap: 10px; margin-bottom: 15px; }
.quiz-options button { padding: 12px 14px; border-radius: 8px; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 15px; text-align: left; transition: .2s; }
.quiz-options button.active { border-color: #f7c600; background: #fff6cc; }
.quiz-options button:hover { border-color: #f7c600; }
.quiz-options label { display: flex; align-items: center; gap: 8px; cursor: pointer; }

/* ================== Inputs ================== */
.quiz-input, .quiz-step input[type="text"], .quiz-step input[type="tel"], .quiz-step input[type="number"] { width: 100%; padding: 12px; margin-bottom: 12px; border-radius: 8px; border: 1px solid #ccc; font-size: 15px; }
.quiz-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #555; }
.quiz-checkbox input { width: 16px; height: 16px; accent-color: #f7c600; }

/* ================== Кнопки ================== */
.quiz-actions { margin-top: 20px; display: flex; justify-content: space-between; }
.next, .finish, .back { padding: 12px 26px; border-radius: 6px; border: none; cursor: pointer; font-weight: 600; background: #f7c600; transition: .2s; }
.next:disabled, .finish:disabled { background: #ccc; cursor: not-allowed; }

/* ================== Мобильные ================== */
@media (max-width: 576px) {
    .quiz-box { max-width: 100%; height: 100%; border-radius: 0; top: 0; transform: none; padding: 20px; overflow-y: auto; }
}


.quiz-open-btn
{
        display: inline-block;
    padding: 16px 0px;
    background: #f5c542;
    color: #000;
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s ease;
    border: none;
    margin-top: 20px;
    width: 310px;
}

.quiz-open-btn:hover {
    background: #e5b800;
}

.quiz-button-wrapper {
    text-align: center;
}


/* ===== HERO GRID ===== */
.hero__wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ===== FORM ===== */
.hero-form {
    background: #ffffff;
    border-radius: 8px;
    padding: 28px 26px;
    width: 340px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin-left: 68px;
}

.hero-form__title {
    font-size: 26px;
    font-weight: 900;
    color: #082155;
    margin-bottom: 6px;
    text-align: center;
}

.hero-form__subtitle {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.hero-form button {
    width: 100%;
    padding: 16px;
    background: #f5c542;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: .2s;
}

.hero-form button:hover {
    background: #e5b800;
}

.hero-form__note {
    margin-top: 12px;
    font-size: 18px;
    color: #777;
    text-align: center;
}

/* ===== ADAPTIVE ===== */
@media (max-width: 992px) {
    .hero__wrap {
        flex-direction: column;
    }

    .hero-form {
        width: 100%;
        max-width: 420px;
    }
}

.partners {
    background: #f7f9fc;
    padding: 25px 0;
    overflow: hidden;
}

.partners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners__title {
    text-align: center;
        font-size: 40px;
    font-weight: 700;
    color: #003955;
    margin-bottom: 40px;
}

.partners__slider {
    overflow: hidden;
    position: relative;
}

.partners__track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: partners-scroll 50s linear infinite;
}

.partners__track img {
    max-height: 48px;
     
   
    transition: 0.3s ease;
}

 

/* Анимация */
@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Мобилка */
@media (max-width: 576px) {
    .partners__title {
        font-size: 18px;
    }

    .partners__track {
        gap: 30px;
    }

    .partners__track img {
        max-height: 50px;
    }
}


.kntk
 {
        background: white;
    text-align: center;
    width: 184px;
    padding: 7px 5px 7px 5px;
    border-radius: 22px;
    margin: 13px 0px 0px 42px;
    }
    
    
    
    
    
    /* ==========================
   МОБИЛЬНАЯ АДАПТАЦИЯ HERO
========================== */

@media (max-width: 768px) {

  .hero {
    padding: 32px 20px;
  }

  .hero__wrap {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
  }

  .hero h1 span {
    display: block;
  }

  .hero__subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
  }

  .hero__advantages {
    margin-bottom: 24px;
    background: #ffffffb5;
    border-radius: 21px;
  }

  .hero__advantages div {
    font-size: 18px;
    text-align: center;
  }

  .quiz-open-btn {
    width: 91%;
    font-size: 20px;
    padding: 14px;
  }

  .hero-form {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 24px 20px;
  }

  .hero-form__title {
    font-size: 33px;
  }

  .hero-form__subtitle {
    font-size: 21px;
    text-align: center;
  }

  .hero-form input {
    font-size: 23px;
    padding: 14px;
  }

  .hero-form button {
    font-size: 20px;
    padding: 14px;
  }
}

/* Маленькие телефоны */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 28px;
  }

  .hero__advantages div {
    font-size: 26px;
  }

  .quiz-open-btn {
    font-size: 24px;
  }
}




@media (max-width: 575.98px) {
  .contacts .tel-block > div {
    display: none;
  }
}



