@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


:root{
  --font: 'Montserrat', system-ui, sans-serif;
  --container: 1180px;
  --pad-x: 22px;
  --radius: 14px;

  --bg-page: #f6f2e8;
  --bg-card: #ffffff;
  --bg-soft: #fff3bf;

  --text: #161616;
  --muted: rgba(22,22,22,.62);

  --yellow: #ffc400;
  --orange: #f28c00;
  --dark: #181818;

  --kiireauoost: #11a539;
  --kiireauoost-dark: #0d7d2a;

  --phone: #f28c00;
  --viber: #7360f2;
  --whatsapp: #25d366;

  --border: rgba(0,0,0,.1);
  --t: .2s;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  opacity: 0;
  animation: pageFade .45s ease forwards;
}

@keyframes pageFade{
  from{
    opacity: 0;
  }

  to{
    opacity: 1;
  }
}

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

button{
  font: inherit;
  color: inherit;
}

main{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* HEADER */

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,242,232,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo{
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.logo span{
  color: var(--yellow);
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  transition: background var(--t), transform var(--t);
}

.lang-switch:hover{
  color: var(--orange);
  transform: translateY(-1px);
}

/* HERO */

.hero{
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 42px;
  padding: 70px 0 45px;
}

.hero__content{
  max-width: 780px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade .5s ease .08s forwards;
}

.hero h1{
  max-width: 780px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
}

.hero p{
  margin-top: 22px;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero__actions{
  margin-top: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__image{
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  animation: heroImageFade .55s ease .16s forwards;
}

.hero__image img{
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  display: block;
}

.google-rating{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(23,23,23,.72);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--t), transform var(--t);
}

.google-rating:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.google-rating__stars{
  color: #fbbc04;
  font-size: 16px;
  line-height: 1;
}

.google-rating__text{
  color: rgba(23,23,23,.72);
}

@keyframes heroFade{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageFade{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 820px){
  .hero{
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 0 36px;
    gap: 34px;
  }

  .hero h1{
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero__actions{
    align-items: flex-start;
  }

  .hero__image img{
    max-height: 320px;
  }
}

/* BUTTON */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  background: var(--yellow);
  color: #171717;
  font-size: 17px;
  font-weight: 800;
  transition: background var(--t), transform var(--t);
}

.btn .iconify{
  width: 22px;
  height: 22px;
}

.btn:hover{
  background: var(--orange);
  transform: translateY(-1px);
}

/* SECTIONS */

.section{
  padding: 58px 0;
}

.section-head{
  margin-bottom: 24px;
  text-align: left;
}

.section h2,
.order h2{
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.hero p strong{
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* SERVICES */

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

.price-card{
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
}

.price-card:hover{
  border-color: rgba(242,140,0,.45);
}

.price-card__top{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  
  gap: 16px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-icon{
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  /* color: #a76500; */
  flex-shrink: 0;
}

.service-icon .iconify{
  width: 32px;
  height: 32px;
}

.price-card__title{
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.price-card__text{
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.price-card strong{
  color: var(--orange);
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.price-card__hidden{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.price-card__hidden p{
  padding: 0 0 20px 62px;
  color: rgba(22,22,22,.68);
  font-size: 14px;
}

.price-card.is-open{
  border-color: rgba(242,140,0,.6);
}

/* EXTRA SERVICES */

.extra-services{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.extra-card{
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  transition: transform var(--t), background var(--t);
}

.extra-card:hover{
  transform: translateY(-2px);
  background: #202020;
}

.extra-card__top{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.extra-card__icon{
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,196,0,.16);
  color: var(--yellow);
}

.extra-card__icon .iconify{
  width: 25px;
  height: 25px;
}

.extra-card__title{
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.extra-card__text{
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.extra-card strong{
  color: #171717;
  background: var(--yellow);
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  max-height: 30px;
}

.extra-card .price-card__hidden p{
  padding: 0 20px 20px 82px;
  color: rgba(255,255,255,.68);
}

.extra-card--distance .extra-card__icon{
  background: rgba(59,130,246,.16);
  color: #3b82f6;
}

.extra-card--distance strong{
  background: #3b82f6;
  color: #fff;
}

.extra-card--distance:hover{
  background: #1d2330;
}

/* BUYOUT */

.buyout{
  margin: 0 0 42px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  gap: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}

.buyout__content{
  max-width: 820px;
}

.buyout__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.buyout__icon img{
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.buyout h2{
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.buyout p{
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 18px;
}

.buyout .btn{
  width: fit-content;
}

.btn--secondary{
  background: var(--kiireauoost);
  color: #fff;
  text-align: center;
}

.btn--secondary:hover{
  background: var(--kiireauoost-dark);
}

@media (max-width: 700px){
  .buyout{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    margin-bottom: 32px;
  }

  .buyout__icon{
    order: -1;
    justify-content: flex-start;
  }



  .buyout h2{
    font-size: 34px;
  }

  .buyout p{
    font-size: 17px;
  }

  .buyout .btn{
    width: 100%;
  }
}

/* ORDER BLOCK */

.order{
  margin: 42px 0 80px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
}

.order p{
  margin: 18px 0 26px;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.contact-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: filter var(--t), transform var(--t);
}

.contact-btn:hover{
  filter: brightness(.94);
  transform: translateY(-1px);
}

.contact-btn .iconify{
  width: 22px;
  height: 22px;
}

.contact-btn--phone{
  background: var(--phone);
}

.contact-btn--viber{
  background: var(--viber);
}

.contact-btn--whatsapp{
  background: var(--whatsapp);
  color: #102817;
}

.order__image{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f8f8f8;
  overflow: hidden;
}

.order__image img{
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

/* FOOTER */

.footer{
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 15px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.footer-phone .iconify{
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.footer-socials a:hover{
  transform: translateY(-1px);
}

.footer-socials .iconify{
  width: 20px;
  height: 20px;
}

/* FAQ */

.faq{
  padding-top: 28px;
  padding-bottom: 70px;
}

.faq-list{
  display: grid;
  gap: 12px;
}

.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-item summary{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 54px 20px 22px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.faq-item[open] summary::after{
  content: "−";
}

.faq-item p{
  padding: 0 22px 22px;
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 560px){
  .faq{
    padding-bottom: 52px;
  }

  .faq-item summary{
    padding: 18px 50px 18px 18px;
    font-size: 17px;
  }

  .faq-item summary::after{
    right: 18px;
  }

  .faq-item p{
    padding: 0 18px 18px;
    font-size: 15px;
  }
}

/* RESPONSIVE */

@media (max-width: 900px){
  .hero{
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: flex-start;
    text-align: left;
    gap: 28px;
    padding-top: 58px;
  }

  .hero__image{
    width: 100%;
    justify-content: flex-start;
  }

  .hero__image img{
    max-height: 340px;
  }

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

  .order__image{
    order: -1;
  }
}

@media (max-width: 820px){
  .price-list,
  .extra-services{
    grid-template-columns: 1fr;
  }

  .service-icon{
    align-items: flex-start;
  }

  .price-card__top{
    gap: 6px;
  }
}

@media (max-width: 560px){
  body{
    font-size: 16px;
  }

  .header-inner{
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo{
    font-size: 20px;
  }

  .hero{
    padding-top: 48px;
  }

  .hero h1{
    font-size: 40px;
  }

  .hero__image img{
    max-height: none;
  }

  .price-card__top,
  .extra-card__top{
    grid-template-columns: auto 1fr;
  }

  .price-card strong,
  .extra-card strong{
    grid-column: 2;
    width: fit-content;
  }

  .price-card__hidden p{
    padding-left: 62px;
  }

  .extra-card .price-card__hidden p{
    padding-left: 82px;
  }

  .order{
    padding: 24px;
    margin-bottom: 64px;
  }

  .contact-buttons{
    flex-direction: column;
  }

  .contact-btn{
    width: 100%;
  }

  .footer-inner{
    flex-direction: column;
    justify-content: center;
  }
}

.floating-contacts{
  position: fixed;
  right: 24px;
  bottom: 24px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 1000;
}

.floating-contacts a{
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--accent);
  color: #fff;

  box-shadow: 0 8px 24px rgba(0,0,0,.28);

  transition: .25s;
}

.floating-contacts a:hover{
  transform: translateY(-2px) scale(1.06);
}

.floating-contacts .iconify{
  width: 28px;
  height: 28px;
}

@media (max-width:768px){

  .floating-contacts{
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-contacts a{
    width: 54px;
    height: 54px;
  }

  .floating-contacts .iconify{
    width: 26px;
    height: 26px;
  }

}

.floating-contacts a:nth-child(1){
    background:#f4b400; /* Телефон */
}

.floating-contacts a:nth-child(2){
    background:#7360f2; /* Viber */
}

.floating-contacts a:nth-child(3){
    background:#25D366; /* WhatsApp */
}

.floating-contacts a:nth-child(4){
    background:#229ED9; /* Telegram */
}

.floating-contacts a{
    color:#fff;
}