html {
    box-sizing: border-box;
}
:root {
  --progress-bg: #0b71bf;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


* {
    max-height: 1000000px;
    outline: none
}

input {
    border: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: 400;
    margin: 0
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    border-style: none
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none;
    color: inherit
}

.footer a[href^="tel"] {
    pointer-events: none;
    color: inherit;
    text-decoration: inherit;
}


body {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    background: #eaf7ff;
    direction: ltr;
    text-align: center;
    margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f4f8, #d9e4ec);
  background-size: 300% 300%;
  animation: beigeFlow 30s ease infinite;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123456;
}

@keyframes softGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.webt-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    position: relative;
}

.icon-progress {
    width: 100%;
    height: 100%;
    position: relative;
}

.icon-progress__bg {
    stroke-width: 12px;
    stroke: var(--progress-bg);
    fill: transparent;
}

.webt-icon .progress_arrow {
    width: 60%;
    height: auto;
    opacity: 0;
    transition: 1s;
    animation: 2s ease-in-out infinite bounceUpDown;
}

@keyframes bounceUpDown {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5%);
    }
}

.webt-icon__value {
    color: var(--progress-text);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    font-size: 32px;
    font-weight: 600;
    top: 0;
    left: 0;
}
.meter-1 {
    stroke-dasharray: 800;
    stroke-dashoffset: 0;
    stroke: var(--progress-filled);
    stroke-width: 12px;
    fill: transparent;
    animation: 4s ease-out progress-1;
}

@keyframes progress-1 {
    from {
        stroke-dashoffset: 800;
    }

    to {
        stroke-dashoffset: 0;
    }
}


.wrapper {
    max-width: 1080px;
    margin: auto;
}

.header {

    background-position: 0 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7vh 0;
}

.logo {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}

.container {
    min-height: calc(100vh - 86px);
    min-height: calc(var(--vh, 100vh) - 86px);

}

.content {
  text-align: center;
  

}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #007acc;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

/* Глянцевый блик сверху */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  pointer-events: none;
}

/* Вспышка при наведении */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn:hover::after {
  left: 130%;
}

/* Анимация нажатия */
.btn:active {
  transform: scale(0.95);
}
.icon-circle i {
      color: #00cc00; /* зелёная галочка */
      font-size: 16px;
    }

.icon-circle {
      background-color: white;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 12px;
    }


.orange {
    color: #ff5300;
    font-size: 2.2em;
    text-align: center;
    margin: 1em 0;
    line-height: 1.4em;
}

.bottom {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}

.hide {
    display: none;
}

.footer {
  margin-top: 20%;

}
.footer__text {
    color: #717171;
    padding: 0 5px;
    font-size: 12px;
    line-height: 14px;
}
.footer__link {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
    font-size: 12px;
    line-height: 14px;
    color: #717171;
    text-decoration: none;
}
.btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.btn-list__link {
  display: block;
  padding: 5px;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  color: #c7c4c4;
  text-decoration: none;
  cursor: pointer;
}

.btn-list__item:not(:last-child) {
  position: relative;
}

.btn-list__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: #c7c4c4;
}


@media screen and (min-width: 1025px) and (max-height: 700px) {
    /*desktop - разные НЕ fullHD */
    .logo {
        max-width: 150px;
    }
}

@media screen and (max-width: 500px) {
    .container {
        min-height: calc(100vh - 71px);
        min-height: calc(var(--vh,100vh) - 71px);
    }
   
    .header {
        padding: 4vh 0;
    }
    .logo {
        max-width: 220px;
    }
    .btn {
        font-size: 7vmin;
        padding: 1.3vh;
        width: 90%;
    }
    .orange {
        font-size: 5.7vmin;
    }
}

@media screen and (max-width: 320px) {
    .logo {
        max-width: 170px;
    }
}


@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 1024px) and (max-height: 800px) {
    /*tab - horizontal*/
    .logo {
        max-width: 150px;
    }
  }


@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 950px) and (max-height: 500px) {
    .container {
        min-height: calc(100vh - 71px);
        min-height: calc(var(--vh,100vh) - 71px);
    }
    .header {
        padding: 6px 0;
    }   
    .logo {
        max-width: 12%;
    }
    .orange {
        font-size: 5.4vmin;
        margin: 2vh 0;
    }
    .bottom {
        position: relative;
    }
    .btn {
        font-size: 6vmin;
        padding: 10px;
    }
}
@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 950px) and (max-height: 280px) {
    .logo {
        max-width: 9%;
    }
}

@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 568px) and (max-height: 236px) {
    .logo {
        max-width: 10%;
    }

    .orange {
        font-size: 15px;
    }
    .btn {
        padding: 6px;
    }
}
