.container {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  border-radius: 10px;
  background-color: #1e6ee7;
  color: #fff;
  height: 50px;
  font-weight: 500;
}

.clear-btn {
  margin-left: 7px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(103, 103, 103, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding-top: 15px;
  padding-bottom: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.header-logo {
  width: 139px;
  flex-shrink: 0;
  margin-top: 7px;
}

.header-divider {
  height: 26.73px;
  width: 1px;
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

.header-slogan {
  font-size: 12px;
  line-height: normal;
  flex-shrink: 0;
  display: none;
}

.header-nav ul {
  display: none;
}

.header-nav button {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #000;
  transition: color 0.2s;
}

.header-nav button:hover {
  color: #1e6ee7;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-fav-btn {
  width: 26px;
  height: 26px;
}

.header-fav-btn svg path {
  transition: fill 0.2s;
}

.header-fav-btn:hover svg path {
  fill: #1e6ee7;
}

.header-login-btn {
  padding: 11px 25px;

  border-radius: 10px;
  background: #1e6ee7;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #fff;
  transition: background 0.2s;
}

.header-login-btn:hover {
  background: #195fca;
}

.header-menu {
  position: relative;
  width: 33px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 15px;
}

.header-menu span,
.header-menu::before,
.header-menu::after {
  position: absolute;
  right: 0;
  background-color: #164c9e;
  height: 2px;
  border-radius: 1px;
}

.header-menu::before,
.header-menu::after {
  content: '';
  width: 100%;
  transition: all 0.2s;
}

.header-menu span {
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  scale: 1;
  transition: all 0.2s;
}

.header-menu::before {
  top: 0;
}

.header-menu::after {
  bottom: 0;
}

.header-menu.active span {
  scale: 0;
}

.header-menu.active::before {
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}

.header-menu.active::after {
  top: 50%;
  translate: 0 -50%;
  rotate: -45deg;
}

.header-menu.active + .header-menu-nav {
  display: flex;
  height: auto;
  visibility: visible;
  padding: 30px 20px;
}

.header-menu-nav {
  position: absolute;
  top: 110%;
  left: 16px;
  right: 16px;

  flex-direction: column;
  gap: 24px;

  height: 0;
  visibility: hidden;
  overflow: hidden;

  background-color: #f2f2f2;
  border-radius: 10px;
  transition: all 0.3s;
}

.header-menu-nav li {
  font-weight: 500;
  line-height: 1.35;
}

@media (min-width: 992px) {
  .header-slogan {
    display: block;
  }

  .header-divider {
    display: block;
  }

  .header-nav ul {
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .header-inner {
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 20px;
  }
  .header-nav ul {
    display: flex;
    align-items: center;

    gap: 25px;
  }

  .header-right {
    gap: 20px;
  }

  .header-login-btn {
    padding: 13px 28px;
    font-size: 14px;
  }

  .header-menu {
    display: none;
  }
}

/* ===== FEATURED WORK HEADER SECTION ===== */
.featured-header-section {
  position: relative;
  width: 100%;
}

.featured-header-bg {
  background: rgba(30, 110, 231, 0.05);
}

.featured-header-inner {
  padding-top: 40px;
  padding-bottom: 160px;
}

.featured-header-title {
  font-family: 'Golos Text';
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.featured-header-subtitle {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .featured-header-inner {
    padding-top: 80px;
    padding-bottom: 160px;
  }

  .featured-header-title {
    font-size: 38px;
    margin-bottom: 16px;
    max-width: 850px;
  }

  .featured-header-subtitle {
    max-width: 850px;
    line-height: 26.4px;
    font-size: 19px;
    margin-bottom: 38px;
  }
}

/* Verification tabs */
.verification-tabs {
  display: flex;
  height: 50px;
  max-width: fit-content;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #67676733;
  background: #fbfbfb;
  padding: 4px;
}

.verification-tab {
  height: 40px;
  border-radius: 100px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;

  line-height: 1.3;
  color: #000;

  display: flex;
  align-items: center;
  gap: 5px;

  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.verification-tab svg {
  fill: #000;
  width: 12.5px;
  height: 12.5px;
  flex-shrink: 0;
}
.verification-tab.active {
  background: #208113;
  color: #fff;
}
.verification-tab-all.active {
  background: #164c9e;
}

.verification-tab.active svg {
  fill: white;
}

/* Search bar */
.search-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 50px;
}

.search-bar {
  display: none;
  width: 100%;
  max-width: 935px;
  flex: 1;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(103, 103, 103, 0.2);
  background: #fff;
  padding-left: 20px;
  padding-right: 7px;

  position: relative;
}

.search-bar--mobile {
  display: flex;
}

.search-bar--mobile .search-icon {
  margin: 4px 0;
}

.search-bar img.search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.search-bar-input {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  flex: 1;
  height: 48px;
}

.search-bar:focus-within {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.search-bar-btn {
  margin-left: 16px;
  height: 34px;
  border-radius: 10px;

  background: #1e6ee7;
  padding: 0 28px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;

  color: #fff;

  transition: background 0.2s;
}

.search-bar-btn:hover {
  background: #195fca;
}

.search-btn {
  font-size: 14px;
}

@media (min-width: 992px) {
  .search-bar-wrapper {
    flex-direction: row;
    margin-bottom: 72px;
  }
}

@media (min-width: 768px) {
  .search-bar {
    display: flex;
  }
  .search-bar-input {
    height: 46px;
  }

  .search-bar--mobile {
    display: none;
  }

  .search-btn {
    display: none;
  }
}

/* Filter groups */
.filter-groups {
  display: none;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 20px;
}

.filter-group-label {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

.filter-group-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-chip {
  height: 38px;
  border-radius: 10px;
  padding: 0 13px;
  font-size: 14px;
  line-height: 14px;

  transition:
    background 0.2s,
    color 0.2s;
}

.filter-chip.active {
  background: #164c9e;
  font-weight: 500;
  color: #fff;
}

.filter-chip:not(.active) {
  background: rgba(30, 110, 231, 0.1);
  font-weight: 400;
  color: #000;
}

.filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 10px;
  border: 1px solid #164c9e;
  color: #164c9e;
  font-size: 14px;

  width: 100%;
  padding: 12px 0;
}

.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 50;

  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  translate: 0 -50%;

  background-color: #fff;
  border-radius: 10px;

  padding: 30px 20px;
  height: auto;
}

.modal-content__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-content .filter-groups {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.modal-content .filter-group-options {
  gap: 6px;
}

@media (min-width: 768px) {
  .filter-groups {
    display: flex;
  }

  .filter-btn {
    display: none;
  }

  .modal-overlay {
    display: none;
  }
}

/* ===== CARDS LIST SECTION ===== */
.cards-list {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 30px;
  margin-top: -130px;
}

.card {
  border-radius: 10px;
  background: transparent;

  display: flex;
  flex-direction: column;
  height: fit-content;

  transition: all 0.3s ease;
  overflow: hidden;
}

@media (hover: hover) {
  .card:hover {
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);

    transform: translateY(-10px);
  }
  .card:hover .card-content {
    padding: 20px 15px;
  }
}

.card-img-container {
  position: relative;
}

.card-img-container img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card-badge-verified {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 3.8px;
  border-radius: 6.31px;
  background: #299b1a;
  padding: 6px 12px;
}

.card-badge-verified img {
  width: 19px;
  height: 19px;
}

.card-badge-verified span {
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
}

.card-badge-photos {
  position: absolute;
  left: 14px;
  top: 53px;
  border-radius: 6.31px;
  background: rgba(22, 76, 158, 0.7);
  padding: 4px 14px;
}

.card-badge-photos span {
  font-size: 12px;
  line-height: 19.6px;
  color: #fff;
  white-space: nowrap;
}

.card-slider {
  display: flex;
  transition: transform 0.3s ease;
}

.card-slider img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
}

.card-slide {
  position: absolute;
  top: 50%;
  translate: 0 -50%;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;

  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;

  transition: all 0.3s ease;
}

.card-slide:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #ccc;
}

.card-slide--back {
  left: 14px;
}

.card-slide--forward {
  right: 14px;
  rotate: 180deg;
}

.card-likes {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
}

.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 18px;
  padding-bottom: 18px;

  transition: all 0.3s ease;
}

.card-title {
  font-family: 'Golos Text';
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.card-divider {
  margin-top: 17px;
  margin-bottom: 13px;
  height: 1px;
  width: 100%;
  background-color: #676767;
  opacity: 0.2;
}

.card-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stat-value {
  display: flex;
  height: 32px;
  width: 32px;

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

  border-radius: 5px;
  background: #f2f2f2;
  font-size: 18px;
  font-weight: 700;
  line-height: 135%;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
  white-space: nowrap;
}

.stat-dot {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 20.2px;
  color: rgba(0, 0, 0, 0.5);
}

.card-owner {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.card-owner-name {
  font-size: 14px;
  line-height: 135%;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.card.owner-active .card-owner-name {
  color: #1e6ee7;
}

.card-owner svg path {
  width: 13px;
  height: 7px;
  fill: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.card-owner svg {
  transition: all 0.3s ease;
}
.card.owner-active .card-owner svg path {
  fill: #1e6ee7;
}

.card.owner-active .card-owner svg {
  transform: rotate(180deg);
}

.card-owner-details {
  gap: 15px;
  align-items: start;

  opacity: 0;
  visibility: hidden;
  height: 0;
  margin-top: 0;
  transition: all 0.2s linear;
}

.card.owner-active .card-owner-details {
  display: flex;
  margin-top: 13px;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.card-owner-details__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.card-owner-details h5 {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  gap: 3px;
  align-items: center;
}

.card-owner-details h5 img {
  height: 18px;
  object-fit: cover;
}

.card-owner-details a {
  text-decoration: underline;
  color: #164c9e;
  line-height: 27.7px;
  font-weight: 500;
  font-size: 12px;
}

.card-owner-details p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  font-size: 11.5px;
  line-height: 135%;
  color: rgba(0, 0, 0, 0.7);
}

/* Tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 17px;
}

.card-tag {
  border-radius: 10px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
}

.card-tag.primary {
  background: rgba(30, 110, 231, 0.1);
}

.card-tag.secondary {
  background: rgba(30, 110, 231, 0.05);
}

/* Show More */
.show-more-btn {
  min-width: 275px;
  padding: 5px 0;
  margin: 0 auto;
  margin-top: 30px;

  border-radius: 10px;
  border: 1.5px solid #164c9e;
  background: #fff;

  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 39px;
  color: #164c9e;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  transition: background 0.3s;
}

@media (min-width: 992px) {
  .card-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .card-title {
    font-size: 20px;
  }
}

@media (min-width: 576px) {
  .cards-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 405px));
  }
}

.show-more-btn:hover {
  color: #fff;
  background-color: #164c9e;
}

.show-more-btn:hover svg path {
  fill: #fff;
}

/* ===== NEWS FREE SECTION ===== */
.news-free {
  border-radius: 10px;
  padding: 70px 0;
}

.news-free-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 143px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(
    90deg,
    rgba(30, 110, 231, 1) 0%,
    rgba(21, 75, 157, 1) 100%
  );
  padding: 30px 20px;
  color: #fff;
}

.news-free-badge {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 100px;
  border: 1px solid #fff;

  padding: 0 16px;
}

.news-free-badge img {
  height: 18px;
  width: 18px;
}

.news-free-badge span {
  font-weight: 600;
  white-space: nowrap;
  color: #fff;

  font-size: 14px;
  line-height: 1.3;
}

.news-free-title {
  font-family: 'Golos Text';
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
}

.news-free-remaining {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.news-free-remaining span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;

  white-space: nowrap;
}

.news-free-remaining .count-box {
  display: inline-flex;
  height: 32px;
  align-items: center;
  border-radius: 5px;
  background: rgba(242, 242, 242, 0.2);
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.news-free-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;

  border-radius: 0 0 10px 10px;
  background: rgba(30, 110, 231, 0.05);
  padding: 36px 20px;
}

.news-free-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.news-free-list li {
  display: flex;
  align-items: flex-start;
  gap: 13.1px;
}

.news-free-list li img {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}

.news-free-list li span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.news-free-divider {
  height: 116px;
  width: 1px;
  background-color: rgba(103, 103, 103, 0.2);
  display: none;
}

@media (min-width: 768px) {
  .news-free {
    padding: 100px 0;
  }

  .news-free-badge {
    padding: 0 20px;
    height: 41px;
  }

  .news-free-badge img {
    width: 22px;
    height: 22px;
  }

  .news-free-badge span {
    font-size: 18px;
    line-height: 23.4px;
  }

  .news-free-title {
    margin-bottom: 13px;
    font-size: 30px;
  }

  .news-free-remaining span,
  .news-free-remaining .count-box {
    font-size: 18px;
    line-height: 24.3px;
  }

  .news-free-bottom {
    flex-direction: row;
    gap: 20px;
  }

  .news-free-list {
    gap: 16px;
  }
}

@media (min-width: 992px) {
  .news-free-top {
    flex-direction: row;
    padding: 30px 60px;
    gap: 18px;
  }

  .news-free-divider {
    display: block;
  }

  .news-free-bottom {
    padding: 34px 60px;
    gap: 80px;
  }
}

/* ===== PARTNER INCENTIVE SECTION ===== */
.partner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(30, 110, 231, 0.05);
  padding: 40px 0;
}

.partner-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

.partner-left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 30px;
}

.partner-title {
  font-family: 'Golos Text';
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

.partner-features-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.partner-features-grid > div {
  padding-bottom: 30px;
  border-bottom: 1px solid #67676720;
}

.partner-feature-divider {
  width: 100%;
  height: 1px;
  background-color: #67676720;
  margin: 30px 0;
}

.partner-feature-divider-vertical {
  display: none;
  width: 1px;
  height: 437px;
  background-color: #67676720;
}

.partner-feature-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: all 0.2s;
  border-radius: 10px;
  padding: 0 20px;
}

.partner-feature-card.highlighted {
  background: #1e6ee7;
  padding: 24px 20px;
}

.partner-feature-card:not(.highlighted) {
  background: transparent;
}

@media (hover: hover) {
  .partner-feature-card:hover {
    background: #1e6ee7;
    color: #fff;
  }

  .partner-feature-card:hover svg path {
    fill: white;
  }
}

.partner-feature-card .feature-icon {
  height: 50px;
  width: 50px;
}

.partner-feature-card h3 {
  font-family: 'Golos Text';
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
  color: inherit;
}

.partner-feature-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.partner-feature-card.highlighted h3,
.partner-feature-card.highlighted p {
  color: #fff;
}

.partner-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex-shrink: 0;
}

.partner-stat-card {
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.partner-stat-value {
  font-family: 'Golos Text', Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1e6ee7;
}

.partner-stat-label {
  font-family: 'Golos Text', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
}

@media (min-width: 768px) {
  .partner-section {
    padding: 70px 0;
  }

  .partner-inner {
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 66px;
  }

  .partner-features-grid {
    flex-direction: row;
    gap: 24px;
  }

  .partner-features-grid > div {
    padding-bottom: 0;
    border: none;
  }

  .partner-title {
    max-width: 640px;
    line-height: 35.2px;
    font-size: 30px;
  }

  .partner-left {
    gap: 40px;
  }

  .partner-feature-card {
    max-height: 230px;
    max-width: 380px;

    gap: 30px;
    padding: 28px 17px 35px 40px;
  }

  .partner-feature-card.highlighted {
    padding: 28px 17px 35px 40px;
  }

  .partner-feature-divider {
    margin: 24px 0;
  }

  .partner-feature-divider-vertical {
    display: block;
  }

  .partner-stats {
    width: 405px;
    gap: 21px;
  }

  .partner-stat-card {
    gap: 33px;
    min-height: 168px;
    padding: 28px 40px;
  }

  .partner-stat-value {
    font-size: 50px;
    line-height: normal;
  }

  .partner-stat-label {
    font-size: 22px;
    line-height: normal;
  }
}

/* ===== how-it-works CASES SECTION ===== */
.how-it-works-section {
  width: 100%;
  background: #fff;
  padding: 70px 0;
}

.how-it-works-title {
  font-family: 'Golos Text';
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 26px;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.how-it-works-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.how-it-works-step-connector {
  height: 1px;
  width: calc(100% + 32px);
  border-top: 2px dashed rgba(30, 110, 231, 0.2);
  display: none;
}

.how-it-works-step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8.77px;
  background: #164c9e;

  font-weight: 600;
  line-height: 1;
  color: #fff;
  white-space: nowrap;

  height: 40px;
  width: 40px;
  font-size: 20px;
}

.how-it-works-step-title {
  font-family: 'Golos Text';
  font-weight: 600;

  margin-top: 26px;
  font-size: 20px;
}

.how-it-works-step-desc {
  margin-top: 20px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

@media (min-width: 768px) {
  .how-it-works-step-connector {
    display: block;
  }

  .how-it-works-section {
    padding: 100px 0;
  }

  .how-it-works-title {
    line-height: 35.2px;
    font-size: 30px;
    margin-bottom: 40px;
  }

  .how-it-works-step-title {
    margin-top: 34px;
    font-size: 22px;
  }

  .how-it-works-step-number {
    font-size: 28px;

    height: 50px;
    width: 50px;
  }

  .how-it-works-step-desc {
    margin-top: 25px;
  }
}

@media (min-width: 992px) {
  .how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .how-it-works-step-desc {
    max-width: 370px;
  }
}
/* ===== BANNER SECTION ===== */
.banner-section {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(30, 110, 231, 1) 0%,
    rgba(21, 75, 157, 1) 100%
  );
  padding: 40px 20px;

  min-height: 146px;
}

.banner-title {
  text-align: center;
  font-family: 'Golos Text';
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}

.banner-btn {
  min-height: 50px;
  margin: 0 auto;
  margin-top: 26px;

  border-radius: 10px;
  background: #fff;
  padding: 6px 20px;

  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 39px;

  color: #010205;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.banner-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.banner-btn-icon {
  margin-right: 12px;
  display: flex;
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 110, 231, 0.1);
}

.banner-btn-icon-inner {
  position: relative;
  display: block;
  height: 10px;
  width: 10px;
}

.banner-btn-icon-inner .v-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 10px;
  width: 1px;
  background: #1e6ee7;
  transform: translateX(-50%);
}

.banner-btn-icon-inner .h-line {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 10px;
  background: #1e6ee7;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .banner-section {
    padding: 50px 0;
  }

  .banner-btn {
    margin-top: 30px;
  }

  .banner-title {
    font-size: 28px;
  }
}

/* ===== SITE FOOTER ===== */
.site-footer {
  width: 100%;
  margin-top: 70px;
}

.site-footer-card {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #212121;
  color: #fff;

  padding: 32px 16px;

  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  gap: 38px;
}

.site-footer-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer-logo {
  max-width: 139px;
  flex-shrink: 0;
}

.site-footer-divider {
  height: 24px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.site-footer-slogan {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  text-wrap: nowrap;
}

.site-footer-nav ul {
  display: flex;
  align-items: center;
  column-gap: 30px;
  row-gap: 6px;
  flex-wrap: wrap;
}

.site-footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-link:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .site-footer-copyright,
  .site-footer-link {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .site-footer {
    margin-top: 100px;
    padding: 0 10px 10px;
  }

  .site-footer-card {
    border-radius: 10px;
    gap: 10px;
    flex-direction: row;
  }

  .site-footer-nav ul {
    flex-wrap: nowrap;
    gap: 20px;
  }
}

@media (min-width: 1250px) {
  .site-footer-card {
    min-height: 134px;
    padding: 50px 110px;
  }

  .site-footer-nav ul {
    gap: 60px;
  }
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content {
  flex: 1;
}
