/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background-color: hsl(210, 20%, 98%);
  overflow-x: hidden;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: hsl(215, 25%, 17%);
  background-color: hsl(210, 20%, 98%);
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style-type: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border-style: none;
  border-width: 0;
  background-color: transparent;
  font-family: inherit;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.header__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: hsl(0, 0%, 100%);
}
.header__logo-desc {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,0.6);
  display: none;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.header__nav-link {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition-property: color, background-color;
  transition-duration: 200ms;
}
.header__nav-link--active {
  background-color: rgba(255,255,255,0.2);
  color: hsl(0, 0%, 100%);
}
.header__phone-wrap {
  display: none;
  align-items: center;
  gap: 12px;
}
.header__phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition-property: background-color;
  transition-duration: 200ms;
}
.header__phone-icon {
  width: 16px;
  height: 16px;
}
.header__burger {
  color: hsl(0, 0%, 100%);
  padding: 8px;
}
.header__burger svg {
  width: 24px;
  height: 24px;
}
.header__mobile-menu {
  background-color: hsl(215, 70%, 30%);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255,255,255,0.1);
  padding-bottom: 16px;
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
}
.header__mobile-link {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition-property: color, background-color;
  transition-duration: 200ms;
}
.header__mobile-link--active {
  background-color: rgba(255,255,255,0.2);
  color: hsl(0, 0%, 100%);
}
.header__mobile-phone {
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 12px;
}
.header__mobile-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,255,255,0.15);
  color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.2);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, hsla(215, 70%, 30%, 0.95), hsla(215, 70%, 30%, 0.8), hsla(215, 70%, 30%, 0.5));
}
.hero__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 128px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}
.hero__content {
  max-width: 640px;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero__title {
  font-size: 30px;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition-property: background-color, transform;
  transition-duration: 200ms;
}
.hero__btn--primary {
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
}
.hero__btn--secondary {
  background-color: rgba(255,255,255,0.15);
  color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.2);
}
.hero__btn-arrow, .hero__btn-icon {
  width: 20px;
  height: 20px;
}

/* ========== STATS ========== */
.stats {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: hsl(210, 20%, 98%);
  position: relative;
  margin-top: -64px;
  z-index: 20;
}
.stats__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stats__card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition-property: box-shadow;
  transition-duration: 200ms;
}
.stats__icon {
  width: 32px;
  height: 32px;
  color: hsl(215, 70%, 30%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}
.stats__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: hsl(215, 25%, 17%);
}
.stats__label {
  font-size: 14px;
  color: hsl(215, 10%, 45%);
  margin-top: 4px;
}

/* ========== SERVICES ========== */
.services {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 20%, 98%);
}
.services__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.services__header {
  text-align: center;
  margin-bottom: 56px;
}
.services__label {
  color: hsl(215, 70%, 30%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.services__title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 16px;
}
.services__desc {
  color: hsl(215, 10%, 45%);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.services__card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 32px;
  transition-property: box-shadow, border-color;
  transition-duration: 200ms;
}
.services__card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(210, 30%, 94%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition-property: background-color;
  transition-duration: 200ms;
}
.services__card-icon {
  width: 28px;
  height: 28px;
  color: hsl(215, 70%, 30%);
}
.services__card-title {
  font-size: 20px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 12px;
}
.services__card-desc {
  color: hsl(215, 10%, 45%);
  line-height: 1.6;
}

/* ========== STEPS ========== */
.steps {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 15%, 95%);
}
.steps__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.steps__header {
  text-align: center;
  margin-bottom: 56px;
}
.steps__label {
  color: hsl(215, 70%, 30%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.steps__title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 16px;
}
.steps__desc {
  color: hsl(215, 10%, 45%);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.steps__item {
  text-align: center;
  position: relative;
}
.steps__circle {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: hsl(0, 0%, 100%);
  border-width: 2px;
  border-style: solid;
  border-color: hsl(215, 70%, 30%);
  color: hsl(215, 70%, 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
.steps__circle-icon {
  width: 32px;
  height: 32px;
}
.steps__number {
  color: hsl(215, 70%, 30%);
  font-weight: 700;
  font-size: 14px;
}
.steps__item-title {
  font-size: 18px;
  color: hsl(215, 25%, 17%);
  margin-top: 4px;
  margin-bottom: 8px;
}
.steps__item-desc {
  color: hsl(215, 10%, 45%);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== WHY ========== */
.why {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 20%, 98%);
}
.why__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.why__label {
  color: hsl(215, 70%, 30%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.why__title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 24px;
}
.why__text {
  color: hsl(215, 10%, 45%);
  margin-bottom: 32px;
  line-height: 1.6;
}
.why__advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.why__advantage {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why__check {
  width: 20px;
  height: 20px;
  color: hsl(215, 70%, 30%);
  flex-shrink: 0;
  margin-top: 2px;
}
.why__advantage span {
  font-size: 14px;
  color: hsl(215, 25%, 17%);
}
.why__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
  font-weight: 600;
  transition-property: background-color;
  transition-duration: 200ms;
}
.why__btn-arrow {
  width: 16px;
  height: 16px;
}
.why__image-wrap {
  position: relative;
  display: none;
}
.why__image {
  border-radius: 16px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.why__badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.why__badge-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
}
.why__badge-label {
  font-size: 14px;
  font-weight: 500;
}

/* ========== CALCULATOR ========== */
.calculator {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 15%, 95%);
}
.calculator__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.calculator__header {
  text-align: center;
  margin-bottom: 48px;
}
.calculator__label {
  color: hsl(25, 95%, 53%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calculator__title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 16px;
}
.calculator__desc {
  color: hsl(215, 10%, 45%);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.calculator__card {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.calculator__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.calculator__field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
}
.calculator__position-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calculator__position-btn {
  width: 100%;
  text-align: left;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  background-color: hsl(210, 20%, 98%);
  color: hsl(215, 25%, 17%);
  transition-property: border-color, background-color, color;
  transition-duration: 200ms;
}
.calculator__position-btn--active {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  border-color: hsl(25, 95%, 53%);
}
.calculator__params {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calculator__range {
  width: 100%;
  accent-color: hsl(25, 95%, 53%);
}
.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: hsl(215, 10%, 45%);
  margin-top: 4px;
}
.calculator__select {
  width: 100%;
  background-color: hsl(210, 20%, 98%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  color: hsl(215, 25%, 17%);
  outline-style: none;
}
.calculator__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.calculator__checkbox {
  width: 20px;
  height: 20px;
  accent-color: hsl(25, 95%, 53%);
}
.calculator__count-value {
  color: hsl(25, 95%, 53%);
}
.calculator__result {
  background-color: hsl(215, 70%, 30%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.calculator__old-price {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 4px;
  text-decoration-line: line-through;
}
.calculator__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
  margin-bottom: 4px;
}
.calculator__price-note {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 4px;
}
.calculator__discount-badge {
  display: inline-block;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 9999px;
  margin-top: 4px;
}
.calculator__result-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}
.calculator__result-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition-property: background-color;
  transition-duration: 200ms;
}
.calculator__result-btn--primary {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
}
.calculator__result-btn--secondary {
  background-color: rgba(255,255,255,0.15);
  color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.2);
}
.calculator__result-icon {
  width: 16px;
  height: 16px;
}
.calculator__note {
  font-size: 12px;
  color: hsl(215, 10%, 45%);
  text-align: center;
  margin-top: 16px;
}

/* ========== REVIEWS ========== */
.reviews {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 15%, 95%);
}
.reviews__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews__label {
  color: hsl(25, 95%, 53%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reviews__title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 16px;
}
.reviews__desc {
  color: hsl(215, 10%, 45%);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.reviews__card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition-property: box-shadow;
  transition-duration: 200ms;
}
.reviews__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.reviews__star {
  width: 16px;
  height: 16px;
  color: hsl(210, 15%, 90%);
}
.reviews__star--filled {
  color: hsl(25, 95%, 53%);
}
.reviews__text {
  font-size: 14px;
  color: hsl(215, 25%, 17%);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}
.reviews__author {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(210, 15%, 90%);
  padding-top: 12px;
}
.reviews__author-name {
  font-weight: 700;
  font-size: 14px;
  color: hsl(215, 25%, 17%);
}
.reviews__author-company {
  font-size: 12px;
  color: hsl(215, 10%, 45%);
}

/* ========== CONTACT FORM ========== */
.contact-form {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 20%, 98%);
}
.contact-form__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.contact-form__wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form__header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form__label {
  color: hsl(25, 95%, 53%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-form__title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 16px;
}
.contact-form__desc {
  color: hsl(215, 10%, 45%);
}
.contact-form__form {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-form__field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: hsl(215, 25%, 17%);
  margin-bottom: 4px;
}
.contact-form__input {
  width: 100%;
  background-color: hsl(210, 20%, 98%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  color: hsl(215, 25%, 17%);
  outline-style: none;
}
.contact-form__textarea {
  width: 100%;
  background-color: hsl(210, 20%, 98%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  color: hsl(215, 25%, 17%);
  outline-style: none;
  resize: none;
}
.contact-form__submit {
  width: 100%;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition-property: background-color;
  transition-duration: 200ms;
}
.contact-form__submit-icon {
  width: 16px;
  height: 16px;
}
.contact-form__consent {
  font-size: 12px;
  color: hsl(215, 10%, 45%);
  text-align: center;
}
.contact-form__consent-link {
  color: hsl(25, 95%, 53%);
  text-decoration-line: underline;
}
.contact-form__success {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsla(25, 95%, 53%, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.contact-form__success-icon {
  width: 48px;
  height: 48px;
  color: hsl(25, 95%, 53%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.contact-form__success-title {
  font-size: 18px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
}
.contact-form__success-text {
  color: hsl(215, 10%, 45%);
}

/* ========== CTA ========== */
.cta {
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(215, 70%, 30%, 0.9);
}
.cta__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta__title {
  font-size: 24px;
  color: hsl(0, 0%, 100%);
  margin-bottom: 16px;
}
.cta__desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition-property: background-color, transform;
  transition-duration: 200ms;
}
.cta__btn--primary {
  background-color: hsl(0, 0%, 100%);
  color: hsl(215, 70%, 30%);
}
.cta__btn--secondary {
  background-color: rgba(255,255,255,0.15);
  color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.2);
}
.cta__btn-icon {
  width: 20px;
  height: 20px;
}

.page {
  background-color: hsl(210, 20%, 98%);
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 80px;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(215, 70%, 30%, 0.9);
}
.page-hero__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-hero__title {
  font-size: 30px;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
  margin-bottom: 16px;
}
.page-hero__desc {
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
  margin-bottom: 0;
}
.footer__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: hsl(0, 0%, 100%);
}
.footer__about-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer__requisites {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__requisites p {
  margin-bottom: 4px;
}
.footer__nav-title, .footer__docs-title, .footer__contacts-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-bottom: 16px;
}
.footer__nav-list, .footer__docs-list, .footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav-link, .footer__docs-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition-property: color;
  transition-duration: 200ms;
}
.footer__contacts-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}
.footer__contacts-icon {
  width: 16px;
  height: 16px;
  color: hsl(25, 95%, 53%);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contacts-link {
  color: rgba(255,255,255,0.7);
  transition-property: color;
  transition-duration: 200ms;
}
.footer__contacts-text {
  color: rgba(255,255,255,0.7);
}
.footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__bottom p {
  margin-bottom: 4px;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
  padding: 16px;
  box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.1);
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: hsl(25, 95%, 53%);
}
.cookie-banner__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cookie-banner__icon {
  width: 24px;
  height: 24px;
  color: hsl(25, 95%, 53%);
  flex-shrink: 0;
}
.cookie-banner__text {
  font-size: 14px;
  text-align: center;
  flex-grow: 1;
}
.cookie-banner__link {
  color: hsl(25, 95%, 53%);
  text-decoration-line: underline;
}
.cookie-banner__btn {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition-property: background-color;
  transition-duration: 200ms;
}

/* ========== CHATBOT ========== */
.chatbot__toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: transform;
  transition-duration: 200ms;
}
.chatbot__toggle-icon {
  width: 24px;
  height: 24px;
}
.chatbot {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 480px;
  max-height: calc(100vh - 32px);
  background-color: hsl(210, 20%, 98%);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chatbot__header {
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
}
.chatbot__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chatbot__header-info {
  flex-grow: 1;
}
.chatbot__header-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: hsl(0, 0%, 100%);
}
.chatbot__header-status {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.chatbot__close {
  color: rgba(255,255,255,0.6);
  transition-property: color;
  transition-duration: 200ms;
}
.chatbot__close-icon {
  width: 20px;
  height: 20px;
}
.chatbot__messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chatbot__message {
  display: flex;
}
.chatbot__message--bot {
  justify-content: flex-start;
}
.chatbot__message--user {
  justify-content: flex-end;
}
.chatbot__bubble {
  max-width: 85%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.chatbot__bubble--bot {
  background-color: hsl(210, 15%, 95%);
  color: hsl(215, 25%, 17%);
  border-bottom-left-radius: 4px;
}
.chatbot__bubble--user {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  border-bottom-right-radius: 4px;
}
.chatbot__input-wrap {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(210, 15%, 90%);
  padding: 12px;
  display: flex;
  gap: 8px;
}
.chatbot__input {
  flex-grow: 1;
  background-color: hsl(210, 15%, 95%);
  color: hsl(215, 25%, 17%);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
  font-size: 14px;
  outline-style: none;
  border-style: none;
}
.chatbot__send {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding: 8px;
  border-radius: 8px;
  transition-property: background-color;
  transition-duration: 200ms;
}
.chatbot__send-icon {
  width: 16px;
  height: 16px;
}

/* ========== PROMO ========== */
.promo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.promo__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30,40,55,0.5);
  backdrop-filter: blur(4px);
}
.promo__card {
  position: relative;
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  max-width: 448px;
  width: 100%;
  overflow: hidden;
}
.promo__header {
  background-color: hsl(25, 95%, 53%);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo__gift-icon {
  width: 28px;
  height: 28px;
  color: hsl(0, 0%, 100%);
}
.promo__header-title {
  font-size: 18px;
  color: hsl(0, 0%, 100%);
  flex-grow: 1;
}
.promo__close {
  color: rgba(255,255,255,0.7);
  transition-property: color;
  transition-duration: 200ms;
}
.promo__close svg {
  width: 20px;
  height: 20px;
}
.promo__body {
  padding: 24px;
  text-align: center;
}
.promo__discount-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: hsla(25, 95%, 53%, 0.1);
  margin-bottom: 16px;
}
.promo__discount-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: hsl(25, 95%, 53%);
}
.promo__title {
  font-size: 20px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
}
.promo__desc {
  color: hsl(215, 10%, 45%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.promo__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.promo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition-property: background-color;
  transition-duration: 200ms;
  flex: 1;
  min-width: 140px;
}
.promo__btn--accent {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
}
.promo__btn--primary {
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
}
.promo__btn-icon {
  width: 16px;
  height: 16px;
}
.promo__note {
  font-size: 12px;
  color: hsl(215, 10%, 45%);
  margin-top: 16px;
}

/* ========== VACANCIES SECTION ========== */
.vacancies-section {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: hsl(210, 20%, 98%);
}
.vacancies-section__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.vacancies-section__filters {
  margin-bottom: 32px;
}
.vacancies-section__search-wrap {
  position: relative;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.vacancies-section__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: hsl(215, 10%, 45%);
}
.vacancies-section__search {
  width: 100%;
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 16px;
  font-size: 14px;
  color: hsl(215, 25%, 17%);
  outline-style: none;
}
.vacancies-section__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.vacancies-section__category-btn {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  transition-property: color, background-color, border-color;
  transition-duration: 200ms;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(215, 25%, 17%);
}
.vacancies-section__category-btn--active {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  border-color: hsl(25, 95%, 53%);
}
.vacancies-section__count {
  text-align: center;
  font-size: 14px;
  color: hsl(215, 10%, 45%);
}
.vacancies-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vacancies-section__empty {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
  color: hsl(215, 10%, 45%);
}
.vacancies-section__card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  transition-property: box-shadow, border-color;
  transition-duration: 200ms;
}
.vacancies-section__card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.vacancies-section__card-title {
  font-size: 20px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
}
.vacancies-section__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: hsl(215, 10%, 45%);
}
.vacancies-section__card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vacancies-section__card-meta-icon {
  width: 16px;
  height: 16px;
}
.vacancies-section__card-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  align-self: flex-start;
  transition-property: background-color;
  transition-duration: 200ms;
}
.vacancies-section__card-apply-icon {
  width: 16px;
  height: 16px;
}
.vacancies-section__card-desc {
  color: hsl(215, 25%, 17%);
  margin-bottom: 24px;
}
.vacancies-section__card-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.vacancies-section__card-detail-title {
  font-weight: 700;
  color: hsl(215, 25%, 17%);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vacancies-section__card-detail-icon {
  width: 16px;
  height: 16px;
  color: hsl(25, 95%, 53%);
}
.vacancies-section__card-detail-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vacancies-section__card-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: hsl(215, 10%, 45%);
}
.vacancies-section__card-detail-bullet {
  color: hsl(25, 95%, 53%);
  margin-top: 4px;
}
.vacancies-section__bottom {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background-color: hsl(210, 15%, 95%);
  border-radius: 16px;
}
.vacancies-section__bottom-title {
  font-size: 20px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 12px;
}
.vacancies-section__bottom-desc {
  color: hsl(215, 10%, 45%);
  margin-bottom: 24px;
}
.vacancies-section__bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  font-weight: 600;
  transition-property: background-color;
  transition-duration: 200ms;
}
.vacancies-section__bottom-icon {
  width: 16px;
  height: 16px;
}

/* ========== BLOG SECTION ========== */
.blog-section {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: hsl(210, 20%, 98%);
}
.blog-section__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.blog-section__filters {
  margin-bottom: 32px;
}
.blog-section__search-wrap {
  position: relative;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.blog-section__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: hsl(215, 10%, 45%);
}
.blog-section__search {
  width: 100%;
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 16px;
  font-size: 14px;
  color: hsl(215, 25%, 17%);
  outline-style: none;
}
.blog-section__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.blog-section__category-btn {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(215, 25%, 17%);
  transition-property: color, background-color, border-color;
  transition-duration: 200ms;
}
.blog-section__category-btn--active {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  border-color: hsl(25, 95%, 53%);
}
.blog-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-section__card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition-property: box-shadow, border-color;
  transition-duration: 200ms;
  cursor: pointer;
}
.blog-section__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: hsl(215, 10%, 45%);
  margin-bottom: 12px;
}
.blog-section__card-meta-icon {
  width: 12px;
  height: 12px;
}
.blog-section__card-title {
  font-weight: 700;
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-section__card-excerpt {
  font-size: 14px;
  color: hsl(215, 10%, 45%);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section__card-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: hsl(25, 95%, 53%);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}
.blog-section__card-link-icon {
  width: 16px;
  height: 16px;
}
.blog-section__empty {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
  color: hsl(215, 10%, 45%);
}

/* ========== ARTICLE SECTION ========== */
.article-section {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: hsl(210, 20%, 98%);
}
.article-section__container {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.article-section__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(25, 95%, 53%);
  font-weight: 600;
  margin-bottom: 32px;
}
.article-section__back-icon {
  width: 16px;
  height: 16px;
}
.article-section__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: hsl(215, 10%, 45%);
  margin-bottom: 16px;
}
.article-section__title {
  font-size: 24px;
  font-weight: 800;
  color: hsl(215, 25%, 17%);
  margin-bottom: 24px;
  line-height: 1.3;
}
.article-section__excerpt-box {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}
.article-section__excerpt {
  color: hsl(25, 95%, 53%);
  font-weight: 600;
  font-size: 18px;
}
.article-section__content {
  color: hsl(215, 25%, 17%);
  line-height: 1.8;
}
.article-section__content p {
  margin-bottom: 16px;
}
.article-section__cta {
  margin-top: 48px;
  padding: 24px;
  background-color: hsl(210, 15%, 95%);
  border-radius: 16px;
  text-align: center;
}
.article-section__cta-title {
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
}
.article-section__cta-desc {
  color: hsl(215, 10%, 45%);
  font-size: 14px;
  margin-bottom: 16px;
}
.article-section__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
  font-weight: 600;
  transition-property: background-color;
  transition-duration: 200ms;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding-top: 64px;
  padding-bottom: 96px;
  background-color: hsl(210, 20%, 98%);
}
.about-section__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.about-section__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.about-section__intro-label {
  color: hsl(25, 95%, 53%);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-section__intro-title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-top: 8px;
  margin-bottom: 24px;
}
.about-section__intro-text {
  color: hsl(215, 10%, 45%);
  line-height: 1.6;
  margin-bottom: 16px;
}
.about-section__intro-image-wrap {
  display: none;
}
.about-section__intro-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
  width: 100%;
  object-fit: cover;
}
.about-section__values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.about-section__value-card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition-property: box-shadow;
  transition-duration: 200ms;
}
.about-section__value-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: hsla(25, 95%, 53%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.about-section__value-icon {
  width: 24px;
  height: 24px;
  color: hsl(25, 95%, 53%);
}
.about-section__value-title {
  color: hsl(215, 25%, 17%);
  margin-bottom: 8px;
}
.about-section__value-desc {
  font-size: 14px;
  color: hsl(215, 10%, 45%);
}
.about-section__principles {
  background-color: hsl(210, 15%, 95%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 64px;
}
.about-section__principles-title {
  font-size: 24px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 24px;
  text-align: center;
}
.about-section__principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.about-section__principle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-section__principle-icon {
  width: 20px;
  height: 20px;
  color: hsl(25, 95%, 53%);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-section__principle span {
  font-size: 14px;
  color: hsl(215, 25%, 17%);
}
.about-section__requisites {
  background-color: hsl(215, 70%, 30%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.about-section__requisites-title {
  font-size: 24px;
  color: hsl(0, 0%, 100%);
  margin-bottom: 16px;
}
.about-section__requisites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.about-section__requisites-grid strong {
  color: hsl(0, 0%, 100%);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: hsl(210, 20%, 98%);
}
.faq-section__container {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-section__item {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 12px;
  padding-left: 24px;
  padding-right: 24px;
  transition-property: border-color, box-shadow;
  transition-duration: 200ms;
}
.faq-section__item--open {
  border-color: hsla(25, 95%, 53%, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.faq-section__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  color: hsl(215, 25%, 17%);
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 12px;
}
.faq-section__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition-property: transform;
  transition-duration: 200ms;
}
.faq-section__item--open .faq-section__chevron {
  transform: rotate(180deg);
}
.faq-section__answer {
  padding-bottom: 20px;
  color: hsl(215, 10%, 45%);
  line-height: 1.6;
}
.faq-section__bottom {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background-color: hsl(210, 15%, 95%);
  border-radius: 16px;
}
.faq-section__bottom-title {
  font-size: 20px;
  color: hsl(215, 25%, 17%);
  margin-bottom: 12px;
}
.faq-section__bottom-desc {
  color: hsl(215, 10%, 45%);
  margin-bottom: 24px;
}
.faq-section__bottom-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.faq-section__bottom-btn {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  font-weight: 600;
  transition-property: background-color;
  transition-duration: 200ms;
  text-align: center;
}
.faq-section__bottom-btn--accent {
  background-color: hsl(25, 95%, 53%);
  color: hsl(0, 0%, 100%);
}
.faq-section__bottom-btn--primary {
  background-color: hsl(215, 70%, 30%);
  color: hsl(0, 0%, 100%);
}

/* ========== CONTACTS SECTION ========== */
.contacts-section {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: hsl(210, 20%, 98%);
}
.contacts-section__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.contacts-section__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.contacts-section__card {
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition-property: border-color, box-shadow;
  transition-duration: 200ms;
}
.contacts-section__card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: hsla(25, 95%, 53%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacts-section__card-icon {
  width: 24px;
  height: 24px;
  color: hsl(25, 95%, 53%);
}
.contacts-section__card-title {
  font-weight: 700;
  color: hsl(215, 25%, 17%);
  margin-bottom: 4px;
}
.contacts-section__card-value {
  color: hsl(25, 95%, 53%);
  font-weight: 600;
  font-size: 18px;
}
.contacts-section__card-text {
  color: hsl(215, 25%, 17%);
}
.contacts-section__card-hint {
  font-size: 14px;
  color: hsl(215, 10%, 45%);
  margin-top: 4px;
}
.contacts-section__map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(210, 15%, 90%);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
  margin-bottom: 64px;
}
.contacts-section__map {
  width: 100%;
  height: 450px;
  border-style: none;
}
.contacts-section__map-caption {
  background-color: hsl(0, 0%, 100%);
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: hsl(215, 10%, 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.contacts-section__map-icon {
  width: 16px;
  height: 16px;
  color: hsl(25, 95%, 53%);
}

/* ========== LEGAL SECTION ========== */
.legal-section {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: hsl(210, 20%, 98%);
}
.legal-section__container {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.legal-section__title {
  font-size: 30px;
  font-weight: 800;
  color: hsl(215, 25%, 17%);
  margin-bottom: 32px;
}
.legal-section__content {
  color: hsl(215, 25%, 17%);
  line-height: 1.8;
}
.legal-section__content h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-section__content p {
  margin-bottom: 12px;
}
.legal-section__content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}
.legal-section__content li {
  margin-bottom: 4px;
}
.legal-section__content a {
  color: hsl(215, 70%, 30%);
}
.legal-section__date {
  color: hsl(215, 10%, 45%);
}

/* ========== NOT FOUND ========== */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  background-color: hsl(210, 15%, 95%);
}
.not-found__title {
  font-size: 64px;
  font-weight: 800;
  color: hsl(215, 25%, 17%);
  margin-bottom: 16px;
}
.not-found__text {
  font-size: 20px;
  color: hsl(215, 10%, 45%);
  margin-bottom: 16px;
}
.not-found__link {
  color: hsl(215, 70%, 30%);
  text-decoration-line: underline;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .header__logo-desc { display: block; }
  .hero__title { font-size: 36px; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .cta__actions { flex-direction: row; }
  .cta__title { font-size: 30px; }
  .services__title { font-size: 30px; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__title { font-size: 30px; }
  .why__title { font-size: 30px; }
  .why__advantages { grid-template-columns: repeat(2, 1fr); }
  .calculator__title { font-size: 30px; }
  .calculator__result-actions { flex-direction: row; }
  .reviews__title { font-size: 30px; }
  .contact-form__row { grid-template-columns: repeat(2, 1fr); }
  .promo__actions { flex-direction: row; }
  .faq-section__bottom-actions { flex-direction: row; }
  .about-section__intro-title { font-size: 30px; }
  .about-section__values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section__principles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section__requisites-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero__title { font-size: 36px; }
  .cookie-banner__container { flex-direction: row; }
}

@media (min-width: 768px) {
  .header__phone-wrap { display: flex; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-section__cards { grid-template-columns: repeat(2, 1fr); }
  .blog-section__grid { grid-template-columns: repeat(2, 1fr); }
  .calculator__grid { grid-template-columns: repeat(2, 1fr); }
  .calculator__card { padding: 40px; }
  .vacancies-section__card-header { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .vacancies-section__card-details { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__burger { display: none; }
  .hero__title { font-size: 48px; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .steps__grid { grid-template-columns: repeat(4, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__image-wrap { display: block; }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .blog-section__grid { grid-template-columns: repeat(3, 1fr); }
  .about-section__intro { grid-template-columns: repeat(2, 1fr); }
  .about-section__intro-image-wrap { display: block; }
  .about-section__values-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
  .cta__title { font-size: 36px; }
  .services__title { font-size: 36px; }
  .steps__title { font-size: 36px; }
  .why__title { font-size: 36px; }
  .calculator__title { font-size: 36px; }
  .reviews__title { font-size: 36px; }
}

@media (min-width: 1280px) {
  .hero__title { font-size: 60px; }
}
