@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
* {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: hsl(220, 40%, 13%);
  background-color: hsl(220, 20%, 97%);
}

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

ul {
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border-width: 0;
  font-family: inherit;
  font-size: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== PAGE ===== */
.page {
  display: none;
  flex-direction: column;
  flex-grow: 1;
}

.page--active {
  display: flex;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 100%, 0.95);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: hsl(220, 20%, 88%);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-right: 16px;
}

.header__logo-smart {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: hsl(220, 42%, 38%);
  letter-spacing: -0.5px;
}

.header__logo-tech {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: hsl(200, 80%, 45%);
  letter-spacing: -0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1px;
}

.header__nav-link {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  color: hsla(220, 40%, 13%, 0.7);
  background-color: transparent;
  border-width: 0;
  border-style: none;
  cursor: pointer;
  transition-property: color, background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.header__nav-link--active {
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: hsl(220, 42%, 38%);
}

.header__phone-icon {
  width: 16px;
  height: 16px;
}

.header__mobile-toggle {
  display: none;
  background-color: transparent;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
}

.header__mobile-nav {
  display: none;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(220, 20%, 88%);
  background-color: hsl(0, 0%, 100%);
}

.header__mobile-nav--open {
  display: block;
}

.header__mobile-link {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: hsla(220, 40%, 13%, 0.7);
  margin-bottom: 4px;
}

.header__mobile-link--active {
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition-property: background-color, color, box-shadow, transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  white-space: nowrap;
}

.button--primary {
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
}

.button--hero {
  background-color: hsl(200, 80%, 45%);
  color: hsl(0, 0%, 100%);
}

.button--hero-outline {
  background-color: transparent;
  color: hsl(210, 40%, 98%);
  border-width: 2px;
  border-style: solid;
  border-color: hsla(210, 40%, 98%, 0.5);
}

.button--outline {
  background-color: transparent;
  color: hsl(220, 42%, 38%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
}

.button--lg {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 16px;
}

.button--sm {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
}

.button--full {
  width: 100%;
}

.button--icon {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-image: linear-gradient(135deg, hsl(220, 40%, 32%), hsl(220, 38%, 42%), hsl(200, 45%, 45%));
  color: hsl(210, 40%, 98%);
}

.hero-section__text-muted {
  color: hsla(210, 40%, 98%, 0.8);
}

.hero-section__text-dim {
  color: hsla(210, 40%, 98%, 0.7);
}

/* ===== SECTION ALT ===== */
.section-alt {
  background-image: linear-gradient(180deg, hsl(220, 20%, 97%), hsl(220, 25%, 94%));
}

/* ===== HEADING ===== */
.heading {
  font-family: 'Nunito', sans-serif;
}

.heading--xl {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.heading--lg {
  font-size: 36px;
  font-weight: 700;
}

.heading--md {
  font-size: 24px;
  font-weight: 700;
}

.heading--sm {
  font-size: 18px;
  font-weight: 600;
}

/* ===== CARD ===== */
.card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  box-shadow: 0 4px 24px -4px hsla(220, 42%, 38%, 0.1);
  transition-property: box-shadow, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* ===== ICON BOX ===== */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: hsla(220, 42%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.icon-box__icon {
  width: 24px;
  height: 24px;
  color: hsl(220, 42%, 38%);
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== TEXT ===== */
.text--foreground {
  color: hsl(220, 40%, 13%);
}

.text--muted {
  color: hsl(220, 15%, 46%);
}

.text--accent {
  color: hsl(200, 80%, 45%);
}

.text--sm {
  font-size: 14px;
}

.text--xs {
  font-size: 12px;
}

.text--lg {
  font-size: 18px;
}

.text--center {
  text-align: center;
}

.text--relaxed {
  line-height: 1.7;
}

/* ===== SECTION SPACING ===== */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section--sm {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* ===== INDEX HERO ===== */
.index-hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.index-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: hsla(220, 42%, 38%, 0.8);
}

.index-hero__content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.index-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

/* ===== STATS ===== */
.stats {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: hsl(0, 0%, 100%);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: hsl(220, 20%, 88%);
}

.stats__item {
  text-align: center;
}

.stats__value {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: hsl(220, 42%, 38%);
  margin-bottom: 4px;
}

.stats__label {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
}

/* ===== ADVANTAGES ===== */
.advantages__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantages__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.advantages__icon {
  width: 20px;
  height: 20px;
  color: hsl(200, 80%, 45%);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== PARTNER BOX ===== */
.partner-box {
  border-radius: 16px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.partner-box__icon {
  width: 64px;
  height: 64px;
  color: hsl(200, 80%, 45%);
  margin-bottom: 24px;
}

/* ===== TESTIMONIAL ===== */
.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial__star {
  width: 16px;
  height: 16px;
  color: hsl(42, 70%, 55%);
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial__name {
  font-weight: 600;
}

.testimonial__role {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
}

/* ===== CTA ===== */
.cta {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.cta__text {
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  background-image: linear-gradient(135deg, hsl(220, 40%, 32%), hsl(220, 38%, 42%), hsl(200, 45%, 45%));
  color: hsl(210, 40%, 98%);
}

.footer__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 14px;
  color: hsla(210, 40%, 98%, 0.7);
  line-height: 1.7;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: hsla(210, 40%, 98%, 0.7);
  padding-top: 4px;
  padding-bottom: 4px;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: hsla(210, 40%, 98%, 0.7);
  margin-bottom: 12px;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__legal {
  font-size: 14px;
  color: hsla(210, 40%, 98%, 0.5);
  margin-top: 4px;
}

.footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsla(210, 40%, 98%, 0.2);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: hsla(210, 40%, 98%, 0.5);
}

/* ===== FORM ===== */
.form__group {
  margin-bottom: 16px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: hsl(220, 40%, 13%);
}

.form__input {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
  border-radius: 8px;
  font-size: 14px;
  outline-style: none;
  transition-property: border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  background-color: hsl(0, 0%, 100%);
}

.form__textarea {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
  border-radius: 8px;
  font-size: 14px;
  outline-style: none;
  resize: vertical;
  min-height: 120px;
  background-color: hsl(0, 0%, 100%);
}

.form__checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.form__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: hsl(220, 42%, 38%);
}

.form__checkbox-label {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  line-height: 1.6;
}

/* ===== CONTACT INFO ===== */
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: hsla(220, 42%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info__text {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
}

/* ===== REQUISITES ===== */
.requisites {
  background-color: hsl(0, 0%, 100%);
  border-radius: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  box-shadow: 0 4px 24px -4px hsla(220, 42%, 38%, 0.1);
}

.requisites__item {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  margin-bottom: 6px;
}

.requisites__label {
  font-weight: 500;
  color: hsl(220, 40%, 13%);
}

/* ===== MAP ===== */
.map {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 4px 24px -4px hsla(220, 42%, 38%, 0.1);
}

.map__iframe {
  width: 100%;
  height: 100%;
  border-width: 0;
}

/* ===== FAQ ACCORDION ===== */
.accordion__item {
  background-color: hsl(0, 0%, 100%);
  border-radius: 12px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 12px;
  box-shadow: 0 4px 24px -4px hsla(220, 42%, 38%, 0.1);
  overflow: hidden;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 600;
  text-align: left;
  background-color: transparent;
  color: hsl(220, 40%, 13%);
  font-size: 15px;
}

.accordion__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.accordion__item--open .accordion__arrow {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition-property: max-height, padding-bottom;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  color: hsl(220, 15%, 46%);
  font-size: 14px;
  line-height: 1.7;
}

.accordion__item--open .accordion__content {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ===== VACANCY ===== */
.vacancy-card {
  display: block;
  width: 100%;
  text-align: left;
  background-color: hsl(0, 0%, 100%);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
  border-radius: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 16px;
  transition-property: border-color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.vacancy-card__title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: hsl(220, 40%, 13%);
  margin-bottom: 6px;
}

.vacancy-card__company {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  margin-bottom: 8px;
}

.vacancy-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: hsl(220, 15%, 46%);
}

.vacancy-card__badge {
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
}

.vacancy-card__badge--hot {
  background-color: hsla(0, 80%, 55%, 0.1);
  color: hsl(0, 80%, 45%);
  border-color: hsla(0, 80%, 55%, 0.2);
}

.vacancy-card__badge--category {
  background-color: hsla(200, 80%, 45%, 0.1);
  color: hsl(200, 80%, 45%);
  border-color: hsla(200, 80%, 45%, 0.2);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: hsla(0, 0%, 0%, 0.5);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.modal-overlay--open {
  display: flex;
}

.modal {
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
  max-width: 672px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.modal__close {
  float: right;
  background-color: transparent;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  color: hsl(220, 15%, 46%);
}

.modal__title {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 8px;
}

.modal__desc {
  color: hsl(220, 15%, 46%);
  margin-bottom: 16px;
}

.modal__meta {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(220, 20%, 88%);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: hsl(220, 20%, 88%);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.modal__meta-item {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  margin-bottom: 6px;
}

.modal__section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 20px;
}

.modal__list-item {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}

.modal__list-bullet {
  color: hsl(200, 80%, 45%);
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== BLOG ===== */
.blog-card {
  display: block;
  background-color: hsl(0, 0%, 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px -4px hsla(220, 42%, 38%, 0.1);
  transition-property: box-shadow, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.blog-card__header {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background-image: linear-gradient(135deg, hsl(220, 40%, 32%), hsl(220, 38%, 42%), hsl(200, 45%, 45%));
}

.blog-card__category {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: hsla(210, 40%, 98%, 0.8);
}

.blog-card__body {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: hsl(220, 15%, 46%);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card__author {
  font-size: 12px;
  color: hsl(220, 15%, 46%);
}

.blog-card__read {
  font-size: 14px;
  font-weight: 500;
  color: hsl(200, 80%, 45%);
}

/* ===== BLOG ARTICLE ===== */
.article__content {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.article__paragraph {
  color: hsla(220, 40%, 13%, 0.8);
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 20px;
}

.article__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(220, 20%, 88%);
}

.article__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: hsla(220, 42%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article__cta-box {
  margin-top: 48px;
  border-radius: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
}

/* ===== LEGAL PAGE ===== */
.legal__content {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.legal__section {
  margin-bottom: 32px;
}

.legal__text {
  color: hsla(220, 40%, 13%, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal__list {
  list-style-type: disc;
  padding-left: 24px;
}

.legal__list-item {
  color: hsla(220, 40%, 13%, 0.8);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal__link {
  color: hsl(200, 80%, 45%);
}

/* ===== PROCESS STEP ===== */
.process-step__number {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: hsla(200, 80%, 45%, 0.3);
  margin-bottom: 8px;
}

/* ===== PRICING ===== */
.pricing-card {
  border-radius: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.pricing-card--featured {
  background-image: linear-gradient(135deg, hsl(220, 40%, 32%), hsl(220, 38%, 42%), hsl(200, 45%, 45%));
  color: hsl(210, 40%, 98%);
  outline-width: 2px;
  outline-style: solid;
  outline-color: hsl(200, 80%, 45%);
}

.pricing-card__price {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ===== STEP BADGE ===== */
.step-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* ===== INDUSTRY TAG ===== */
.industry-tag {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 9999px;
  background-color: hsl(220, 30%, 92%);
  color: hsl(220, 42%, 38%);
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ===== FILTER BUTTON ===== */
.filter-btn {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  background-color: hsl(220, 20%, 94%);
  color: hsl(220, 15%, 46%);
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  margin-right: 8px;
  margin-bottom: 8px;
}

.filter-btn--active {
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
  box-shadow: 0 4px 12px hsla(220, 42%, 38%, 0.3);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.15);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  width: calc(100% - 32px);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
}

.cookie-banner--hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 14px;
  color: hsl(220, 15%, 46%);
  flex-grow: 1;
}

/* ===== CHAT WIDGET ===== */
.chat-widget__trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px hsla(220, 42%, 38%, 0.4);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.chat-widget__trigger--hidden {
  display: none;
}

.chat-widget__window {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 80;
  width: 340px;
  max-height: 500px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
  box-shadow: 0 8px 40px hsla(0, 0%, 0%, 0.2);
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-widget__window--open {
  display: flex;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  background-image: linear-gradient(135deg, hsl(220, 40%, 32%), hsl(220, 38%, 42%), hsl(200, 45%, 45%));
  color: hsl(210, 40%, 98%);
}

.chat-widget__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-widget__name {
  font-weight: 600;
  font-size: 14px;
}

.chat-widget__status {
  font-size: 12px;
  color: hsla(210, 40%, 98%, 0.7);
}

.chat-widget__close {
  margin-left: auto;
  background-color: transparent;
  color: hsl(210, 40%, 98%);
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 8px;
}

.chat-widget__messages {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 260px;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-widget__message {
  max-width: 80%;
  border-radius: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.chat-widget__message--bot {
  align-self: flex-start;
  background-color: hsl(220, 20%, 94%);
  color: hsl(220, 40%, 13%);
  border-bottom-left-radius: 4px;
}

.chat-widget__message--user {
  align-self: flex-end;
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
  border-bottom-right-radius: 4px;
}

.chat-widget__input-area {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(220, 20%, 88%);
}

.chat-widget__input {
  flex-grow: 1;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(220, 20%, 88%);
  border-radius: 8px;
  font-size: 14px;
  outline-style: none;
}

.chat-widget__send {
  flex-shrink: 0;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, 0.2);
  display: none;
  white-space: nowrap;
}

.toast--success {
  background-color: hsl(142, 70%, 40%);
  color: hsl(0, 0%, 100%);
}

.toast--error {
  background-color: hsl(0, 84%, 60%);
  color: hsl(0, 0%, 100%);
}

.toast--visible {
  display: block;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* ===== SERVICES FEATURE LIST ===== */
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-list__icon {
  width: 20px;
  height: 20px;
  color: hsl(200, 80%, 45%);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SERVICES PAGE NEW ===== */
.services-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsla(0, 0%, 100%, 0.1);
  border-radius: 9999px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: hsl(210, 40%, 98%);
}

.services-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-process__step {
  text-align: center;
}

.services-process__circle {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: hsl(220, 42%, 38%);
  color: hsl(210, 40%, 98%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.services-process__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: hsl(220, 40%, 13%);
  margin-bottom: 4px;
  font-size: 16px;
}

.services-process__text {
  font-size: 14px;
  color: hsl(220, 10%, 45%);
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.services-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px hsla(220, 42%, 38%, 0.08);
}

.services-card__left {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  background-image: linear-gradient(135deg, hsla(220, 42%, 38%, 0.06), hsla(200, 80%, 45%, 0.04));
}

.services-card__right {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: hsl(220, 20%, 90%);
}

.services-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.services-card__num {
  font-family: 'Nunito', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: hsla(220, 42%, 38%, 0.15);
  line-height: 1;
}

.services-card__features-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: hsl(220, 40%, 13%);
  margin-bottom: 20px;
  font-size: 15px;
}

.services-card__features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.services-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
  background-color: hsl(220, 20%, 96%);
  font-size: 14px;
  color: hsl(220, 40%, 13%);
}

.services-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: hsl(200, 80%, 45%);
  flex-shrink: 0;
  margin-top: 7px;
}

.button--rounded {
  border-radius: 9999px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== SVG ICONS (inline) ===== */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon--sm {
  width: 16px;
  height: 16px;
}

.svg-icon--md {
  width: 20px;
  height: 20px;
}

.svg-icon--lg {
  width: 24px;
  height: 24px;
}

/* ===== MARGIN / PADDING HELPERS ===== */
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.pt-0 { padding-top: 0; }
.pb-80 { padding-bottom: 80px; }

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__right {
    display: none;
  }
  .header__mobile-toggle {
    display: block;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
  .heading--xl {
    font-size: 36px;
  }
  .stats__value {
    font-size: 28px;
  }
  .services-card {
    grid-template-columns: 1fr;
  }
  .services-card__right {
    border-left-width: 0;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: hsl(220, 20%, 90%);
  }
}

@media screen and (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .heading--xl {
    font-size: 28px;
  }
  .heading--lg {
    font-size: 28px;
  }
  .heading--md {
    font-size: 20px;
  }
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .index-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .chat-widget__window {
    width: calc(100% - 32px);
    right: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .services-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-card {
    grid-template-columns: 1fr;
  }
  .services-card__right {
    border-left-width: 0;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: hsl(220, 20%, 90%);
  }
  .services-card__left {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .services-card__right {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .services-card__features-grid {
    grid-template-columns: 1fr;
  }
  .services-card__num {
    font-size: 36px;
  }
}
