:root {
  --color-primary: #0c47a0;
  --color-primary-hover: #223aa6;
  --color-secondary: #a5c6f6;
  --color-text-primary: #393939;
  --color-text-secondary: #939393;
  --color-white: #ffffff;
  --color-background: #f4f4f4;
  --color-gradient-start: #0c47a0;
  --color-gradient-end: #8fecfc;

  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-sm: 0.875rem;

  --radius-sm: 14px;
  --radius-md: 9px;
  --radius-lg: 30px;
  --radius-xl: 33px;

  --transition-fast: 0.22s;
  --transition-base: 0.3s;

  --shadow-inset: inset 0px 0px 34px rgba(255, 255, 255, 0.05);
  --shadow-inset-sm: inset 0px 1px 2px rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-background);
}

@font-face {
  font-family: 'Segoe UI';
  src: url('../../assets/fonts/SegoeUI-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('../../assets/fonts/SegoeUI-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('../../assets/fonts/SegoeUI.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../assets/fonts/Roboto.woff2') format('woff2');
  font-style: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url('../../assets/fonts/Nunito.woff2') format('woff2');
  font-style: normal;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  color: var(--color-text-primary);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

input,
textarea,
button,
a {
  outline: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-background);
  border-radius: 10px;
  margin: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
  border: 2px solid var(--color-background);
  transition: background var(--transition-base) ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb:active {
  background: var(--color-primary-hover);
}

::-webkit-scrollbar-corner {
  background: var(--color-background);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

body {
  padding-top: 72px;
}

/* glavnaya.html */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  background: var(--color-white);
  z-index: 1000;
}

.header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-link-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 220px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transform: translateX(-50%) translateY(-8px);
  padding: 8px;
  z-index: 100;
}

.nav-link-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: background var(--transition-base);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-background);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--color-background);
  color: var(--color-primary);
}

.dropdown-item-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: none;
}

.dropdown-item-all::after {
  content: '→';
  font-size: 16px;
  transition: transform var(--transition-base);
  display: inline-block;
}

.dropdown-item-all:hover::after {
  transform: translateX(4px);
}

.dropdown-divider {
  display: none;
}

.primary-nav {
  width: 100%;
  max-width: 1245px;
  padding: 0.781rem 0 1rem 0;
  margin: 0 auto;
}

.primary-nav-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}

.brand-logo span {
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.1px;
  font-size: 16px;
  -webkit-text-stroke: 0.3px #393939;
  white-space: nowrap;
  line-height: 1;
  font-weight: 590;
  color: #393939;
}

.brand-logo {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 7px;
}

.brand-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  height: 33px;
  background: var(--color-background);
  border-radius: var(--radius-md);
}

.nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  height: 33px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  transition: background var(--transition-base);
  position: relative;
}

.nav-link.active {
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link:hover:not(.active) {
  background: rgba(12, 71, 160, 0.1);
}

.header-contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.938rem;
  height: 36px;
}

.phone-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.375rem 0.625rem;
  gap: 0.375rem;
  height: 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  line-height: 150%;
  white-space: nowrap;
}

.phone-number svg {
  margin-bottom: 1px;
}

.cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  width: 154px;
  gap: 5px;
  height: 36px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #223aa6;
}

.cta-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.cta-button:focus:hover {
  background: #223aa6;
}

.cta-button:active {
  background: #7a8ad1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.cta-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.category-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.category-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  height: 33px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  transition: background var(--transition-base);
}

.category-link:hover {
  background: rgba(12, 71, 160, 0.1);
}

/* hero section */
.hero {
  position: relative;
  padding: 3.281rem 0 0 0;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 2.5rem;
}

.hero-title-block {
  flex: 1;
  max-width: 768px;
  position: relative;
}

.hero-title-block h1 {
  font-size: 1.6rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  transform-origin: left center;
  letter-spacing: 0.12rem;
  line-height: 1;
  margin: 0;
}

.hero-title-block .big-letter,
.hero-title-block .big-a-letter {
  font-size: 2.2rem !important;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  transform-origin: left center;
  letter-spacing: 0.12rem;
  line-height: 1;
  margin: 0;
}

.hero-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 290px;
}

.hero-description p {
  font-size: var(--font-size-md);
}

/* services */
.services-preview {
  position: relative;
  margin-bottom: 1.25rem;
}

.services-preview-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  position: relative;
  height: 348px;
}

.preview-card {
  position: relative;
  height: 348px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.preview-card-large {
  flex: 1;
  min-width: 0;
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.preview-card-narrow {
  width: 69px;
  background: var(--color-primary);
  transition: all var(--transition-base) ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.preview-card-narrow.light {
  background: var(--color-secondary);
}

.narrow-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-base) ease;
  z-index: 0;
  pointer-events: none;
}

.preview-card-narrow.expanded {
  width: 252px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.preview-card-narrow.expanded .narrow-card-bg {
  opacity: 1;
}

.preview-card-narrow.expanded::after {
  content: '';
  position: absolute;
  right: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  pointer-events: none;
}

.preview-card-content-main {
  position: absolute;
  left: 1.45%;
  bottom: 3.16%;
  right: 1.91%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
  position: absolute;
  top: 15px;
  left: 19px;
}

.tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0.625rem;
  height: 30px;
  background: rgba(2, 93, 200, 0.45);
  border: 1px solid var(--color-white);
  box-shadow: var(--shadow-inset);
  backdrop-filter: blur(36px);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  color: var(--color-white);
}

.card-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}

.info-text {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  -webkit-text-stroke: 0.3px white;
  font-size: 1.25rem;
  color: var(--color-white);
}

.card-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border-radius: 54px;
  font-weight: 500;
  -webkit-text-stroke: 0.2px #393939;
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
}

.narrow-number {
  position: absolute;
  top: 294px;
  left: 50%;
  transform: translateX(-50%);
}

.vertical-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
  font-weight: 500;
  font-size: var(--font-size-md);
  line-height: 100%;
  color: var(--color-white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
}

.preview-card-content-medium {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
  gap: 1.125rem;
  max-width: 220px;
  border-top: 2px solid rgba(255, 255, 255, 0.09);
  padding: 0.875rem;
  background: rgba(2, 75, 186, 0.26);
  box-shadow: var(--shadow-inset);
  backdrop-filter: blur(36px);
  border-radius: var(--radius-xl);
  height: 317px;
  box-shadow: var(--shadow-inset-sm);
}

.medium-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.large-icon {
  width: 73px;
  height: 73px;
  background: var(--color-white);
  border-radius: 36.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.medium-card-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
}

.medium-card-text p:nth-child(1) {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: var(--color-white);
  text-align: left;
}

.medium-card-text p:nth-child(2) {
  font-size: var(--font-size-base);
  line-height: 100%;
  color: var(--color-white);
  text-align: left;
}

.details-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 117px;
  height: 36px;
  margin-top: auto;
  gap: 4px;
  background: #ffffff;
  border-radius: 16px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.details-button:hover {
  background: #f0efef;
}

.details-button:focus {
  background: #ffffff;
  outline: none;
}

.details-button:focus:hover {
  background: #edecec;
}

.details-button:active {
  background: #f4f4f4;
}

.details-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.details-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

/* features section */
.features-list-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4.188rem;
  margin: 1.25rem 0;
}

.features-list-mobile {
  display: none;
}

.features-list-mobile-top {
  display: none;
}

.feature-item {
  font-weight: 500;
  font-size: var(--font-size-sm);
  line-height: 150%;
}

/* statistics section */
.statistics {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 4.188rem;
  margin-top: 2.5rem;
}

.statistics-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 285px;
  flex-shrink: 0;
}

.statistics-header p {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 100%;
}

.show-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  width: 152px;
  gap: 4px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 9px;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.show-more-button:hover {
  background: #223aa6;
}

.show-more-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.show-more-button:focus:hover {
  background: #223aa6;
}

.show-more-button:active {
  background: #7a8ad1;
}

.show-more-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.show-more-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.25rem;
  background: var(--color-background);
  border-radius: var(--radius-lg);
}

.stat-mobile {
  display: none;
}

.stat-desktop {
  display: inline;
}

.stat-icon svg.stat-mobile {
  display: none;
}

.stat-icon svg.stat-desktop {
  display: block;
}

.stat-card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 59px;
  height: 59px;
  background: var(--color-background);
  border: 1px solid var(--color-white);
  border-radius: 33px;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: var(--font-size-sm);
  line-height: 150%;
}

.stat-value {
  font-size: 1.5rem;
  line-height: 150%;
}

/* advantages section */
.advantages {
  position: relative;
  padding: 3.125rem 0 0 0;
}

.advantages-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.75rem;
  margin-bottom: 3.75rem;
}

.advantages-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.section-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 4.625rem;
  line-height: 100%;
}

.advantages-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 408px;
}

.advantage-point {
  font-size: var(--font-size-md);
  line-height: 100%;
}

.advantages-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 29px;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2.563rem;
  flex: 1;
  height: 637px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}

.advantage-card .card-bg-image {
  z-index: 0;
}

.advantage-card:hover .card-bg-image {
  opacity: 0;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-fast) ease;
}

.advantage-card-dark::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
}

.advantage-card-blue::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  opacity: 0;
  transition: opacity var(--transition-fast) ease;
  z-index: 1;
  pointer-events: none;
}

.advantage-card:hover {
  background: var(--color-background);
  box-shadow: none;
}

.advantage-card:nth-child(3) .card-bg-image {
  object-position: 69% center;
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card:hover .number-badge {
  border: 1px solid var(--color-text-secondary);
}

.advantage-card:hover .number-text {
  color: var(--color-text-primary);
}

.card-top,
.card-bottom {
  transition:
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.card-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
  z-index: 10;
  line-height: 101%;
  color: var(--color-white);
  transition: color var(--transition-fast) ease;
  position: relative;
}

.advantage-card:hover .card-title {
  color: var(--color-text-primary);
}

.advantage-card-dark .card-title,
.advantage-card-blue .card-title {
  margin-top: auto;
}

.card-hover-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
}

.card-hover-text {
  font-size: var(--font-size-md);
  line-height: 100%;
  color: var(--color-text-secondary);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-text {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-footer {
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-footer {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-divider {
  width: 100%;
  height: 0;
  border: 1px solid var(--color-text-secondary);
}

.card-hover-divider-grey {
  width: 100%;
  height: 0;
  border: 1px solid var(--color-text-secondary);
  margin-bottom: 1.563rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
}

.advantage-card:hover .card-hover-divider-grey {
  transform: scaleX(1);
  opacity: 1;
}

.advantage-card-gray::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle 320px at center center,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 45%,
    transparent 50%,
    transparent 100%
  );
  transition: all var(--transition-fast) ease;
  z-index: 1;
}

.advantage-card-gray:hover::before {
  opacity: 0;
}

.advantage-card-gray .card-hover-content {
  margin-bottom: auto;
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.75rem;
  width: 100%;
}

.number-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.188rem 1rem;
  width: 76px;
  height: 76px;
  border-radius: 38px;
  transition: border var(--transition-fast) ease;
}

.advantage-card-dark .number-badge,
.advantage-card-blue .number-badge {
  border: 1px solid var(--color-white);
}

.advantage-card-gray .number-badge {
  border: 1px solid var(--color-text-secondary);
}

.number-text {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  transition: color var(--transition-fast) ease;
}

.advantage-card-dark .number-text,
.advantage-card-blue .number-text {
  color: var(--color-white);
}

.advantage-card-gray .number-text {
  color: var(--color-text-primary);
}

.card-bottom {
  width: 100%;
  margin-top: auto;
  position: absolute;
  bottom: 2.563rem;
  left: 2.563rem;
}

/* services section */
.services {
  position: relative;
}

.services-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
  margin-bottom: 2.125rem;
}

.services-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.services-description {
  font-weight: 500;
  font-size: var(--font-size-md);
  margin-top: 0.625rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.services-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 46px;
}

.service-card {
  position: relative;
  flex: 1;
  height: 444px;
  background: var(--color-background);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card-wrapper {
  position: absolute;
  width: calc(100% - 62px);
  height: 370px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.875rem;
  position: absolute;
  left: 0;
  top: 0;
}

.service-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.625rem 0.188rem 0.625rem;
  height: 29px;
  border: 1px solid var(--color-text-primary);
  border-radius: 16px;
  font-size: var(--font-size-sm);
  line-height: 150%;
}

.service-card-title {
  max-width: 242px;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.service-card-title.smaller {
  font-size: 1.95rem;
  margin-bottom: 0.375rem;
}

.service-card-number {
  max-width: 242px;
  font-size: 9.875rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.service-card-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.footer-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.625rem;
  height: 29px;
  border: 1px solid var(--color-text-primary);
  border-radius: 16px;
  font-size: var(--font-size-sm);
  line-height: 150%;
}

.icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 31px;
  height: 30px;
  border: 1px solid var(--color-text-primary);
  border-radius: 63px;
}

.icon-circle svg {
  width: 23px;
  height: 24px;
  fill: var(--color-text-primary);
}

.rocket-icon svg {
  width: 26px;
  height: 27px;
  padding-top: 3px;
  fill: var(--color-text-primary);
}

.gradient-dot {
  position: absolute;
  right: 7.67%;
  top: 8.75%;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  z-index: 100;
}

.gradient-dot svg {
  display: block;
  pointer-events: none;
}

/* promo section */
.promo {
  position: relative;
  padding: 110px 0;
}

.promo-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2.5rem;
  background: #000;
}

.promo-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.688rem;
  max-width: 811px;
}

.promo-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.promo-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 113%;
  color: var(--color-white);
}

.countdown-wrapper {
  width: 100%;
  max-width: 694px;
  position: relative;
}

.countdown-label {
  font-weight: 500;
  font-size: var(--font-size-base);
  line-height: 100%;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.countdown-display {
  position: relative;
  width: 98%;
  height: 135px;
  margin-bottom: 8px;
}

.countdown-block {
  position: absolute;
  width: calc((100% - 70px) / 4);
  height: 135px;
  background: #252b38;
  border-radius: var(--radius-xl);
}

.countdown-block:nth-child(1) {
  left: 0;
}

.countdown-block:nth-child(2) {
  left: calc((100% - 63px) / 4 + 21px);
}

.countdown-block:nth-child(3) {
  left: calc((100% - 63px) / 2 + 42px);
}

.countdown-block:nth-child(4) {
  left: calc((100% - 63px) * 3 / 4 + 63px);
}

.countdown-timer {
  position: absolute;
  width: calc(100% - 6px);
  height: 110px;
  left: 14px;
  top: 15px;
  font-size: 7.5rem;
  line-height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-gradient-start) 0%,
    var(--color-gradient-end) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-labels {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.813rem;
  position: relative;
  left: 59px;
}

.countdown-unit {
  font-weight: 500;
  font-size: var(--font-size-md);
  line-height: 100%;
  color: var(--color-text-secondary);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timer-group {
  display: inline-block;
}

.timer-separator {
  margin: 0 1px;
}

.promo-text {
  max-width: 401px;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 108%;
  color: var(--color-white);
}

.promo-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 156px;
  height: 36px;
  background: #ffffff;
  border-radius: 9px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-button:hover {
  background: #f0efef;
}

.promo-button:focus {
  background: #ffffff;
  outline: none;
}

.promo-button:focus:hover {
  background: #edecec;
}

.promo-button:active {
  background: #f4f4f4;
}

.promo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.promo-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.promo-info-card {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 1.438rem 1.313rem;
  gap: 1.25rem;
  height: 256px;
  position: absolute;
  right: 40px;
  top: 152px;
  border-top: 2px solid rgba(255, 255, 255, 0.09);
  width: 340px;
  box-shadow: var(--shadow-inset-sm);
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(36px);
  border-radius: var(--radius-xl);
}

.info-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.563rem;
  width: 100%;
}

.info-card-label {
  font-size: 0.75rem;
  line-height: 100%;
  color: var(--color-white);
}

.info-card-title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  color: var(--color-white);
  max-width: 204px;
}

.info-card-description {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 100%;
  color: var(--color-white);
  max-width: 170px;
}

.big-letter {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}

.big-a-letter {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}

.service-card-title .desktop-title {
  display: block;
}

.service-card-title .mobile-title {
  display: none;
}

/* burger menu */
.burger-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 1028px) {
  body {
    padding-top: 64px;
  }
}

@media (max-width: 690px) {
  .burger-menu-icon {
    display: flex;
    margin-left: 0.875rem;
  }

  .main-navigation {
    display: none;
  }

  .primary-nav {
    padding: 0.938rem 0;
  }

  .primary-nav-inner {
    padding: 0 1.25rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-contacts .numbers {
    display: none;
  }

  body {
    padding-top: 58px;
  }
}

.burger-menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu-icon.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.burger-menu-icon span:nth-child(3) {
  width: 60%;
  transform: rotate(-180deg);
}

.burger-menu-icon.active {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base) ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--color-white);
  z-index: 1001;
  transition: left var(--transition-base) ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.065rem 1.25rem;
  border-bottom: 1px solid var(--color-background);
  min-height: 58px;
  position: relative;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  position: absolute;
  left: 1.25rem;
  margin-top: 8px;
}

.mobile-menu-section {
  position: relative;
}

.mobile-menu-section.has-submenu > .mobile-menu-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu-toggle {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--color-text-primary);
}

.mobile-menu-section.has-submenu.open
  > .mobile-menu-link
  .mobile-submenu-toggle {
  transform: rotate(45deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.open {
  max-height: 500px;
  border-top: 1px solid var(--color-background);
}

.mobile-submenu-link {
  display: block;
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: #393939;
  border-bottom: 1px solid var(--color-background);
  transition: color var(--transition-base) ease;
}

.mobile-submenu-link:hover {
  color: var(--color-primary);
}

.mobile-submenu-all {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-submenu-all::after {
  content: '→';
  font-size: 16px;
  margin-bottom: 2px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  flex: 1;
  padding: 0 1.25rem 0 1.25rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu-section p {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 0.938rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu-link {
  display: block;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base) ease;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-background);
}

.mobile-menu-link.active {
  color: var(--color-primary);
  font-weight: 500;
}

.mobile-menu-link:hover {
  color: var(--color-primary);
}

.mobile-menu-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--color-background);
}

.mobile-cta-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-base) ease;
}

.mobile-cta-button:hover {
  background: var(--color-primary-hover);
}

.more-services-mobile {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

#header-icon {
  vertical-align: middle;
  margin-left: -0.6rem;
  padding-bottom: 0.6rem;
}

.narrow-cards-scroll-wrapper {
  display: flex;
  flex-direction: row;
  gap: 11px;
}

.slider-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.938rem;
  height: 20px;
  margin-top: 1.25rem;
  order: 4;
}

.slider-dot {
  width: 20px;
  height: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  transition: background var(--transition-base) ease;
  cursor: pointer;
  outline: none;
  border: none;
}

.slider-dot.active {
  background: var(--color-primary);
}

.preview-card-narrow .preview-card-content-medium {
  opacity: 0;
  pointer-events: none;
  margin: 0 auto;
  transition: opacity 0.2s ease 0s;
}

.preview-card-narrow.expanded .preview-card-content-medium {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease 0.2s;
  transform: translateZ(0);
}

.preview-card-narrow .vertical-text,
.preview-card-narrow > .card-number {
  opacity: 1;
  transition: opacity 0.2s ease 0.15s;
}

.preview-card-narrow.expanded .vertical-text,
.preview-card-narrow.expanded > .card-number {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease 0s;
}

/* why us section */
.why-us-section {
  overflow: hidden;
}

.why-us-section .container {
  overflow: visible;
}

.section-header {
  margin-bottom: 40px;
}

.why-us-section-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  margin-bottom: 24px;
  font-size: 42px;
  max-width: 600px;
}

.why-us-section-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 500px;
  margin-left: 51%;
}

.advantages-grid {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.875rem 0 0;
  margin-left: -1.875rem;
  margin-right: -1.875rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.875rem;
}

.advantages-grid::-webkit-scrollbar {
  display: none;
}

.card-advantage:first-child {
  margin-left: 1.875rem;
}

.card-advantage:last-child {
  margin-right: 1.875rem;
}

.card-advantage {
  min-width: 300px;
  width: 300px;
  height: 359px;
  border-radius: 30px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.card-advantage:nth-child(1),
.card-advantage:nth-child(3) {
  margin-top: 31px;
}

.card-advantage-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    106.85% 106.85% at 50% -16.43%,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.11) 67.58%,
    #000000 100%
  );
  z-index: 1;
}

.advantage-content {
  position: relative;
  z-index: 2;
  width: 235px;
}

.advantage-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 16px;
}

.advantage-text {
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
}

@media (min-width: 1180px) {
  .advantages-grid {
    overflow-x: visible;
    overflow-y: visible;
    padding: 0;
    gap: 21px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }

  .card-advantage:first-child {
    margin-left: 0;
  }

  .card-advantage:last-child {
    margin-right: 0;
  }

  .card-advantage {
    min-width: 0;
    width: calc((100% - 63px) / 4);
    flex: 1 1 calc((100% - 63px) / 4);
    height: 359px;
    min-height: 359px;
  }
}

@media (min-width: 980px) and (max-width: 1080px) {
  .why-us-section-title {
    font-size: 2.4rem;
    max-width: 70%;
  }

  .why-us-section-subtitle {
    font-size: 1.1rem;
    max-width: 330px;
    margin-left: 40%;
  }

  .card-advantage {
    min-width: 280px;
    width: 280px;
    height: 320px;
    padding: 20px 16px;
  }

  .advantage-content {
    width: 100%;
  }

  .advantage-title {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .advantage-text {
    font-size: 15px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .section-header {
    margin-bottom: 32px;
  }

  .why-us-section-title {
    font-size: 2.5rem;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .why-us-section-subtitle {
    font-size: 0.938rem;
    max-width: 290px;
    margin-left: 0;
    text-align: left;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .card-advantage {
    height: 280px;
    padding: 18px 14px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }

  .advantage-content {
    width: 100%;
  }

  .advantage-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .advantage-text {
    font-size: 13px;
    line-height: 110%;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .section-header {
    margin-bottom: 28px;
  }

  .why-us-section-title {
    font-size: 2.2rem;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .why-us-section-subtitle {
    max-width: 100%;
    margin-left: 0;
    line-height: 110%;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
  }

  .card-advantage {
    height: 240px;
    padding: 16px 12px;
    border-radius: 24px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }

  .advantage-content {
    width: 100%;
  }

  .advantage-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 110%;
  }

  .advantage-text {
    font-size: 16px;
    line-height: 110%;
  }
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-fast) ease;
}

.advantage-card-dark::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.advantage-card-blue::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.advantage-card-dark:hover::before,
.advantage-card-blue:hover::before {
  opacity: 0;
}

.card-hover-footer {
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-footer {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-divider {
  width: 100%;
  height: 0;
  border: 1px solid var(--color-text-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-divider {
  transform: scaleX(1);
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 24px;
  }

  .why-us-section-title {
    font-size: 2.2rem;
    max-width: 90%;
    margin-bottom: 16px;
    line-height: 110%;
  }

  .why-us-section-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-left: 0;
    line-height: 120%;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .card-advantage {
    height: 204px;
    width: 204px;
    min-width: 204px;
    padding: 6px 0;
    border-radius: 20px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }

  .advantage-content {
    width: 100%;
    padding: 12px 18px;
  }

  .advantage-title {
    font-size: 19px;
    max-width: 200px;
    margin-bottom: 8px;
    line-height: 110%;
  }

  .card-advantage:nth-child(1) .advantage-title,
  .card-advantage:nth-child(2) .advantage-title {
    max-width: 140px;
  }

  .card-advantage:nth-child(3) .advantage-title {
    max-width: 200px;
  }

  .advantage-text {
    font-size: 14px;
    line-height: 115%;
    max-width: 180px;
  }
}

@media (min-width: 1616px) {
  .why-us-section-title {
    font-size: 50px;
    max-width: 700px;
  }

  .why-us-section-subtitle {
    font-size: 20.2px;
  }

  .card-advantage {
    height: 402.384px;
    border-radius: 33.6128px;
    padding: 26.8256px 22.2848px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 34.744px;
  }

  .advantage-content {
    width: 263.408px;
  }

  .advantage-title {
    font-size: 22.2848px;
    margin-bottom: 17.9376px;
  }

  .advantage-text {
    font-size: 17.9376px;
  }
}

/* test drive section */
.test-drive-section {
  padding: 110px 0;
}

.test-drive-section-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  color: #393939;
  margin-bottom: 40px;
}

.blue-highlight {
  color: #0c47a0;
  font-weight: 500;
  -webkit-text-stroke: 0.3px #0c47a0;
}

.test-drive-columns {
  display: flex;
  gap: 12px;
}

.left-column {
  width: 616px;
  flex-shrink: 0;
}

.offer-card {
  background: #f4f4f4;
  border-radius: 30px;
  padding: 32px 48px;
  margin-bottom: 12px;
  height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  margin-bottom: 20px;
}

.offer-title {
  font-size: 38px;
  line-height: 100%;
  color: #393939;
  margin-bottom: 20px;
}

.offer-brand {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  text-align: right;
}

.contact-form {
  background: #f4f4f4;
  border-radius: 30px;
  padding: 32px 48px;
  height: 329px;
}

.form-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  margin-bottom: 17px;
}

.form-title {
  font-size: 32px;
  line-height: 100%;
  color: #212121;
  margin-bottom: 17px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  height: 36px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 0 21px;
  font-weight: 500;
  font-size: 14px;
  color: #939393;
  box-shadow:
    inset 0px 0px 34px rgba(255, 255, 255, 0.05),
    inset 0px 2px 2px rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: #939393;
}

.button-submit {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #005bc6 0%, #7ed6ff 100%);
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.button-submit:hover {
  opacity: 0.9;
}

.button-text {
  font-size: 20px;
  color: #ffffff;
}

.send-icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.right-column {
  flex: 1;
  min-width: 0;
}

.portfolio-container {
  position: relative;
  height: 480px;
  background: #ffffff;
  border: 1.5px solid #0c47a0;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 12px;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 1.5px solid #0c47a0;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.portfolio-image.active {
  display: block;
  opacity: 1;
  position: relative;
}

.zoom-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 58px;
  height: 58px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.zoom-button:hover {
  background: #e4e4e4;
  transform: scale(1.05);
}

.zoom-icon {
  width: 32px;
  height: 32px;
}

.control-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: center;
}

.button-slider {
  width: 77px;
  height: 77px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.button-slider:hover {
  background: #e4e4e4;
}

.button-slider.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.arrow-icon {
  width: 41px;
  height: 41px;
}

.arrow-left {
  transform: rotate(180deg);
}

.status-circles {
  display: flex;
  gap: 15px;
}

.status-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s;
}

.status-circle.active {
  background: #0c47a0;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .test-drive-section {
    padding: 90px 0;
  }

  .test-drive-section-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }

  .test-drive-columns {
    gap: 16px;
  }

  .left-column {
    width: 520px;
  }

  .offer-card {
    padding: 28px 40px;
    height: 200px;
  }

  .offer-title {
    font-size: 30px;
  }

  .contact-form {
    padding: 28px 40px;
    height: 314px;
  }

  .form-title {
    font-size: 26px;
  }

  .portfolio-container {
    height: 446px;
  }

  .zoom-button {
    width: 52px;
    height: 52px;
  }

  .zoom-icon {
    width: 28px;
    height: 28px;
  }

  .button-slider {
    width: 70px;
    height: 70px;
  }

  .control-slider {
    gap: 36px;
  }
}

@media (max-width: 1028px) {
  .test-drive-section {
    padding: 70px 0 !important;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .test-drive-section-title {
    font-size: 2.5rem;
    margin-bottom: 28px;
  }

  .test-drive-columns {
    flex-direction: column;
    gap: 20px;
  }

  .left-column {
    width: 100%;
  }

  .offer-card {
    padding: 24px 32px;
    height: auto;
    min-height: 180px;
  }

  .offer-title {
    font-size: 29px;
    margin-bottom: 16px;
  }

  .contact-form {
    padding: 24px 32px;
    height: auto;
  }

  .form-title {
    font-size: 24px;
  }

  .right-column {
    width: 100%;
  }

  .portfolio-container {
    height: 380px;
  }

  .zoom-button {
    width: 48px;
    height: 48px;
  }

  .zoom-icon {
    width: 26px;
    height: 26px;
  }

  .button-slider {
    width: 65px;
    height: 65px;
  }

  .control-slider {
    gap: 32px;
  }

  .status-circle {
    width: 18px;
    height: 18px;
  }

  .status-circles {
    gap: 12px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .test-drive-section-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .test-drive-columns {
    flex-direction: column;
    gap: 16px;
  }

  .left-column {
    width: 100%;
  }

  .offer-card {
    padding: 20px 24px;
    height: auto;
    min-height: 180px;
    border-radius: 24px;
  }

  .offer-label {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .offer-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .offer-brand {
    font-size: 15px;
  }

  .contact-form {
    padding: 20px 24px;
    height: auto;
    border-radius: 24px;
  }

  .form-label {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .form-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .form-fields {
    gap: 10px;
    margin-bottom: 16px;
  }

  .form-input {
    height: 34px;
    font-size: 13px;
    padding: 0 16px;
  }

  .button-submit {
    height: 34px;
  }

  .button-text {
    font-size: 16px;
  }

  .right-column {
    width: 100%;
  }

  .portfolio-container {
    height: 350px;
    border-radius: 24px;
  }

  .zoom-button {
    width: 44px;
    height: 44px;
    top: 6px;
    right: 6px;
  }

  .zoom-icon {
    width: 24px;
    height: 24px;
  }

  .button-slider {
    width: 58px;
    height: 58px;
  }

  .control-slider {
    gap: 28px;
  }

  .status-circle {
    width: 16px;
    height: 16px;
  }

  .status-circles {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .test-drive-section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 110%;
  }

  .test-drive-columns {
    flex-direction: column;
    gap: 14px;
  }

  .left-column {
    width: 100%;
  }

  .offer-card {
    padding: 18px 20px;
    height: auto;
    min-height: 220px;
    border-radius: 20px;
  }

  .offer-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .offer-title {
    font-size: 27px;
    margin-bottom: 12px;
    line-height: 110%;
  }

  .offer-brand {
    font-size: 14px;
  }

  .contact-form {
    padding: 18px 20px;
    height: auto;
    border-radius: 20px;
  }

  .form-label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 110%;
  }

  .form-fields {
    gap: 8px;
    margin-bottom: 14px;
  }

  .form-input {
    height: 32px;
    font-size: 12px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .button-submit {
    height: 32px;
    border-radius: 6px;
  }

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

  .button-submit svg {
    width: 18px;
    height: 18px;
  }

  .right-column {
    width: 100%;
  }

  .portfolio-container {
    height: 320px;
    border-radius: 20px;
  }

  .zoom-button {
    width: 40px;
    height: 40px;
    top: 6px;
    right: 6px;
    border-radius: 20px;
  }

  .zoom-icon {
    width: 22px;
    height: 22px;
  }

  .button-slider {
    width: 52px;
    height: 52px;
    border-radius: 26px;
  }

  .button-slider svg {
    width: 20px;
    height: 18px;
  }

  .control-slider {
    gap: 24px;
  }

  .status-circle {
    width: 14px;
    height: 14px;
  }

  .status-circles {
    gap: 8px;
  }
}

@media (max-width: 370px) {
  .test-drive-section-title {
    font-size: 2.2rem;
  }

  .offer-card {
    padding: 16px 18px;
    min-height: 200px;
  }

  .offer-title {
    font-size: 24px;
  }

  .contact-form {
    padding: 16px 18px;
  }

  .form-title {
    font-size: 18px;
  }

  .button-text {
    font-size: 16px;
  }

  .portfolio-container {
    height: 280px;
  }

  .button-slider {
    width: 48px;
    height: 48px;
  }

  .control-slider {
    gap: 20px;
  }
}

.slide-out-left {
  animation: slideOutLeft 0.3s ease-in-out forwards;
}

.slide-out-right {
  animation: slideOutRight 0.3s ease-in-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.3s ease-in-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.3s ease-in-out forwards;
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.categories-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0px;
  gap: 6px 8px;
  margin-bottom: 12px;
}

.category-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.category-item:hover .category-number,
.category-item:hover .category-text {
  color: #0c47a0;
}

.category-number {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #939393;
  transition: color 0.3s;
}

.category-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #939393;
  transition: color 0.3s;
}

.category-item.active .category-number,
.category-item.active .category-text {
  color: #0c47a0;
}

@media (max-width: 630px) {
  .categories-wrapper {
    display: flex;
    margin-top: 5px;
  }
}

@media (min-width: 981px) and (max-width: 1170px) {
  .categories-wrapper {
    position: relative;
    top: -48px;
    margin-bottom: -34px;
  }
}

@media (min-width: 1170px) and (max-width: 1280px) {
  .categories-wrapper {
    position: relative;
    top: -44px;
    margin-bottom: -14px;
  }
}

@media (min-width: 1280px) and (max-width: 1660px) {
  .categories-wrapper {
    position: relative;
    top: -44px;
    margin-bottom: -14px;
  }

  .category-item {
    gap: 3px;
  }

  .categories-wrapper .category-item .category-text {
    font-size: 17.2px;
  }

  .categories-wrapper .category-item .category-number {
    margin-top: 0.9px;
    font-size: 12px;
  }
}

@media (min-width: 1660px) {
  .categories-wrapper {
    position: relative;
    top: -62px;
    margin-bottom: -21px;
    gap: 20px;
  }

  .category-item {
    gap: 5px;
  }

  .categories-wrapper .category-item .category-text {
    font-size: 22px;
  }

  .categories-wrapper .category-item .category-number {
    margin-top: -0.7px;
    font-size: 16px;
  }
}

.button-slider.active svg path {
  fill: #0c47a0;
}

.button-slider:not(.active) svg path {
  fill: #939393;
}

/* zoom modal */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.zoom-modal.active {
  display: flex;
}

.zoom-modal-content {
  max-width: 95%;
  max-height: 95%;
  position: relative;
}

.zoom-modal-image {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
}

.zoom-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 50px;
  color: #ffffff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* competitive niches section */
.competitive-niches-section {
  background-color: #ffffff;
  overflow: hidden;
}

.niches-header {
  margin-bottom: 60px;
  max-width: 800px;
}

.niches-main-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #393939;
}

.niches-highlight {
  color: #0c47a0;
}

.niches-content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
}

.niches-left {
  display: flex;
  flex-direction: column;
  gap: 250px;
}

.niches-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.niches-badge {
  font-size: 24px;
  max-width: 340px;
  font-weight: 500;
  color: #393939;
}

.niches-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 30px;
  gap: 18px;
  min-width: 370px;
}

.niches-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.niches-right {
  flex: 1;
  position: relative;
  min-height: 280px;
}

.niche-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.niche-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s 0.5s;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 21px;
}

.niche-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s 0s;
  position: relative;
  z-index: 2;
}

.niche-content.leaving {
  opacity: 0;
  visibility: visible;
  transform: translateY(100%);
  position: absolute;
  z-index: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s 0s;
}

.niche-content.entering {
  transform: translateY(-100%);
  opacity: 0;
}

.niche-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #393939;
  max-width: 460px;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.niche-image-container {
  position: relative;
  width: 460px;
  height: 256px;
  overflow: hidden;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.niche-content.active .niche-image-container {
  transform: translateY(0);
  opacity: 1;
}

.niche-content:not(.active) .niche-image-container {
  transform: translateY(0);
  opacity: 1;
}

.niche-item {
  font-size: 18px;
  font-weight: 500;
  color: #939393;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  user-select: none;
}

.niche-item.active {
  color: #393939;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.niche-image-back,
.niche-image-front {
  position: absolute;
  width: 434px;
  height: 229px;
  border-radius: 30px;
  object-fit: cover;
}

.niche-image-back {
  left: 26px;
  top: 27px;
  filter: brightness(0.65);
}

.niche-image-front {
  left: 0;
  top: 0;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .niches-header {
    margin-bottom: 50px;
  }

  .niches-main-title {
    font-size: 2.4rem !important;
    max-width: 80%;
  }

  .niches-badge {
    font-size: 1.2rem;
    max-width: 280px;
  }

  .niches-content {
    gap: 60px;
  }

  .niches-left {
    gap: 190px;
  }

  .niches-list {
    min-width: 310px;
    margin-top: 10px;
  }

  .niche-item {
    font-size: 1rem;
  }

  .niche-item.active {
    font-size: 2rem;
  }

  .niche-description {
    font-size: 1rem;
    max-width: 380px;
  }

  .niche-image-container {
    width: 360px;
    height: 200px;
  }

  .niche-image-back,
  .niche-image-front {
    width: 340px;
    height: 180px;
    border-radius: 24px;
  }

  .niche-image-back {
    left: 20px;
    top: 20px;
  }
}

@media (min-width: 720px) and (max-width: 1150px) {
  .niches-header {
    margin-bottom: 40px;
  }

  .niches-main-title {
    font-size: 2.5rem;
  }

  .niches-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .niche-content {
    align-items: flex-start;
  }

  .niches-left {
    gap: 0;
    width: 100%;
  }

  .niches-badge {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .niches-list {
    align-items: flex-start;
    min-width: auto;
    width: 100%;
    margin-top: 10px;
  }

  .main-title-h1 {
    font-size: 40px !important;
  }

  .niches-items {
    align-items: flex-start;
    gap: 14px;
  }

  .niche-item {
    font-size: 0.95rem;
  }

  .niche-item.active {
    font-size: 2rem;
  }

  .niches-right {
    width: 100%;
    min-height: 320px;
  }

  .niche-description {
    font-size: 1rem;
  }

  .niche-image-container {
    width: 100%;
    max-width: 480px;
    height: 270px;
  }

  .niche-image-back,
  .niche-image-front {
    width: 100%;
    max-width: 460px;
    height: 245px;
    border-radius: 24px;
  }

  .niche-image-back {
    left: 20px;
    top: 25px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .niches-header {
    margin-bottom: 32px;
  }

  .niches-main-title {
    font-size: 2.2rem;
  }

  .niches-content {
    flex-direction: column;
    gap: 26px;
  }

  .niche-content {
    align-items: flex-start;
  }

  .niches-left {
    gap: 0;
  }

  .niches-badge {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .niches-list {
    align-items: flex-start;
    min-width: auto;
    width: 100%;
    margin-top: 20px;
  }

  .niches-items {
    align-items: flex-start;
    gap: 10px;
  }

  .niche-item {
    font-size: 0.98rem;
  }

  .niche-item.active {
    font-size: 1.9rem;
  }

  .niches-right {
    width: 100%;
    min-height: 280px;
  }

  .niche-description {
    font-size: 1.1rem;
  }

  .niche-image-container {
    width: 100%;
    max-width: 100%;
    height: 240px;
  }

  .niche-image-back,
  .niche-image-front {
    width: calc(100% - 20px);
    height: 210px;
    border-radius: 20px;
  }

  .niche-image-back {
    left: 16px;
    top: 20px;
  }

  .niche-image-front {
    left: 0;
  }
}

@media (max-width: 480px) {
  .niches-header {
    margin-bottom: 28px;
  }

  .niches-main-title {
    font-size: 2.2rem;
    line-height: 110%;
  }

  .niches-content {
    flex-direction: column;
    gap: 28px;
  }

  .niches-left {
    gap: 0;
  }

  .niches-badge {
    font-size: 1rem;
    max-width: 100%;
    line-height: 120%;
    margin-bottom: 4px;
  }

  .niches-list {
    align-items: center;
    min-width: auto;
    width: 100%;
    margin-top: 16px;
  }

  .niches-items {
    align-items: flex-end;
    gap: 10px;
  }

  .niche-item {
    font-size: 0.9rem;
  }

  .niche-item.active {
    font-size: 1.5rem;
    line-height: 110%;
  }

  .niches-right {
    width: 100%;
    min-height: 250px;
  }

  .niche-description {
    font-size: 0.9rem;
    max-width: 100%;
    line-height: 120%;
  }

  .niche-image-container {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .niche-image-back,
  .niche-image-front {
    width: calc(100% - 16px);
    height: 175px;
    border-radius: 18px;
  }

  .niche-image-back {
    left: 12px;
    top: 16px;
  }

  .niche-image-front {
    left: 0;
  }
}

@media (min-width: 1616px) {
  .niches-main-title {
    font-size: 50px;
    max-width: 800px;
  }

  .niches-header {
    max-width: 1200px;
    margin-bottom: 100px;
  }

  .niches-left {
    gap: 260px;
  }

  .niches-badge {
    font-size: 24px;
    max-width: 280px;
  }

  .niche-item {
    font-size: 20.2px;
  }

  .niche-item.active {
    font-size: 42.016px;
  }

  .niche-description {
    font-size: 20.2px;
    max-width: 515.504px;
  }

  .niche-image-container {
    width: 515.504px;
    height: 287.2448px;
  }

  .niche-image-back,
  .niche-image-front {
    width: 486.416px;
    height: 256.944px;
    border-radius: 26px;
  }

  .team-members-row {
    gap: 23px !important;
  }

  .category-links {
    gap: 6.4px;
  }

  .niches-content {
    gap: 80px;
  }

  .niches-list {
    min-width: 444px;
    min-height: 400px;
    margin-top: 15px;
  }

  .niche-image-back {
    left: 22px;
    top: 25px;
  }
}

/* business improvement section */
.business-improvement-section {
  overflow: hidden;
}

.business-improvement-frame {
  position: relative;
  width: 100%;
  min-width: 1312px;
  height: 543px;
  margin: 0 auto;
}

.business-improvement-frame .divider-line {
  position: absolute;
  width: 1298px;
  height: 0px;
  left: 13px;
  top: 431px;
  border: 2px solid #dcdcdc;
}

.process-header-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  position: absolute;
  width: 1312px;
  height: 264px;
  left: 0px;
  top: 0px;
}

.main-title-h1 {
  width: 1312px;
  height: 148px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.header-text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 434px;
  width: 1312px;
  height: 96px;
  order: 1;
}

.step-badge-indicator {
  width: 82px;
  height: 41px;
  display: flex;
  gap: 34px;
  position: relative;
}

.blue-badge {
  display: flex;
}

.blue-badge svg:nth-child(1) {
  margin-right: -9px;
}

.description-text-large {
  width: 677px;
  height: 96px;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  color: #393939;
  order: 1;
}

.steps-container-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 107px;
  position: absolute;
  width: 1312px;
  left: 0px;
  top: 312px;
}

.step-card-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 255px;
}

.step-card-item.card-02 {
  order: 1;
}

.step-card-item.card-03 {
  order: 2;
}

.step-card-item.card-04 {
  order: 3;
}

.step-heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 255px;
  height: 76px;
}

.number-badge-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 19px 16px;
  gap: 10px;
  width: 77.21px;
  height: 76px;
  border: 1px solid #939393;
  border-radius: 38px;
}

.badge-number-text {
  width: 23px;
  height: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.step-title-h5 {
  width: 158px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.step-title-h5.title-01 {
  height: 20px;
}

.step-title-h5.title-02,
.step-title-h5.title-03,
.step-title-h5.title-04 {
  height: 40px;
}

.step-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  width: 255px;
  order: 1;
  flex-grow: 0;
}

.ellipse-indicator-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  gap: 10px;
  margin-top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 13px;
}

.ellipse-dot {
  width: 16px;
  height: 16px;
  background: #0c47a0;
  border-radius: 50%;
}

.step-description-text {
  width: 255px;
  font-size: 16px;
  line-height: 100%;
  color: #393939;
}

.step-description-text.desc-01 {
  background: linear-gradient(90deg, #434343 0%, #0d61de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-badge-indicator {
  margin-bottom: 6px;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .main-title-h1 {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 768px) {
  .business-improvement-frame {
    position: relative;
    width: 100%;
    min-width: auto;
    height: auto;
    margin: 0;
  }

  .business-improvement-frame .divider-line {
    display: none;
  }

  .steps-container-grid::before {
    content: '';
    position: absolute;
    width: calc(230px * 4 + 24px * 3);
    height: 0px;
    left: 2.1rem;
    bottom: 125px;
    border: 1.5px solid #dcdcdc;
    pointer-events: none;
    z-index: 0;
  }

  .steps-container-grid {
    position: relative;
    padding-bottom: 32px;
  }

  .process-header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    gap: 24px;
    align-items: flex-start;
  }

  .main-title-h1 {
    width: 100%;
    height: auto;
    font-size: clamp(2.08rem, 2.08rem, 48px);
    line-height: 110%;
  }

  .header-text-container {
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .step-badge-indicator {
    width: auto;
    height: 32px;
    gap: 20px;
    order: 0;
  }

  .header-text-container:nth-child(2) {
    align-items: flex-end;
  }

  .step-badge-indicator svg {
    width: 15px;
    height: 32px;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -7px;
  }

  .description-text-large {
    width: 100%;
    height: auto;
    font-size: clamp(13.3px, 4.1vw, 22px);
    line-height: 130%;
    order: 1;
  }

  .steps-container-grid {
    position: relative;
    width: calc(100% + 3.75rem);
    height: auto;
    left: 0;
    top: 0;
    scrollbar-width: none;
    margin-top: 32px;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.875rem 16px 1.875rem;
    margin-left: -1.875rem;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }

  .steps-container-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card-item {
    min-width: 240px;
    width: 240px;
    height: auto;
    gap: 20px;
    flex-shrink: 0;
  }

  .step-card-item.card-01,
  .step-card-item.card-02,
  .step-card-item.card-03,
  .step-card-item.card-04 {
    height: auto;
  }

  .business-improvement-section {
    padding: 70px 0;
  }

  .step-heading-wrapper {
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .number-badge-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 14px 12px;
    border-radius: 28px;
  }

  .badge-number-text {
    width: auto;
    height: auto;
    font-size: 16px;
  }

  .step-title-h5 {
    width: auto;
    flex: 1;
    font-size: 18px;
    line-height: 120%;
  }

  .step-title-h5.title-01,
  .step-title-h5.title-02,
  .step-title-h5.title-03,
  .step-title-h5.title-04 {
    height: auto;
  }

  .step-content-wrapper {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .step-content-wrapper.content-01,
  .step-content-wrapper.content-02,
  .step-content-wrapper.content-03,
  .step-content-wrapper.content-04 {
    height: auto;
  }

  .ellipse-indicator-container {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    padding: 3px;
    border-radius: 10px;
    margin-top: 0;
  }

  .ellipse-dot {
    width: 12px;
    height: 12px;
    z-index: 10;
  }

  .step-description-text {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 140%;
  }

  .step-description-text.desc-01,
  .step-description-text.desc-02,
  .step-description-text.desc-03,
  .step-description-text.desc-04 {
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .business-improvement-frame {
    position: relative;
    width: 100%;
    min-width: auto;
    height: auto;
    margin: 0;
  }

  .business-improvement-frame .divider-line {
    display: none;
  }

  .business-improvement-section {
    padding: 70px 0;
  }

  .steps-container-grid::before {
    content: '';
    position: absolute;
    width: calc(280px * 4 + 24px * 3);
    height: 0px;
    left: 2.1rem;
    bottom: 147px;
    border: 1.5px solid #dcdcdc;
    pointer-events: none;
    z-index: 0;
  }

  .steps-container-grid {
    position: relative;
    width: calc(100% + 3.75rem);
    height: auto;
    left: 0;
    top: 0;
    margin-top: 48px;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.875rem 16px 1.875rem;
    margin-left: -1.875rem;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }

  .process-header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    gap: 32px;
    align-items: flex-start;
  }

  .main-title-h1 {
    width: 100%;
    height: auto;
    font-size: clamp(48px, 6vw, 64px);
    line-height: 110%;
  }

  .header-text-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    height: auto;
    align-items: flex-end;
  }

  .step-badge-indicator {
    display: none;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -8px;
  }

  .description-text-large {
    width: 100%;
    max-width: 600px;
    height: auto;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 120%;
    order: 0;
  }

  .steps-container-grid {
    position: relative;
    height: auto;
    left: 0;
    top: 0;
    margin-top: 48px;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
    flex-wrap: nowrap;
  }

  .steps-container-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card-item {
    min-width: 280px;
    width: 280px;
    height: auto;
    gap: 24px;
    flex-shrink: 0;
  }

  .step-card-item.card-01,
  .step-card-item.card-02,
  .step-card-item.card-03,
  .step-card-item.card-04 {
    height: auto;
  }

  .step-heading-wrapper {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .number-badge-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    padding: 16px 14px;
    border-radius: 32px;
  }

  .badge-number-text {
    width: auto;
    height: auto;
    font-size: 18px;
  }

  .step-title-h5 {
    width: auto;
    flex: 1;
    font-size: 18px;
    line-height: 120%;
  }

  .step-content-wrapper.content-01,
  .step-content-wrapper.content-02,
  .step-content-wrapper.content-03,
  .step-content-wrapper.content-04 {
    height: auto;
  }

  .ellipse-indicator-container {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    padding: 4px;
    border-radius: 12px;
    margin-top: 0;
  }

  .ellipse-dot {
    width: 14px;
    height: 14px;
    z-index: 10;
  }

  .step-description-text {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 140%;
  }

  .step-description-text.desc-01,
  .step-description-text.desc-02,
  .step-description-text.desc-03,
  .step-description-text.desc-04 {
    height: auto;
  }
}

@media (min-width: 1120px) {
  .header-text-container {
    justify-content: flex-end;
  }

  .step-badge-indicator {
    display: none;
  }
}

@media (min-width: 1120px) and (max-width: 1616px) {
  .business-improvement-frame {
    min-width: 1100px;
    height: 475px;
  }

  .business-improvement-frame .divider-line {
    width: 1160px;
    left: 11px;
    top: 361px;
  }

  .process-header-wrapper {
    gap: 17px;
    width: 1100px;
    height: 221px;
  }

  .main-title-h1 {
    width: 1100px;
    height: 124px;
  }

  .business-improvement-section {
    padding: 90px 0;
  }

  .header-text-container {
    gap: 364px;
    width: 1100px;
    height: 80px;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -8px;
  }

  .description-text-large {
    width: 567px;
    height: 80px;
    font-size: 22px;
  }

  .steps-container-grid {
    gap: 110px;
    width: 1200px;
    top: 261px;
  }

  .step-card-item {
    gap: 25px;
    width: 214px;
  }

  .step-heading-wrapper {
    gap: 17px;
    width: 214px;
    height: 64px;
  }

  .number-badge-circle {
    padding: 16px 13px;
    width: 65px;
    height: 64px;
    border-radius: 32px;
  }

  .badge-number-text {
    width: 19px;
    height: 17px;
    font-size: 17px;
  }

  .step-title-h5 {
    width: 136px;
    font-size: 18px;
  }

  .step-title-h5.title-01 {
    height: 17px;
  }

  .step-title-h5.title-02,
  .step-title-h5.title-03,
  .step-title-h5.title-04 {
    height: 34px;
  }

  .step-content-wrapper {
    gap: 29px;
    width: 214px;
  }

  .ellipse-indicator-container {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    margin-top: 2px;
  }

  .ellipse-dot {
    width: 13px;
    height: 13px;
  }

  .step-description-text {
    width: 214px;
    font-size: 14px;
  }
}

@media (min-width: 1616px) {
  .business-improvement-section {
    padding: 110px 0;
  }
}

/* case showcase section */
.case-studies-showcase {
  position: relative;
  width: 100%;
  background: #fff;
}

.showcase-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 545px;
  margin-bottom: 61px;
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.portfolio-visual img.active {
  display: block;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.showcase-image.active {
  display: block;
  opacity: 1;
  position: relative;
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 455px;
}

.showcase-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.showcase-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
}

.header-actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
}

.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  gap: 4px;
  height: 34px;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #223aa6;
}

.btn-primary:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.btn-primary:focus:hover {
  background: #223aa6;
}

.btn-primary:active {
  background: #7a8ad1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.btn-primary:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.btn-primary span {
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
}

.btn-secondary {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  height: 33px;
  border: 1px solid #0c47a0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #0c47a0;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: rgba(34, 57, 165, 0.08);
}

.btn-secondary:focus {
  background: transparent;
  outline: none;
}

.btn-secondary:focus:hover {
  background: rgba(34, 57, 165, 0.08);
}

.btn-secondary:active {
  background: rgba(131, 151, 242, 0.37);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(122, 138, 209, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.btn-secondary:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.btn-secondary span {
  font-size: 14px;
  line-height: 150%;
  color: #393939;
}

.case-presentation-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  position: relative;
}

.portfolio-visual {
  position: relative;
  width: 60%;
  height: 378px;
  background: linear-gradient(135deg, #e8f4ff 0%, #c5e1ff 100%);
  border: 1.5px solid #0c47a0;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

.magnifier-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 34px;
  cursor: pointer;
}

.case-details-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
  min-width: 0;
}

.case-heading {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
  text-align: left;
}

.case-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.description-paragraph {
  font-size: 18px;
  line-height: 100%;
  color: #939393;
}

.navigation-slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 44px;
}

.slider-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  cursor: pointer;
  border: none;
}

.progress-indicators {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.indicator-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s ease;
  cursor: pointer;
}

.indicator-dot.active {
  background: #0c47a0;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .case-studies-showcase {
    padding: 90px 0;
  }

  .showcase-header {
    gap: 260px;
    margin-bottom: 50px;
  }

  .header-content {
    width: 380px;
    gap: 18px;
  }

  .showcase-title {
    font-size: 2.4rem;
  }

  .showcase-subtitle {
    font-size: 0.938rem;
  }

  .case-presentation-card {
    gap: 40px;
  }

  .portfolio-visual {
    width: 58%;
    height: 320px;
    border-radius: 26px;
  }

  .magnifier-icon {
    width: 46px;
    height: 46px;
    border-radius: 23px;
  }

  .case-details-text {
    gap: 28px;
  }

  .case-heading {
    font-size: 18px;
  }

  .description-paragraph {
    font-size: 16px;
  }

  .navigation-slider {
    gap: 36px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .slider-btn svg {
    width: 20px;
    height: 18px;
  }

  .indicator-dot {
    width: 18px;
    height: 18px;
  }

  .progress-indicators {
    gap: 12px;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .showcase-header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .header-content {
    width: 100%;
    gap: 16px;
  }

  .showcase-title {
    font-size: 2.5rem;
  }

  .showcase-subtitle {
    font-size: 1rem;
  }

  .header-actions {
    gap: 8px;
  }

  .case-presentation-card {
    flex-direction: column;
    gap: 32px;
  }

  .portfolio-visual {
    width: 100%;
    max-width: 100%;
    height: 320px;
    border-radius: 24px;
  }

  .magnifier-icon {
    width: 42px;
    height: 42px;
    border-radius: 21px;
  }

  .magnifier-icon svg {
    width: 22px;
    height: 22px;
  }

  .case-details-text {
    max-width: 340px;
    gap: 24px;
  }

  .case-presentation-card {
    align-items: flex-start;
  }

  .case-heading {
    font-size: 18.5px;
  }

  .description-paragraph {
    font-size: 16px;
    line-height: 110%;
  }

  .navigation-slider {
    gap: 32px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }

  .slider-btn svg {
    width: 19px;
    height: 17px;
  }

  .indicator-dot {
    width: 16px;
    height: 16px;
  }

  .progress-indicators {
    gap: 10px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .showcase-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .header-content {
    width: 100%;
    gap: 14px;
  }

  .showcase-title {
    font-size: 2.2rem;
  }

  .showcase-subtitle {
    font-size: 0.9rem;
    line-height: 110%;
  }

  .header-actions {
    gap: 6px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    height: 32px;
    padding: 5px 8px;
    border-radius: 9px;
  }

  .btn-primary span,
  .btn-secondary span {
    font-size: 14.5px;
  }

  .case-presentation-card {
    flex-direction: column;
    gap: 28px;
  }

  .portfolio-visual {
    width: 100%;
    height: 240px;
    border-radius: 20px;
  }

  .magnifier-icon {
    width: 38px;
    height: 38px;
    border-radius: 19px;
  }

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

  .case-details-text {
    max-width: 320px;
    gap: 20px;
  }

  .case-presentation-card {
    align-items: flex-start;
  }

  .case-heading {
    font-size: 18px;
    line-height: 110%;
  }

  .description-paragraph {
    font-size: 15px;
    line-height: 110%;
  }

  .navigation-slider {
    gap: 28px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slider-btn svg {
    width: 17px;
    height: 15px;
  }

  .indicator-dot {
    width: 14px;
    height: 14px;
  }

  .progress-indicators {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .showcase-header {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .header-content {
    width: 100%;
    gap: 12px;
  }

  .showcase-title {
    font-size: 2.2rem;
    line-height: 110%;
  }

  .showcase-subtitle {
    font-size: 0.9rem;
    line-height: 120%;
  }

  .portfolio-visual {
    max-height: 163px;
  }

  .header-actions {
    gap: 6px;
  }

  .btn-primary span,
  .btn-secondary span {
    font-size: 13px;
  }

  .btn-primary svg {
    width: 12px;
    height: 11px;
  }

  .case-presentation-card {
    flex-direction: column;
    gap: 24px;
  }

  .portfolio-visual {
    width: 100%;
    height: 240px;
    border-radius: 18px;
  }

  .magnifier-icon {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    top: 6px;
    right: 6px;
  }

  .magnifier-icon svg {
    width: 18px;
    height: 18px;
  }

  .case-details-text {
    gap: 20px;
  }

  .case-presentation-card {
    align-items: flex-start;
  }

  .case-heading {
    font-size: 15px;
    line-height: 110%;
  }

  .description-paragraph {
    font-size: 13px;
    line-height: 115%;
  }

  .case-description {
    gap: 6px;
  }

  .navigation-slider {
    gap: 24px;
    justify-content: center;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }

  .slider-btn svg {
    width: 16px;
    height: 14px;
  }

  .indicator-dot {
    width: 12px;
    height: 12px;
  }

  .progress-indicators {
    gap: 8px;
  }
}

@media (min-width: 1616px) {
  .case-studies-showcase {
    padding: 110px 0;
  }

  .showcase-header {
    gap: 458.944px;
    margin-bottom: 51.3392px;
  }

  .header-content {
    width: 452.48px;
    gap: 18.5194px;
  }

  .showcase-title {
    font-size: 50px;
  }

  .showcase-subtitle {
    font-size: 21.008px;
  }

  .header-actions {
    gap: 7.5792px;
  }

  .numbers {
    font-size: 14px;
  }

  .cta-button {
    font-size: 16px;
  }

  .btn-primary {
    height: 33.936px;
    padding: 19.392px 14px;
    border-radius: 9px;
    gap: 5px;
  }

  .medium-card-text {
    gap: 16px;
  }

  .hero-title-block {
    max-width: 1000px;
  }

  .btn-primary span {
    font-size: 17.776px;
  }

  .btn-primary svg {
    width: 15px;
    height: 13px;
  }

  .btn-secondary {
    height: 33.936px;
    padding: 19.392px 12.928px;
    border-radius: 9px;
  }

  .btn-secondary span {
    font-size: 17.776px;
  }

  .case-presentation-card {
    gap: 67.3467px;
  }

  .portfolio-visual {
    width: 60%;
    height: 371.68px;
    border-radius: 25.2581px;
  }

  .magnifier-icon {
    width: 43.7653px;
    height: 43.7653px;
    border-radius: 28.6154px;
  }

  .magnifier-icon svg {
    width: 22.721px;
    height: 21.8806px;
  }

  .case-details-text {
    gap: 30.3px;
  }

  .case-heading {
    font-size: 22.624px;
  }

  .description-paragraph {
    font-size: 17.776px;
    max-width: 86%;
  }

  .case-description {
    gap: 3.3613px;
  }

  .navigation-slider {
    gap: 37.0387px;
  }

  .slider-btn {
    width: 42.0806px;
    height: 42.0806px;
    border-radius: 42.9222px;
  }

  .slider-btn svg {
    width: 19.3597px;
    height: 15.9984px;
  }

  .progress-indicators {
    gap: 12.621px;
  }

  .indicator-dot {
    width: 16.8387px;
    height: 16.8387px;
  }
}

@media (max-width: 1028px) {
  .case-studies-showcase {
    padding: 60px 0;
  }
}

.slider-btn.active svg path {
  fill: #0c47a0;
}

.slider-btn:not(.active) svg path {
  fill: #939393;
}

/* pricing tarrifs section */
.pricing-tariffs-section {
  position: relative;
  width: 100%;
}

.pricing-section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 65px;
}

.pricing-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  margin: 0;
}

.pricing-subtitle-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  white-space: nowrap;
}

.pricing-cards-container-wrapper {
  position: relative;
  width: 100%;
  height: 676px;
}

.pricing-background-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 21px 25px 21px 37px;
  border-radius: 30px;
  isolation: isolate;
  overflow: hidden;
}

.pricing-background-image-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  z-index: 0;
}

.pricing-glassmorphism-card {
  position: absolute;
  left: 2.29%;
  top: 3.25%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 43px 120px 43px 21px;
  gap: 22px;
  background: rgba(88, 88, 88, 0.18);
  box-shadow:
    inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
    inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(36.3611px);
  border-radius: 30px;
  z-index: 10;
}

.pricing-white-background {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 890px;
  height: 624px;
  margin: 22px 32px 0 22px;
  background: #ffffff;
  border-radius: 30px;
  z-index: 100;
}

.pricing-cards-flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  z-index: 200;
  margin-right: 30px;
}

.pricing-individual-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 264px;
  height: 538px;
}

.pricing-card-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 26px;
  width: 264px;
}

.pricing-card-header-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 25px;
  width: 264px;
}

.pricing-plan-name-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
}

.pricing-plan-icon-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3px 6px;
  width: 37px;
  height: 37px;
  background: linear-gradient(90deg, #0c47a0 0%, #8fecfc 100%);
  border-radius: 11px;
  flex-shrink: 0;
}

.pricing-plan-icon-container.white-border {
  border: 1px solid #ffffff;
}

.pricing-plan-icon-image {
  width: 24px;
  height: 24px;
}

.pricing-plan-name-label {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
}

.pricing-plan-name-label.dark-text {
  color: #393939;
}

.pricing-card-details-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 264px;
}

.pricing-amount-display {
  width: 264px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pricing-amount-display.gray-text {
  color: #939393;
}

.pricing-description-paragraph {
  width: 264px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pricing-description-paragraph.dark-text {
  color: #393939;
}

.pricing-features-list-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 264px;
}

.pricing-feature-item-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 14px;
  width: 264px;
}

.pricing-feature-item-row svg {
  flex-shrink: 0;
}

.pricing-feature-text-label {
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
}

.pricing-feature-text-label.dark-text {
  color: #393939;
}

.pricing-order-button-element {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  height: 36px;
  gap: 4px;
  background: #ffffff;
  border: 1px solid #393939;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-order-button-element:hover {
  background: #f5f5f5;
}

.pricing-order-button-element:focus {
  background: #ffffff;
  outline: none;
}

.pricing-order-button-element:focus:hover {
  background: #edecec;
}

.pricing-order-button-element:active {
  background: #f4f4f4;
}

.pricing-order-button-element::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
  z-index: 0;
}

.pricing-order-button-element:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.pricing-button-text-label {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  text-align: center;
}

.pricing-order-button-element svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

@media (min-width: 1312px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }

  .pricing-section-header {
    margin-bottom: 39px;
    align-items: flex-start;
  }

  .pricing-subtitle-text {
    font-size: 17.81px;
  }

  .pricing-cards-container-wrapper {
    height: 538.2px;
  }

  .pricing-background-container {
    padding: 20.8px 24.7px 20.8px 36.4px;
    border-radius: 29.9px;
  }

  .team-members-row {
    gap: 26px !important;
  }

  .pricing-background-image-element {
    border-radius: 29.9px;
    height: 538px;
  }

  .pricing-glassmorphism-card {
    padding: 29.9px 118.3px 28.08px 20.8px;
    gap: 22.1px;
    border-radius: 29.9px;
    top: 4%;
  }

  .pricing-white-background {
    width: 832px;
    height: 494px;
    margin: 22.1px 31.2px 0 22.1px;
    border-radius: 29.9px;
  }

  .pricing-cards-flex-container {
    gap: 2.6px;
    margin-right: 29.9px;
  }

  .pricing-individual-card {
    width: 261.3px;
    height: 438.1px;
  }

  .pricing-card-content-wrapper,
  .pricing-card-header-section,
  .pricing-card-details-section,
  .pricing-features-list-container,
  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-card-content-wrapper {
    gap: 26px;
  }

  .pricing-card-header-section {
    gap: 24.7px;
  }

  .pricing-plan-name-wrapper {
    gap: 11.7px;
  }

  .pricing-plan-icon-container {
    width: 36.4px;
    height: 36.4px;
    border-radius: 10.92px;
  }

  .pricing-plan-icon-image,
  .pricing-plan-icon-container svg {
    width: 23.4px;
    height: 23.4px;
  }

  .pricing-plan-name-label {
    font-size: 13.91px;
  }

  .pricing-card-details-section {
    gap: 11.7px;
  }

  .pricing-amount-display {
    font-size: 31.72px;
    line-height: 37.7px;
    width: 100%;
  }

  .pricing-description-paragraph {
    font-size: 13.91px;
    line-height: 15.86px;
    width: 100%;
  }

  .pricing-features-list-container {
    gap: 11.7px;
  }

  .pricing-feature-item-row {
    gap: 13.91px;
  }

  .pricing-feature-item-row svg {
    width: 10.92px;
    height: 10.92px;
  }

  .pricing-feature-text-label {
    font-size: 12.22px;
  }

  .pricing-order-button-element {
    padding: 5.98px 9.88px;
    height: 35.62px;
    gap: 3.9px;
    border-radius: 9px;
  }

  .pricing-button-text-label {
    font-size: 13.91px;
  }

  .pricing-order-button-element svg {
    width: 16.9px;
    height: 16.9px;
  }
}

@media (min-width: 968px) and (max-width: 1312px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }

  .pricing-section-header {
    margin-bottom: 3vw;
    align-items: flex-start;
  }

  .pricing-main-heading {
    font-size: 38px;
  }

  .pricing-subtitle-text {
    font-size: 1.37vw;
  }

  .pricing-cards-container-wrapper {
    height: 41.4vw;
  }

  .pricing-background-container {
    padding: 1.6vw 1.9vw 1.6vw 2.8vw;
    border-radius: 2.3vw;
  }

  .pricing-background-image-element {
    border-radius: 2.3vw;
    height: 100vh;
  }

  .pricing-glassmorphism-card {
    padding: 2.3vw 9.1vw 2.16vw 1.6vw;
    gap: 1.7vw;
    border-radius: 2.3vw;
    top: 4%;
  }

  .pricing-white-background {
    width: 64vw;
    height: 38vw;
    margin: 1.7vw 2.4vw 0 1.7vw;
    border-radius: 2.3vw;
  }

  .pricing-cards-flex-container {
    gap: 0.2vw;
    margin-right: 2.3vw;
  }

  .pricing-individual-card {
    width: 20.1vw;
    height: 33.7vw;
  }

  .pricing-card-content-wrapper,
  .pricing-card-header-section,
  .pricing-card-details-section,
  .pricing-features-list-container,
  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-card-content-wrapper {
    gap: 2vw;
  }

  .pricing-card-header-section {
    gap: 1.9vw;
  }

  .pricing-plan-name-wrapper {
    gap: 0.9vw;
  }

  .pricing-plan-icon-container {
    width: 2.8vw;
    height: 2.8vw;
    border-radius: 0.84vw;
  }

  .pricing-plan-icon-image,
  .pricing-plan-icon-container svg {
    width: 1.8vw;
    height: 1.8vw;
  }

  .pricing-plan-name-label {
    font-size: 1.07vw;
  }

  .pricing-card-details-section {
    gap: 0.9vw;
  }

  .pricing-amount-display {
    font-size: 2.44vw;
    line-height: 2.9vw;
    width: 100%;
  }

  .pricing-description-paragraph {
    font-size: 1.07vw;
    line-height: 1.22vw;
    width: 100%;
  }

  .pricing-features-list-container {
    gap: 0.9vw;
  }

  .pricing-feature-item-row {
    gap: 1.07vw;
  }

  .pricing-feature-item-row svg {
    width: 0.84vw;
    height: 0.84vw;
  }

  .pricing-feature-text-label {
    font-size: 0.94vw;
  }

  .pricing-order-button-element {
    padding: 0.46vw 0.76vw;
    height: 2.74vw;
    gap: 0.3vw;
    border-radius: 9px;
  }

  .pricing-button-text-label {
    font-size: 1.07vw;
  }

  .pricing-order-button-element svg {
    width: 1.3vw;
    height: 1.3vw;
  }
}

@media (max-width: 968px) {
  .pricing-tariffs-section {
    overflow: hidden;
  }

  .pricing-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }

  .pricing-main-heading {
    font-size: 28px;
  }

  .pricing-subtitle-text {
    font-size: 13px;
  }

  .pricing-cards-container-wrapper {
    height: auto;
    overflow-x: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 calc(50vw - 50%);
  }

  .pricing-cards-container-wrapper::-webkit-scrollbar {
    display: none;
  }

  .pricing-background-container {
    position: relative;
    width: fit-content;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    gap: 15px;
    min-width: calc(100% + 100px);
  }

  .pricing-background-image-element {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 460px;
    object-fit: cover;
    border-radius: 33px;
    z-index: 0;
  }

  .pricing-glassmorphism-card {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 21px 25px;
    gap: 10px;
    flex-shrink: 0;
    width: 300px;
    height: 430px;
    border-radius: 33px;
    box-shadow: none;
    backdrop-filter: none;
    background: transparent;
    isolation: isolate;
    overflow: hidden;
  }

  .pricing-glassmorphism-card .pricing-individual-card {
    width: 284px;
    height: 517px;
    background: rgba(88, 88, 88, 0.18);
    box-shadow:
      inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
      inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(36.3611px);
    border-radius: 30px;
    padding: 23px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
    position: relative;
  }

  .pricing-white-background {
    display: none;
  }

  .pricing-cards-flex-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    margin-right: 0;
    flex-wrap: nowrap;
    z-index: 200;
  }

  .pricing-cards-flex-container .pricing-individual-card {
    flex-shrink: 0;
    width: 284px;
    height: 595px;
    background: #efefef;
    box-shadow:
      inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
      inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(36.3611px);
    border-radius: 30px;
    padding: 64px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
  }

  .pricing-individual-card .pricing-card-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 242px;
    height: 485px;
  }

  .pricing-glassmorphism-card
    .pricing-individual-card
    .pricing-card-content-wrapper {
    width: 239px;
  }

  .pricing-card-content-wrapper {
    gap: 26px;
    padding: 0 18px 18px 18px;
  }

  .pricing-card-header-section {
    gap: 15px;
    width: 100%;
  }

  .pricing-card-details-section {
    gap: 12px;
    width: 100%;
  }

  .pricing-features-list-container {
    gap: 12px;
    width: 100%;
  }

  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-amount-display {
    width: 100%;
    font-size: 28px;
    line-height: 34px;
  }

  .pricing-description-paragraph {
    width: 100%;
    font-size: 12px;
    line-height: 15px;
  }

  .pricing-feature-text-label {
    font-size: 11px;
  }

  .pricing-order-button-element {
    width: 170px;
    height: 36px;
    padding: 6px 10px;
    border-radius: 9px;
  }

  .pricing-button-text-label {
    font-size: 11px;
  }

  .pricing-glassmorphism-card .pricing-individual-card,
  .pricing-cards-flex-container .pricing-individual-card {
    width: 240px;
    min-height: 416px;
  }

  .pricing-individual-card {
    max-height: 460px;
  }
}

@media (max-width: 768px) {
  .pricing-subtitle-text {
    font-size: 14px;
  }

  .pricing-glassmorphism-card {
    width: 300px;
  }

  .pricing-background-image-element {
    width: 300px;
  }

  .pricing-glassmorphism-card .pricing-individual-card,
  .pricing-cards-flex-container .pricing-individual-card {
    width: 260px;
  }

  .pricing-background-container {
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .pricing-main-heading {
    width: 100%;
    height: auto;
    font-size: clamp(2.08rem, 2.08rem, 48px);
    line-height: 110%;
  }
}

@media (max-width: 1028px) {
  .pricing-subtitle-text {
    font-size: var(--font-size-sm);
  }
}

@media (min-width: 1028px) {
  .pricing-subtitle-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 1616px) {
  .test-drive-section {
    padding: 90px 0;
  }
}

@media (max-width: 630px) {
  .pricing-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .pricing-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

@media (min-width: 1280px) {
  .pricing-main-heading {
    font-size: 2.4rem;
  }

  .pricing-section-header {
    margin-bottom: 45px;
  }
}

@media (max-width: 1616px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }

  .servicecard-title-heading {
    font-size: 22px !important;
  }
}

@media (max-width: 1028px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }
}

@media (min-width: 1616px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }

  .medium-card-text p:nth-child(2) {
    font-size: 14.72px;
  }

  .pricing-section-header {
    margin-bottom: 50px;
    align-items: flex-start;
    margin-top: 20px;
  }

  .pricing-main-heading {
    font-size: 50px;
    line-height: 100%;
  }

  .pricing-subtitle-text {
    font-size: 22px;
  }

  .pricing-cards-container-wrapper {
    height: 720px;
  }

  .pricing-background-container {
    padding: 27px 32px 27px 48px;
    border-radius: 38px;
  }

  .pricing-background-image-element {
    border-radius: 38px;
    height: 730px;
  }

  .pricing-glassmorphism-card {
    padding: 55px 150px 61px 27px;
    gap: 28px;
    border-radius: 38px;
    top: 4%;
    left: 2.29%;
  }

  .pricing-white-background {
    width: 1080px;
    height: 670px;
    margin: 28px 40px 0 28px;
    border-radius: 38px;
  }

  .pricing-cards-flex-container {
    gap: 15px;
    margin-right: 38px;
  }

  .pricing-individual-card {
    width: 328px;
    height: 552px;
  }

  .pricing-card-content-wrapper,
  .pricing-card-header-section,
  .pricing-card-details-section,
  .pricing-features-list-container,
  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-card-content-wrapper {
    gap: 33px;
  }

  .pricing-card-header-section {
    gap: 32px;
  }

  .pricing-plan-name-wrapper {
    gap: 15px;
  }

  .pricing-plan-icon-container {
    width: 47px;
    height: 47px;
    border-radius: 14px;
    padding: 4px 8px;
  }

  .pricing-plan-icon-image,
  .pricing-plan-icon-container svg {
    width: 30px;
    height: 30px;
  }

  .pricing-plan-name-label {
    font-size: 18px;
    line-height: 100%;
  }

  .pricing-card-details-section {
    gap: 15px;
  }

  .pricing-amount-display {
    font-size: 40px;
    line-height: 48px;
  }

  .pricing-description-paragraph {
    font-size: 18px;
    line-height: 20px;
  }

  .pricing-features-list-container {
    gap: 15px;
  }

  .pricing-feature-item-row {
    gap: 18px;
  }

  .pricing-feature-item-row svg {
    width: 14px;
    height: 14px;
  }

  .pricing-feature-text-label {
    font-size: 18px;
    line-height: 100%;
  }

  .pricing-order-button-element {
    padding: 8px 13px;
    height: 45px;
    gap: 5px;
    border-radius: 11px;
  }

  .pricing-button-text-label {
    font-size: 18px;
    line-height: 150%;
  }

  .pricing-order-button-element svg {
    width: 21px;
    height: 19px;
  }
}

.servicecard-content-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

.servicecard-textblock-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 15px;
}

@media (min-width: 1400px) and (max-width: 1616px) {
  .servicecard-title-heading {
    white-space: normal;
    word-wrap: break-word;
    max-width: 175px !important;
    line-height: 1.3;
  }
}

.servicecard-body-info-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
}

.servicecard-price-text {
  margin-top: auto;
}

.servicecard-cta-button {
  margin-top: auto;
}

/* contact form section */
.contact-engagement-form {
  position: relative;
  width: 100%;
  height: 839px;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 120%;
  height: 120%;
  object-fit: cover;
  top: 0;
  left: -7%;
  transform: scaleX(-1) scaleY(-1);
  object-position: 10% 40%;
}

.dark-overlay {
  position: absolute;
  width: 561px;
  height: 100%;
  left: 0;
  top: 0;
  background: #13233b;
  z-index: 1;
}

.form-container-wrapper {
  position: relative;
  z-index: 2;
}

.form-header-section {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 388px;
  left: 73px;
  top: 178px;
}

.form-main-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: #ffffff;
}

.form-description-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
}

.form-fields-section {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 412px;
  left: 73px;
  top: 373px;
}

.contact-inputs-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-field-wrapper.phone,
.input-field-wrapper.email {
  gap: 5px;
}

.field-label {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
}

.text-input {
  width: 100%;
  height: 36px;
  padding: 23px 21px;
  background: #ffffff;
  box-shadow:
    inset 0px 0px 34px rgba(255, 255, 255, 0.05),
    inset 0px 2px 2px rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.text-input:focus {
  outline: none;
  box-shadow:
    inset 0px 0px 34px rgba(255, 255, 255, 0.08),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
}

.submit-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 36px;
  padding: 6px 10px;
  background: linear-gradient(90deg, #005bc6 0%, #7ed6ff 100%);
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.submit-btn-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

.submit-btn-icon {
  width: 30px;
  height: 30px;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .contact-engagement-form {
    height: 600px;
  }

  .background-image {
    object-position: 15% 40%;
  }

  .dark-overlay {
    width: 480px;
  }

  .form-header-section {
    width: 340px;
    left: 60px;
    top: 90px;
    gap: 20px;
  }

  .form-main-title {
    font-size: 36px;
  }

  .form-description-text {
    font-size: 16px;
    line-height: 110%;
  }

  .form-fields-section {
    width: 360px;
    left: 60px;
    top: 240px;
    gap: 20px;
  }

  .field-label {
    font-size: 16px;
  }

  .text-input {
    height: 34px;
    font-size: 14px;
    padding: 20px 18px;
  }

  .submit-action-btn {
    height: 34px;
  }

  .submit-btn-text {
    font-size: 18px;
  }

  .submit-btn-icon {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .contact-engagement-form {
    height: 600px;
  }

  .background-image {
    object-position: 20% 40%;
  }

  .dark-overlay {
    width: 420px;
  }

  .form-header-section {
    width: 310px;
    left: 50px;
    top: 120px;
    gap: 18px;
  }

  .form-main-title {
    font-size: 38px;
  }

  .form-description-text {
    font-size: 15px;
    line-height: 110%;
  }

  .form-fields-section {
    width: 320px;
    left: 50px;
    top: 260px;
    gap: 18px;
  }

  .header-container .slider-controls {
    display: none;
  }

  .testimonials-frame::after {
    display: none;
  }

  .contact-inputs-group {
    gap: 10px;
  }

  .field-label {
    font-size: 15px;
  }

  .text-input {
    height: 32px;
    font-size: 13px;
    padding: 18px 16px;
    border-radius: 6px;
  }

  .submit-action-btn {
    height: 32px;
    border-radius: 6px;
  }

  .submit-btn-text {
    font-size: 16px;
  }

  .submit-btn-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .contact-engagement-form {
    height: auto;
    min-height: 500px;
    padding: 40px 0;
    overflow: visible;
    margin-bottom: 50px;
  }

  .background-image {
    width: 100%;
    height: 130%;
    left: 0;
    top: -20%;
    object-fit: cover;
    object-position: center center;
    transform: scaleX(-1) scaleY(-1);
  }

  .dark-overlay {
    width: 100%;
    height: 90%;
    background: #13233b;
  }

  .form-header-section {
    position: relative;
    width: 100%;
    max-width: 400px;
    left: 0;
    top: 0;
    margin: 0 auto 30px;
    padding: 0 30px;
    gap: 16px;
  }

  .header-container .slider-controls {
    display: none;
  }

  .form-main-title {
    font-size: 34px;
    line-height: 110%;
  }

  .form-description-text {
    font-size: 15px;
    line-height: 120%;
  }

  .form-description-text br {
    display: none;
  }

  .form-fields-section {
    position: relative;
    width: 100%;
    max-width: 400px;
    left: 0;
    top: 0;
    margin: 0 auto;
    padding: 0 30px;
    gap: 16px;
  }

  .contact-inputs-group {
    gap: 10px;
  }

  .input-field-wrapper {
    gap: 6px;
  }

  .field-label {
    font-size: 15px;
  }

  .text-input {
    height: 32px;
    font-size: 13px;
    padding: 16px 14px;
    border-radius: 6px;
  }

  .submit-action-btn {
    height: 32px;
    border-radius: 6px;
  }

  .submit-btn-text {
    font-size: 16px;
  }

  .submit-btn-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .contact-engagement-form {
    height: auto;
    min-height: 480px;
    padding: 32px 0;
    overflow: visible;
  }

  .background-image {
    width: 100%;
    height: 120%;
    left: 0;
    top: -22%;
    object-fit: cover;
    object-position: center center;
    transform: scaleX(-1) scaleY(-1);
  }

  .dark-overlay {
    width: 100%;
    height: 80%;
    background: #13233b;
  }

  .form-header-section {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0 auto 24px;
    padding: 0 20px;
    gap: 14px;
  }

  .form-main-title {
    font-size: 30px;
    line-height: 110%;
  }

  .form-description-text {
    font-size: 13px;
    line-height: 120%;
  }

  .header-container .slider-controls {
    display: none;
  }

  .form-description-text br {
    display: none;
  }

  .form-fields-section {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0 auto;
    padding: 0 20px;
    gap: 16px;
  }

  .contact-inputs-group {
    gap: 8px;
  }

  .input-field-wrapper {
    gap: 5px;
  }

  .input-field-wrapper.phone,
  .input-field-wrapper.email {
    gap: 4px;
  }

  .field-label {
    font-size: 13px;
  }

  .text-input {
    height: 30px;
    font-size: 12px;
    padding: 14px 12px;
    border-radius: 6px;
  }

  .submit-action-btn {
    height: 30px;
    border-radius: 6px;
    gap: 6px;
  }

  .submit-btn-text {
    font-size: 14px;
  }

  .submit-btn-icon {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1616px) {
  .contact-engagement-form {
    height: 775.68px;
  }

  .dark-overlay {
    width: 629.5936px;
  }

  .form-header-section {
    width: 435.3504px;
    left: 81.9312px;
    top: 129.28px;
    gap: 26.9872px;
  }

  .form-main-title {
    font-size: 50px;
  }

  .form-description-text {
    font-size: 21.008px;
  }

  .form-fields-section {
    width: 462.2576px;
    left: 81.9312px;
    top: 307.04px;
    gap: 26.9872px;
  }

  .contact-inputs-group {
    gap: 13.4128px;
  }

  .input-field-wrapper {
    gap: 9.0496px;
  }

  .input-field-wrapper.phone,
  .input-field-wrapper.email {
    gap: 5.656px;
  }

  .field-label {
    font-size: 20.2px;
  }

  .text-input {
    height: 40.4px;
    padding: 25.856px 23.5936px;
    font-size: 17.9376px;
    border-radius: 9.0496px;
  }

  .submit-action-btn {
    height: 40.4px;
    padding: 6.7872px 11.1504px;
    gap: 9.0496px;
    border-radius: 9.0496px;
  }

  .submit-btn-text {
    font-size: 22.4624px;
  }

  .submit-btn-icon {
    width: 33.6128px;
    height: 33.6128px;
  }

  .tag {
    font-size: 15px;
  }
}

/* testimonials section */
.testimonials-section {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 110px 0;
}

.testimonials-frame {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 359px;
  position: relative;
  width: 100%;
  max-width: 1311px;
  height: auto;
  left: 0;
  margin-bottom: 60px;
}

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  max-width: 822px;
  height: auto;
}

.heading-subtitle {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.16em;
  font-variant: small-caps;
  color: #393939;
}

.heading-title {
  width: 100%;
  height: auto;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  order: 1;
  flex-grow: 0;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 27px;
  position: relative;
  width: 100%;
  max-width: 1314px;
  height: auto;
  min-height: 676px;
  left: 0;
  top: 0;
  overflow: visible;
}

.review-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 15px;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  width: calc((100% - 54px) / 3);
  height: auto;
  min-height: 676px;
  background: #f4f4f4;
  border-radius: 30px;
  transition: none;
}

.review-card:nth-child(1) {
  order: 0;
}

.review-card:nth-child(2) {
  order: 1;
}

.review-card:nth-child(3) {
  order: 2;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 96px;
  width: 100%;
  max-width: 373px;
  height: 100%;
}

.user-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: auto;
}

.avatar-image {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 0.4px;
  flex-shrink: 0;
}

.company-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  min-width: 100px;
  height: 75px;
  border: 1px solid #939393;
  border-radius: 58px;
  order: 1;
  flex-shrink: 0;
}

.company-logo {
  height: 26px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  order: 1;
  flex-grow: 1;
}

.quote-mark-wrapper {
  width: 41px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}

.quote-text {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  color: #393939;
  order: 1;
  flex-grow: 0;
}

.slider-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  width: 131px;
  height: 61px;
  order: 1;
  flex-grow: 0;
}

.button-prev,
.button-next {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 6px;
  gap: 10px;
  width: 52px;
  height: 52px;
  background: #0c47a0;
  border-radius: 38.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.button-prev svg path,
.button-next svg path {
  fill: #a5c6f6;
  transition: fill 0.3s ease;
}

.button-prev.active svg path,
.button-next.active svg path {
  fill: white;
}

.button-prev svg,
.button-next svg {
  width: 24px;
  height: 24px;
}

.button-prev {
  order: 0;
}

.button-next {
  order: 1;
}

.arrow-icon {
  width: 38px;
  height: 38px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.button-prev .arrow-icon {
  transform: rotate(-90deg);
}

.arrow-icon path {
  fill: #a5c6f6;
  transition: fill 0.3s ease;
}

.button-next .arrow-icon path {
  fill: white;
}

.button-prev.active .arrow-icon path,
.button-next.active .arrow-icon path {
  fill: white;
}

.button-prev:not(.active) .arrow-icon path {
  fill: #a5c6f6;
}

.author-divider {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  gap: 13px;
  width: 100%;
  height: auto;
  order: 2;
  flex-grow: 0;
  margin-top: auto;
}

.author-divider .divider-line {
  position: absolute;
  width: 77px;
  height: 0;
  border: 2px solid #dcdcdc;
  transform: rotate(90deg);
  top: 37px;
  left: -38px;
}

.author-info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin-left: 16px;
  height: auto;
  order: 1;
  flex-grow: 1;
}

.author-name {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  height: auto;
  order: 1;
  flex-grow: 0;
}

.author-role,
.author-project {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 100%;
  color: #393939;
}

.author-role {
  order: 0;
}

.author-project {
  order: 1;
}

.slider-controls-mobile {
  display: none;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .testimonials-section {
    padding: 90px 0;
  }

  .testimonials-frame {
    height: auto;
  }

  .header-container {
    gap: 100px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
  }

  .section-text {
    width: auto;
    max-width: 500px;
    height: auto;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.4rem;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 460px;
    top: 0;
    left: 0;
  }

  .review-card {
    height: auto;
    min-height: 460px;
    padding: 26px 14px;
    border-radius: 26px;
  }

  .testimonial-content {
    max-width: 100%;
    height: 100%;
    gap: 60px;
    justify-content: flex-start;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 40px;
  }

  .avatar-image {
    width: 70px;
    height: 70px;
  }

  .company-badge {
    min-width: 100px;
    height: 64px;
    padding: 8px 14px;
    border-radius: 50px;
  }

  .company-logo {
    height: 22px;
  }

  .quote-container {
    width: 100%;
    gap: 5px;
  }

  .section-text {
    gap: 14px;
  }

  .quote-mark-wrapper {
    width: 35px;
    height: 30px;
  }

  .quote-mark-wrapper svg {
    width: 28px;
    height: 18px;
  }

  .quote-text {
    width: 100%;
    font-size: 27px;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 12px;
    margin-top: auto;
  }

  .author-divider .divider-line {
    width: 64px;
    top: 32px;
    left: -32px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 8px;
    margin-left: 14px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 18px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 3px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 13px;
    line-height: 110%;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-frame {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 28px;
    order: 0;
  }

  .section-text {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 15px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    top: 0;
    left: 0;
    gap: 0;
    order: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .testimonials-grid-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .testimonial-content {
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-mark-wrapper {
    margin-bottom: -16px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .avatar-image {
    width: 58px;
    height: 58px;
  }

  .company-badge {
    min-width: 90px;
    height: 52px;
    padding: 7px 10px;
    border-radius: 40px;
  }

  .company-logo {
    height: 18px;
  }

  .quote-container {
    width: 100%;
    gap: 4px;
  }

  .quote-mark-wrapper {
    width: 28px;
    height: 42px;
  }

  .quote-mark-wrapper svg {
    width: 23px;
    height: 14px;
  }

  .quote-text {
    width: 100%;
    font-size: 22px;
    line-height: 110%;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 8px;
  }

  .author-divider .divider-line {
    width: 52px;
    top: 26px;
    left: -26px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 6px;
    margin-left: 10px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 2px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: 115%;
  }

  .slider-controls {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    position: relative;
    width: 138px;
    height: 52px;
    gap: 6px;
    margin: 32px auto 0;
    order: 10;
  }

  .button-prev,
  .button-next {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-frame {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 28px;
    order: 0;
  }

  .section-text {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 15px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    top: 0;
    left: 0;
    gap: 0;
    order: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .testimonials-grid-column {
    display: flex;
    flex-direction: column;
    gap: 19.5px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .testimonial-content {
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-mark-wrapper {
    margin-bottom: -16px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .avatar-image {
    width: 58px;
    height: 58px;
  }

  .company-badge {
    min-width: 90px;
    height: 52px;
    padding: 7px 10px;
    border-radius: 40px;
  }

  .company-logo {
    height: 18px;
  }

  .quote-container {
    width: 100%;
    gap: 4px;
  }

  .quote-mark-wrapper {
    width: 28px;
    height: 42px;
  }

  .quote-mark-wrapper svg {
    width: 23px;
    height: 14px;
  }

  .quote-text {
    width: 100%;
    font-size: 22px;
    line-height: 110%;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 8px;
  }

  .author-divider .divider-line {
    width: 52px;
    top: 26px;
    left: -26px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 6px;
    margin-left: 10px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 2px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: 115%;
  }

  .slider-controls {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    position: relative;
    width: 128px;
    height: 52px;
    gap: 4px;
    margin: 28px auto 0;
    order: 10;
  }

  .button-prev,
  .button-next {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-frame {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 24px;
    order: 0;
  }

  .section-text {
    width: 100%;
    height: auto;
    gap: 14px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 15px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
    line-height: 110%;
  }

  .company-badge svg {
    width: 50px;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    top: 0;
    left: 0;
    gap: 0;
    order: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .testimonials-grid-column {
    display: flex;
    flex-direction: column;
    gap: 19.7px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .testimonial-content {
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-mark-wrapper {
    margin-bottom: -16px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 24px;
  }

  .avatar-image {
    width: 44px;
    height: 44px;
  }

  .company-badge {
    min-width: 80px;
    height: 44px;
    padding: 6px 9px;
    border-radius: 35px;
  }

  .company-logo {
    height: 16px;
  }

  .quote-container {
    width: 100%;
    gap: 4px;
  }

  .quote-mark-wrapper {
    width: 25px;
    height: 38px;
  }

  .quote-mark-wrapper svg {
    width: 20px;
    height: 13px;
  }

  .quote-text {
    width: 100%;
    font-size: 19px;
    line-height: 115%;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 8px;
  }

  .author-divider .divider-line {
    width: 46px;
    top: 23px;
    left: -23px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 5px;
    margin-left: 8px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 110%;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 2px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 10px;
    line-height: 120%;
  }

  .slider-controls {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    position: relative;
    width: 108px;
    height: 48px;
    gap: 4px;
    margin: 24px auto 0;
    order: 10;
  }

  .button-prev,
  .button-next {
    width: 48px;
    height: 48px;
  }

  .button-prev svg,
  .button-next svg {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 1300px) and (max-width: 1616px) {
  .decorative-dots {
    position: absolute;
    top: 21px;
  }

  .dot {
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    position: absolute;
  }

  .dot-1 {
    right: -63.3px;
    top: 0;
  }

  .dot-2 {
    right: -196.75px;
    top: 0;
  }

  .dot-3 {
    right: -184px;
    top: 36px;
  }
}

@media (min-width: 1630px) {
  .decorative-dots {
    position: absolute;
    top: 26px;
  }

  .dot {
    width: 8.5px;
    height: 8.5px;
    background: var(--color-white);
    border-radius: 50%;
    position: absolute;
  }

  .dot-1 {
    right: -76.5px;
    top: 0;
  }

  .dot-2 {
    right: -241.8px;
    top: 0;
  }

  .dot-3 {
    right: -228px;
    top: 45px;
  }
}

@media (min-width: 1616px) {
  .testimonials-section {
    padding: 110px 0;
  }

  .testimonials-frame {
    height: auto;
  }

  .header-container {
    gap: 161.6px;
    width: 100%;
    max-width: 1583.68px;
    height: auto;
    margin-bottom: 60px;
  }

  .section-text {
    width: 100%;
    max-width: 917.888px;
    height: auto;
    gap: 16.16px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 21px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 50px;
  }

  .testimonials-grid {
    width: 100%;
    max-width: 1512px;
    height: auto;
    min-height: 549.44px;
    top: 0;
  }

  .review-card {
    height: auto;
    min-height: 517.12px;
    padding: 33.4512px 16.8064px;
    border-radius: 33.4512px;
  }

  .testimonial-content {
    max-width: 100%;
    height: 100%;
    gap: 67.872px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 48.48px;
  }

  .avatar-image {
    width: 80.8px;
    height: 80.8px;
  }

  .company-badge {
    min-width: 105.04px;
    height: 83.6928px;
    padding: 11.1504px 17.9376px;
    border-radius: 64.8016px;
  }

  .company-logo {
    height: 29.088px;
  }

  .quote-container {
    width: 100%;
    gap: 6.6256px;
  }

  .quote-mark-wrapper {
    width: 45.7328px;
  }

  .quote-text {
    width: 100%;
    font-size: 32px;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 14.544px;
  }

  .author-divider .divider-line {
    width: 85.9712px;
    top: 41.3696px;
    left: -42.4208px;
  }

  .author-info-container {
    width: 100%;
    margin-left: 17.9376px;
    height: auto;
    gap: 11.1504px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 22.2848px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 4.5248px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 15.6752px;
  }

  .slider-controls {
    width: 146.248px;
    height: 68.0336px;
    gap: 7.7568px;
  }

  .button-prev,
  .button-next {
    width: 62px;
    height: 62px;
  }

  .button-prev svg,
  .button-next svg {
    width: 30px;
    height: 30px;
  }
}

/* portfolio section */
.portfolio-section-wrapper {
  position: relative;
}

.portfolio-main-frame {
  position: relative;
}

.portfolio-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 113px;
  margin-bottom: 54px;
}

.portfolio-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  width: 402px;
}

.portfolio-description-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 359px;
}

.portfolio-action-buttons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 220px;
}

.portfolio-btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 210px;
  height: 34px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  gap: 2px;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.portfolio-btn-primary:hover {
  background: #223aa6;
}

.portfolio-btn-primary:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.portfolio-btn-primary:focus:hover {
  background: #223aa6;
}

.portfolio-btn-primary:active {
  background: #7a8ad1;
}

.portfolio-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.portfolio-btn-primary:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.portfolio-btn-primary-text {
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
}

.portfolio-btn-arrow-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-btn-arrow-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.portfolio-grid-wrapper {
  overflow: visible;
  position: relative;
}

.portfolio-grid-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 27px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-grid-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 480px) {
  .portfolio-grid-container {
    gap: 20px;
    padding: 0 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.2rem;
  }
}

@media (min-width: 480px) and (max-width: 980px) {
  .portfolio-grid-container {
    margin-left: -1.875rem;
    margin-right: -1.875rem;
    padding: 0 1.875rem;
  }
}

@media (min-width: 980px) and (max-width: 1080px) {
  .portfolio-grid-container {
    margin-left: -1.875rem;
    margin-right: -1.875rem;
    padding: 0 1.875rem;
  }
}

@media (min-width: 1080px) and (max-width: 1616px) {
  .portfolio-grid-container {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
  }

  .portfolio-grid-wrapper {
    overflow: hidden;
  }
}

@media (min-width: 1616px) {
  .portfolio-grid-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .portfolio-grid-wrapper {
    overflow: hidden;
  }
}

.portfolio-card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  width: 420px;
  height: 637px;
  border-radius: 30px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.portfolio-card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 71, 160, 0) 47.1%,
    #0c47a0 87.44%
  );
  border-radius: 30px;
  pointer-events: none;
  z-index: 1;
}

.portfolio-card-item > *:not(.portfolio-card-bg-image) {
  position: relative;
  z-index: 2;
}

.portfolio-card-header-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 33px;
  width: fit-content;
}

.portfolio-card-title-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
}

.portfolio-card-project-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 60px;
}

.portfolio-card-action-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 6px;
  width: 77px;
  height: 77px;
  background: #ffffff;
  border-radius: 38.5px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-card-action-btn:hover {
  transform: scale(1.05);
}

.portfolio-card-arrow-icon svg {
  width: 100%;
  height: 100%;
}

.portfolio-card-services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  gap: 6px;
  width: 200px;
}

.portfolio-service-tag-outline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #ffffff;
  border-radius: 16px;
  width: fit-content;
}

.portfolio-service-tag-filled {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  background: #0c47a0;
  border-radius: 16px;
  width: fit-content;
}

.portfolio-service-tag-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.portfolio-view-all-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 26px 15px;
  gap: 4px;
  width: 95px;
  height: 95px;
  background: #ffffff;
  border-radius: 53px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.portfolio-view-all-btn:hover {
  transform: scale(1.05);
}

.portfolio-view-all-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #0c47a0;
}

.portfolio-view-all-arrow {
  width: 23px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-nav-arrows {
  display: none;
}

@media (min-width: 1080px) {
  .portfolio-section-wrapper {
    position: relative;
    overflow: visible;
  }

  .portfolio-main-frame {
    position: relative;
    overflow: visible;
  }

  .portfolio-grid-wrapper {
    overflow: hidden;
    position: relative;
  }

  .portfolio-grid-container {
    overflow: visible;
    justify-content: flex-start;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
  }

  .portfolio-view-all-btn {
    display: none !important;
  }

  .portfolio-card-item {
    flex: 0 0 calc(33.333% - 18px);
    width: calc(33.333% - 18px);
    max-width: none;
  }

  .portfolio-nav-arrows {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 58%;
    left: -80px;
    right: -80px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    justify-content: space-between;
    padding: 0;
  }

  .portfolio-arrow-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #0c47a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
  }

  .portfolio-arrow-btn:hover {
    background: #223aa6;
  }

  .portfolio-arrow-btn:disabled {
    background: #d3d3d3;
    cursor: not-allowed;
    opacity: 0.5;
  }

  .portfolio-arrow-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 980px) and (max-width: 1616px) {
  .portfolio-header-container {
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .portfolio-main-heading {
    font-size: 2.4rem;
    width: 320px;
  }

  .portfolio-description-text {
    font-size: 1rem;
    width: 280px;
  }

  .portfolio-action-buttons-wrapper {
    width: 200px;
  }

  .portfolio-btn-primary {
    width: 194px;
    height: 32px;
    font-size: 13px;
  }

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

  .portfolio-card-action-btn {
    width: 65px;
    height: 65px;
  }

  .portfolio-card-services-list {
    width: 170px;
    gap: 5px;
  }

  .portfolio-service-tag-text {
    font-size: 12px;
  }

  .portfolio-view-all-text {
    font-size: 20px;
  }
}

@media (min-width: 980px) and (max-width: 1616px) {
  .portfolio-card-item {
    width: calc(33.333% - 18px);
    height: 470px;
    padding: 32px;
    border-radius: 26px;
  }
}

@media (min-width: 1616px) {
  .portfolio-card-item {
    width: calc(33.333% - 18px);
    height: 550px;
    padding: 38px;
    border-radius: 28px;
  }
}

@media (min-width: 480px) and (max-width: 980px) {
  .portfolio-header-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .portfolio-main-heading {
    font-size: 2.2rem;
    width: 100%;
  }

  .portfolio-description-text {
    font-size: 0.95rem;
    max-width: 285px;
    line-height: 110%;
  }

  .portfolio-action-buttons-wrapper {
    width: 100%;
  }

  .portfolio-btn-primary {
    width: 190px;
    height: 30px;
    padding: 5px 8px;
    border-radius: 9px;
  }

  .portfolio-btn-primary-text {
    font-size: 14px;
  }

  .portfolio-btn-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .portfolio-card-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 60%;
  }

  .portfolio-card-item {
    width: 270px;
    height: 410px;
    padding: 24px;
  }

  .portfolio-card-header-badge {
    padding: 7px 14px;
    border-radius: 24px;
  }

  .portfolio-card-title-text {
    font-size: 16px;
  }

  .portfolio-card-project-info {
    gap: 30px;
  }

  .portfolio-card-action-btn {
    width: 52px;
    height: 52px;
    border-radius: 26px;
  }

  .portfolio-card-services-list {
    width: 130px;
    gap: 4px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 3px 7px;
    border-radius: 12px;
  }

  .portfolio-service-tag-text {
    font-size: 10px;
  }

  .portfolio-view-all-btn {
    width: 64px;
    height: 64px;
    padding: 18px 10px;
    border-radius: 36px;
  }

  .portfolio-view-all-text {
    font-size: 16px;
  }

  .portfolio-view-all-arrow {
    width: 18px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .portfolio-header-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .portfolio-main-heading {
    font-size: 2.2rem;
    width: 100%;
    line-height: 110%;
  }

  .portfolio-description-text {
    font-size: 0.9rem;
    max-width: 285px;
    line-height: 120%;
  }

  .portfolio-action-buttons-wrapper {
    width: 100%;
  }

  .portfolio-btn-primary {
    width: 170px;
    height: 28px;
    padding: 4px 7px;
    gap: 1px;
  }

  .portfolio-btn-primary-text {
    font-size: 12px;
  }

  .portfolio-btn-arrow-icon {
    width: 16px;
    height: 16px;
  }

  .portfolio-card-item {
    width: 240px;
    height: 360px;
    padding: 20px;
  }

  .portfolio-card-header-badge {
    padding: 6px 12px;
    border-radius: 20px;
  }

  .portfolio-card-title-text {
    font-size: 15px;
  }

  .portfolio-card-project-info {
    gap: 24px;
  }

  .portfolio-card-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portfolio-card-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .portfolio-card-arrow-icon svg {
    width: 58%;
    height: 58%;
  }

  .portfolio-card-services-list {
    width: 120px;
    gap: 4px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 2px 6px;
    border-radius: 10px;
  }

  .portfolio-service-tag-text {
    font-size: 9px;
  }

  .portfolio-view-all-btn {
    width: 58px;
    height: 58px;
    padding: 16px 9px;
    border-radius: 32px;
  }

  .portfolio-view-all-text {
    font-size: 14px;
  }

  .portfolio-view-all-arrow {
    width: 16px;
    height: 36px;
  }

  .portfolio-grid-container {
    gap: 20px;
  }
}

@media (min-width: 1616px) {
  .portfolio-header-container {
    gap: 127.0176px;
    margin-bottom: 60.6px;
  }

  .portfolio-main-heading {
    font-size: 50px;
    width: 451.1872px;
  }

  .portfolio-description-text {
    font-size: 24px;
    width: 402.8688px;
  }

  .portfolio-action-buttons-wrapper {
    width: 220px;
  }

  .portfolio-btn-primary {
    width: 210px;
    height: 38.1376px;
    padding: 6.7872px 11.1504px;
    border-radius: 9px;
    gap: 2.2624px;
  }

  .portfolio-btn-primary-text {
    font-size: 19.392px;
  }

  .portfolio-btn-arrow-icon {
    width: 24.7248px;
    height: 24.7248px;
  }

  .portfolio-card-item {
    width: 471.3872px;
    height: 646.4px;
    padding: 44.9248px;
    border-radius: 33.6128px;
  }

  .services-title {
    font-size: 50px;
  }

  .portfolio-card-header-badge {
    padding: 11.1504px 22.4624px;
    border-radius: 37.0064px;
  }

  .portfolio-card-project-info {
    gap: 67.3872px;
  }

  .portfolio-card-action-btn {
    width: 86.456px;
    height: 86.456px;
    padding: 5.656px 6.7872px;
    border-radius: 43.1472px;
  }

  .portfolio-card-services-list {
    width: 224.4704px;
    gap: 6.7872px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 4.5248px 11.1504px;
    border-radius: 17.9376px;
  }

  .portfolio-service-tag-text {
    font-size: 15.6752px;
  }

  .portfolio-view-all-btn {
    width: 106.656px;
    height: 106.656px;
    padding: 29.2496px 16.8064px;
    border-radius: 59.4688px;
  }

  .portfolio-view-all-text {
    font-size: 26.9872px;
  }

  .portfolio-view-all-arrow {
    width: 25.856px;
    height: 57.2064px;
  }
}

@media (max-width: 1368px) {
  .portfolio-nav-arrows {
    display: none !important;
  }
}

@media (min-width: 1616px) and (max-width: 1698px) {
  .portfolio-nav-arrows {
    display: none !important;
  }
}

/* team section*/
.team-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 36px;
}

.team-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  max-width: 533px;
}

.team-primary-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 4px;
  width: 198px;
  height: 36px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  gap: 2px;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.team-primary-button:hover {
  background: #223aa6;
}

.team-primary-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.team-primary-button:focus:hover {
  background: #223aa6;
}

.team-primary-button:active {
  background: #7a8ad1;
}

.team-primary-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.team-primary-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.team-button-text {
  font-size: 13.5px;
  line-height: 150%;
  color: #ffffff;
  text-align: center;
}

.team-arrow-icon {
  width: 24px;
  height: 24px;
}

.team-information-container {
  margin-bottom: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.team-secondary-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 428px;
}

.team-main-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: justify;
  color: #939393;
  max-width: 636px;
}

.team-members-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 17px;
}

.team-member-card-wrapper {
  width: 315px;
  height: 450px;
  flex-shrink: 0;
}

.team-member-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  width: 100%;
}

.team-member-photo {
  width: 100%;
  height: 360px;
  background: #d4cdc5;
  overflow: hidden;
  border-radius: 30px;
  object-fit: cover;
}

.team-member-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.team-member-name-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #393939;
  border-radius: 16px;
  height: 28px;
}

.team-member-name-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #393939;
  white-space: nowrap;
}

.team-member-position-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  width: 100%;
}

@media (min-width: 1028px) and (max-width: 1270px) {
  .team-section-wrapper {
    padding: 90px 0;
  }

  .team-header-container {
    gap: 30px;
    margin-bottom: 30px;
  }

  .team-main-heading {
    font-size: 40px;
    max-width: 400px;
  }

  .team-primary-button {
    width: 180px;
    height: 34px;
  }

  .team-button-text {
    font-size: 12.5px;
  }

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

  .team-information-container {
    margin-bottom: 40px;
    gap: 30px;
  }

  .team-secondary-text {
    font-size: clamp(16px, 1.8vw, 19px);
    max-width: 350px;
  }

  .team-main-description {
    font-size: clamp(15px, 1.6vw, 17px);
    max-width: 500px;
  }

  .team-members-row {
    gap: clamp(12px, 1.2vw, 15px);
    margin-bottom: 15px;
  }

  .team-member-card-wrapper {
    width: calc((100% - 45px) / 4);
    height: auto;
    min-width: 0;
  }

  .team-member-card-inner {
    gap: 16px;
  }

  .team-member-photo {
    height: calc((100vw - 80px - 45px) / 4 * 1.14);
    min-height: 240px;
    max-height: 220px;
    border-radius: 24px;
  }

  .team-member-info-wrapper {
    gap: 10px;
  }

  .team-member-name-frame {
    padding: 3px 8px;
    border-radius: 14px;
    height: 26px;
  }

  .team-member-name-text {
    font-size: clamp(16px, 1.6vw, 18px);
  }

  .team-member-position-text {
    font-size: clamp(13px, 1.3vw, 15px);
  }
}

@media (min-width: 1270px) and (max-width: 1616px) {
  .team-section-wrapper {
    padding: 90px 0;
  }

  .team-header-container {
    gap: 40px;
    margin-bottom: 34px;
  }

  .team-main-heading {
    font-size: 40px;
    max-width: 450px;
  }

  .team-primary-button {
    width: 190px;
    height: 35px;
  }

  .team-button-text {
    font-size: 13px;
  }

  .team-arrow-icon svg {
    width: 22px;
    height: 22px;
  }

  .team-information-container {
    margin-bottom: 48px;
    gap: 38px;
  }

  .team-secondary-text {
    font-size: 19px;
    max-width: 400px;
  }

  .team-main-description {
    font-size: 17px;
    max-width: 580px;
  }

  .team-members-row {
    gap: 15px;
    margin-bottom: 15px;
  }

  .team-member-card-wrapper {
    width: 282px;
    height: 316px;
  }

  .team-member-card-inner {
    gap: 18px;
  }

  .team-member-photo {
    height: 240px;
    border-radius: 28px;
  }

  .team-member-info-wrapper {
    gap: 11px;
  }

  .team-member-name-frame {
    padding: 3px 9px;
    border-radius: 15px;
    height: 27px;
  }

  .team-member-name-text {
    font-size: 19px;
  }

  .team-member-position-text {
    font-size: 15px;
  }
}

@media (max-width: 1028px) {
  .team-section-wrapper {
    padding: 70px 0;
  }
}

@media (min-width: 1616px) {
  .team-section-wrapper {
    padding: 110px 0;
  }

  .team-header-container {
    gap: 161.6px;
    margin-bottom: 40.4px;
  }

  .team-main-heading {
    font-size: 50px;
    max-width: 597.92px;
  }

  .team-primary-button {
    width: 264px;
    height: 40.4px;
    padding: 12.928px 3.232px;
    border-radius: 9px;
    gap: 2.2624px;
  }

  .team-button-text {
    font-size: 18.7456px;
  }

  .team-information-container {
    margin-bottom: 48.48px;
    gap: 44.9248px;
  }

  .team-secondary-text {
    font-size: 24px;
    max-width: 480.1152px;
  }

  .team-main-description {
    font-size: 22.4px;
    max-width: 713.7872px;
  }

  .team-members-row {
    gap: 17.776px;
    margin-bottom: 17.776px;
  }

  .team-member-card-wrapper {
    width: calc((100% - 56.56px) / 4.11);
    height: auto;
  }

  .team-member-card-inner {
    gap: 16.16px;
  }

  .team-member-photo {
    width: 100%;
    border-radius: 33.6128px;
  }

  .team-members-row {
    gap: 32px !important;
  }

  .team-member-info-wrapper {
    gap: 13.4128px;
  }

  .team-member-name-frame {
    padding: 16.16px 12.928px;
    border-radius: 17.9376px;
    height: 31.3504px;
  }

  .team-member-name-text {
    font-size: 22.4px;
  }

  .team-member-position-text {
    font-size: 20.8px;
  }

  .team-arrow-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
  }
}

@media (min-width: 720px) and (max-width: 1028px) {
  .team-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
  }

  .team-main-heading {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .team-primary-button {
    width: 210px;
    height: 32px;
    padding: 4px 3px;
  }

  .team-button-text {
    font-size: 14px;
  }

  .team-information-container {
    flex-direction: column;
    margin-bottom: 36px;
    gap: 20px;
  }

  .team-secondary-text {
    font-size: 17px;
    max-width: 100%;
  }

  .team-main-description {
    font-size: 15px;
    max-width: 100%;
    text-align: left;
  }

  .team-members-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }

  .team-member-card-wrapper {
    width: 100%;
    height: auto;
  }

  .team-member-card-inner {
    gap: 16px;
  }

  .team-member-photo {
    width: 100%;
    height: 260px;
    border-radius: 24px;
  }

  .team-member-info-wrapper {
    gap: 8px;
    width: 100%;
  }

  .team-member-name-frame {
    padding: 3px 8px;
    border-radius: 12px;
    height: 24px;
  }

  .team-member-name-text {
    font-size: 16px;
  }

  .team-member-position-text {
    font-size: 13px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .team-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .team-main-heading {
    font-size: 2.2rem;
    max-width: 100%;
    line-height: 110%;
  }

  .team-primary-button {
    width: 210px;
    height: 30px;
    padding: 4px 3px;
  }

  .team-button-text {
    font-size: 14px;
  }

  .team-information-container {
    flex-direction: column;
    margin-bottom: 32px;
    gap: 18px;
  }

  .team-secondary-text {
    font-size: 16px;
    max-width: 100%;
    line-height: 110%;
  }

  .team-main-description {
    font-size: 14px;
    max-width: 100%;
    text-align: left;
    line-height: 120%;
  }

  .team-members-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
  }

  .team-member-card-wrapper {
    width: 100%;
    height: auto;
  }

  .team-member-card-inner {
    gap: 14px;
  }

  .team-member-photo {
    width: 100%;
    height: 210px;
    border-radius: 20px;
  }

  .team-member-info-wrapper {
    gap: 8px;
    width: 100%;
  }

  .team-member-name-frame {
    padding: 2px 7px;
    border-radius: 10px;
    height: 22px;
  }

  .team-member-name-text {
    font-size: 15px;
  }

  .team-member-position-text {
    font-size: 12px;
    line-height: 110%;
  }
}

@media (max-width: 480px) {
  .team-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
  }

  .team-main-heading {
    font-size: 2rem;
    max-width: 100%;
    line-height: 110%;
  }

  .team-primary-button {
    width: 100%;
    max-width: 190px;
    height: 28px;
    padding: 8px 3px;
    gap: 1px;
  }

  .team-button-text {
    font-size: 13px;
  }

  .team-information-container {
    flex-direction: column;
    margin-bottom: 28px;
    gap: 16px;
  }

  .team-secondary-text {
    font-size: 17px;
    max-width: 100%;
    line-height: 120%;
  }

  .team-main-description {
    font-size: 14px;
    max-width: 100%;
    text-align: left;
    line-height: 130%;
  }

  .team-members-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .team-member-card-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .team-member-card-inner {
    gap: 12px;
  }

  .team-member-photo {
    width: 100%;
    height: 200px;
    border-radius: 18px;
  }

  .team-member-info-wrapper {
    gap: 8px;
    width: 100%;
  }

  .team-member-name-frame {
    padding: 2px 6px;
    border-radius: 8px;
    height: 20px;
  }

  .team-member-name-text {
    font-size: 14px;
  }

  .team-slider-controls {
    margin-top: 20px !important;
  }

  .team-member-position-text {
    font-size: 11px;
    line-height: 120%;
  }
}

@media (max-width: 370px) {
  .team-main-heading {
    font-size: 1.8rem;
  }

  .team-button-text {
    font-size: 12px;
  }

  .team-secondary-text {
    font-size: 15px;
  }

  .team-main-description {
    font-size: 13px;
  }

  .team-member-photo {
    height: 180px;
  }

  .team-member-name-text {
    font-size: 13px;
  }

  .team-member-position-text {
    font-size: 11px;
  }
}

.team-slider-controls {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 20px;
  margin-top: 40px;
}

.slider-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px;
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-button svg {
  width: 22px;
  height: 22px;
}

.slider-button.next svg {
  transform: rotate(180deg);
}

.status-circles {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.team-slider-controls .status-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s ease;
}

.team-slider-controls .status-circle.active {
  background: #0c47a0;
}

@media (max-width: 1028px) {
  .team-slider-controls {
    display: flex;
  }

  .team-members-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-bottom: 0 !important;
  }

  .team-members-row:not(.active-slide) {
    display: none !important;
  }
}

@media (min-width: 1028px) {
  .team-slider-controls {
    display: none !important;
  }

  .team-members-row {
    display: flex !important;
    margin-bottom: 17px !important;
  }

  .team-members-row.active-slide {
    display: flex !important;
  }
}

/* seo section */
.seo-section {
  position: relative;
  padding: 0 0 200px 0;
}

.seo-section .container {
  display: flex;
  gap: 67px;
}

.header-wrapper {
  flex-shrink: 0;
  width: 460px;
}

.main-heading-text {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 42px;
  color: #393939;
}

.intro-description-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
}

.content-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px;
  flex: 1;
}

.hero-section-layout {
  display: flex;
  gap: 20px;
}

.benefits-frame-container,
.results-frame-container {
  flex: 1;
}

.services-heading-title {
  font-weight: 500;
  -webkit-text-stroke: 0.3px #393939;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #393939;
  margin-bottom: 18px;
}

.services-list-container,
.results-frame-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item,
.case-study {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
}

.strategies-frame-layout {
  display: flex;
  gap: 26px;
}

.strategy-technical {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
  flex: 1;
}

.security-guarantees-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .seo-section {
    padding: 0 0 150px 0;
  }

  .seo-section .container {
    gap: 50px;
  }

  .header-wrapper {
    width: 380px;
  }

  .main-heading-text {
    font-size: 52px;
    margin-bottom: 32px;
  }

  .intro-description-text {
    font-size: 15px;
  }

  .content-sections-wrapper {
    gap: 32px;
  }

  .services-heading-title {
    font-size: 15px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 15px;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .seo-section {
    padding: 0 0 100px 0;
  }

  .seo-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .header-wrapper {
    width: 100%;
  }

  .main-heading-text {
    font-size: 2.5rem;
    margin-bottom: 28px;
  }

  .intro-description-text {
    font-size: 15px;
    max-width: 100%;
  }

  .content-sections-wrapper {
    gap: 28px;
  }

  .hero-section-layout {
    flex-direction: column;
  }

  .services-heading-title {
    font-size: 15px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 15px;
  }

  .strategies-frame-layout {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .seo-section {
    padding: 0 0 80px 0;
  }

  .seo-section .container {
    flex-direction: column;
    gap: 32px;
  }

  .header-wrapper {
    width: 100%;
  }

  .main-heading-text {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .intro-description-text {
    font-size: 14px;
    max-width: 100%;
  }

  .content-sections-wrapper {
    gap: 24px;
  }

  .hero-section-layout {
    flex-direction: column;
  }

  .services-heading-title {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .services-list-container,
  .results-frame-container {
    gap: 10px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 14px;
  }

  .strategies-frame-layout {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .seo-section {
    padding: 0 0 60px 0;
  }

  .seo-section .container {
    flex-direction: column;
    gap: 28px;
  }

  .header-wrapper {
    width: 100%;
  }

  .main-heading-text {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 110%;
  }

  .intro-description-text {
    font-size: 15px;
    max-width: 100%;
    line-height: 130%;
  }

  .content-sections-wrapper {
    gap: 20px;
  }

  .hero-section-layout {
    flex-direction: column;
    gap: 16px;
  }

  .services-heading-title {
    font-size: 15.9px;
    margin-bottom: 12px;
  }

  .services-list-container,
  .results-frame-container {
    gap: 8px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 15px;
    line-height: 130%;
  }

  .strategies-frame-layout {
    flex-direction: column;
    gap: 14px;
  }
}

@media (min-width: 1616px) {
  .seo-section {
    padding: 0 0 224.4704px 0;
  }

  .seo-section .container {
    gap: 75.144px;
  }

  .header-wrapper {
    width: 516.1504px;
  }

  .main-heading-text {
    font-size: 66px;
    margin-bottom: 47.1872px;
  }

  .intro-description-text {
    font-size: 20.2px;
  }

  .content-sections-wrapper {
    gap: 47.1872px;
  }

  .hero-section-layout {
    gap: 22.4624px;
  }

  .services-heading-title {
    font-size: 20.2px;
    margin-bottom: 20.2px;
  }

  .services-list-container,
  .results-frame-container {
    gap: 13.4128px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 20.2px;
  }

  .strategies-frame-layout {
    gap: 29.2496px;
  }
}

.team-members-row {
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  position: absolute;
  width: 100%;
}

.team-members-row.active-slide {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.team-members-row.slide-out-left {
  opacity: 0;
  transform: translateX(-100%);
}

.team-members-row.slide-out-right {
  opacity: 0;
  transform: translateX(100%);
}

.team-frame-container {
  position: relative;
  overflow: hidden;
}

.slider-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px;
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-button svg {
  width: 22px;
  height: 22px;
  transition: fill 0.3s ease;
}

.slider-button.next svg {
  transform: rotate(180deg);
}

.status-circles {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.team-slider-controls .status-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s ease;
}

.team-slider-controls .status-circle.active {
  background: #0c47a0;
}

@media (max-width: 1028px) {
  .team-slider-controls {
    display: flex;
  }

  .team-members-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-bottom: 0 !important;
  }

  .team-members-row:not(.active-slide) {
    display: none !important;
  }
}

.slider-button.clicked svg path {
  fill: #0c47a0;
}

/* footer */
.site-footer {
  background: #f4f4f4;
  width: 100%;
  padding: 79px 30px 50px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 40px;
}

.brand-column {
  max-width: 303px;
}

.brand-mission {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  background: linear-gradient(89.73deg, #000000 0.23%, #4258be 67.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-nav-group {
  min-width: 150px;
}

.nav-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
  margin-bottom: 12px;
}

.nav-list {
  list-style: none;
  text-align: left;
}

.nav-list li {
  margin-bottom: 8px;
}

.nav-list li:last-child {
  margin-bottom: 0;
}

.footer-nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding: 4px 0;
  letter-spacing: -0.02em;
  color: #393939;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-footer .container .divider-line {
  width: 100%;
  height: 1px;
  background: #939393;
  margin-bottom: 34px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
}

.legal-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.legal-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.legal-link:hover {
  opacity: 0.7;
}

@media (min-width: 760px) and (max-width: 1616px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 32px;
  }

  .brand-column {
    max-width: 260px;
  }

  .brand-logo span {
    font-size: 22px;
    margin-top: 2px;
  }

  .brand-logo img {
    width: 28px;
  }

  .brand-mission,
  .footer-nav-link,
  .contact-info-item {
    font-size: 14px;
  }

  .nav-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .legal-links {
    gap: 40px;
  }
}

@media (min-width: 480px) and (max-width: 760px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 24px;
  }

  .brand-column {
    max-width: 100%;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    margin-top: 2px;
    font-size: 20px;
  }

  .brand-logo {
    height: 26px;
    gap: 7px;
    margin-top: 6px;
  }

  .brand-logo img {
    width: 26px;
  }

  .brand-mission,
  .footer-nav-link,
  .contact-info-item {
    font-size: 13px;
  }

  .nav-heading {
    font-size: 16px;
    text-align: left !important;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
  }

  .brand-column {
    max-width: 100%;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    margin-top: 2px;
    font-size: 20px;
  }

  .brand-logo {
    height: 26px;
    gap: 7px;
    margin-top: 6px;
  }

  .brand-logo img {
    width: 26px;
  }

  .brand-mission,
  .footer-nav-link,
  .contact-info-item,
  .copyright-text,
  .legal-link {
    font-size: 15px;
  }

  .nav-heading {
    font-size: 15px;
    text-align: left !important;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 1616px) {
  .site-footer {
    padding: 88.7184px 33.6128px 56.0752px 33.6128px;
  }

  .footer-content {
    gap: 44.9248px;
    margin-bottom: 49.4496px;
  }

  .brand-column {
    max-width: 340.0064px;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    font-size: 28px;
  }

  .brand-logo {
    height: 34px;
    gap: 10px;
  }

  .brand-logo img {
    width: 34px;
  }

  .brand-mission {
    font-size: 17.9376px;
    margin-bottom: 24.7248px;
  }

  .social-links {
    gap: 24.7248px;
  }

  .social-icon {
    width: 38.1376px;
    height: 38.1376px;
    border-radius: 19.0688px;
  }

  .nav-heading {
    font-size: 22.4624px;
    margin-bottom: 26.9872px;
  }

  .nav-list li {
    margin-bottom: 17.9376px;
  }

  .footer-nav-link,
  .contact-info-item,
  .copyright-text,
  .legal-link {
    font-size: 17.9376px;
  }

  .contact-icon {
    width: 22.4624px;
    height: 22.4624px;
  }

  .site-footer .container .divider-line {
    margin-bottom: 38.1376px;
  }

  .legal-links {
    gap: 67.3872px;
  }
}

/* media queries */
@media (max-width: 1616px) {
  .hero-description p {
    font-size: var(--font-size-base);
    line-height: 100%;
  }

  .category-links a:nth-child(6),
  .category-links a:nth-child(7),
  .category-links a:nth-child(8) {
    display: none;
  }

  .primary-nav-inner {
    max-width: 1010px;
    margin: 0 auto;
  }

  .preview-card-narrow {
    width: 58px;
  }

  .countdown-timer {
    margin-top: -0.5rem;
  }

  .countdown-display {
    width: 80.3%;
  }

  .countdown-block {
    height: 120px;
  }

  .countdown-labels {
    gap: 5.875rem;
    left: 40px;
    margin-top: -0.875rem;
  }

  .timer-group {
    font-size: 6rem;
  }

  .timer-separator {
    margin-top: -1.125rem;
    font-size: 6.375rem;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 270px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .category-links {
    gap: 0.98rem;
  }

  .service-card-body {
    left: -8px;
  }

  .statistics {
    gap: 2.75rem;
  }

  .if-small {
    margin-top: -2.625rem !important;
  }

  .category-link,
  .more-services-desktop {
    font-size: 14px;
  }

  .hero-title-block p {
    font-size: 2rem;
  }

  .hero-description {
    width: 260px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .card-title {
    font-size: 1.875rem;
  }

  .card-number {
    bottom: 0;
  }

  .service-card {
    height: 400px;
    padding: 1.25rem;
  }

  .services-title {
    font-size: 2.4rem;
  }

  .service-badge {
    margin-top: 1.25rem;
  }

  .service-card-number {
    font-size: 8.438rem;
    margin-top: -0.75rem;
  }

  .service-card-footer {
    bottom: 22px;
    right: -8px;
  }

  .advantage-card {
    height: 527px;
  }

  .card-hover-divider {
    position: absolute;
    top: 0;
  }

  .card-hover-divider-grey {
    top: -60px;
    width: 100%;
  }

  .is-tall {
    font-size: 1.769rem !important;
  }

  .card-hover-text {
    margin-top: -2.5rem;
  }

  .services-grid {
    gap: 30px;
  }

  .service-card-title {
    font-size: 1.95rem;
    margin-bottom: 0.5rem;
  }

  .stat-card {
    padding: 0.875rem 0.375rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .big-a-letter {
    font-size: 2.7rem;
  }

  .cta-button {
    width: 170px;
  }

  .promo-title {
    font-size: 2.4rem;
  }

  .stats-cards {
    gap: 16px;
  }

  .service-card-title .desktop-title {
    display: none;
  }

  .service-card-title .mobile-title {
    display: block;
  }
}

@media (max-width: 1616px) {
  .container {
    padding: 0 2.625rem;
  }

  .nav-link,
  .category-link,
  .more-services-desktop {
    font-size: 13px !important;
  }

  .phone-number {
    font-size: 0.813rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }

  .primary-nav-inner {
    max-width: 950px;
  }

  .category-link:nth-child(4) {
    display: none;
  }

  .category-links {
    gap: 3.1rem;
  }

  .geo-icon-small {
    margin-bottom: -0.3rem;
    width: 72px;
  }

  .hero {
    padding: 2.5rem 0 0 0;
  }

  .hero-content {
    gap: 40px;
    margin-bottom: 1.25rem;
  }

  .hero-title-block p {
    font-size: 1.6rem !important;
  }

  .big-letter {
    font-size: 2.2rem;
  }

  .big-a-letter {
    font-size: 2.2rem !important;
  }

  .hero-title-block {
    max-width: 100%;
  }

  .hero-description {
    width: 100%;
    max-width: 322px;
  }

  .hero-description p {
    font-size: var(--font-size-base);
    line-height: 112%;
  }

  .services-preview-grid {
    height: 300px;
    gap: 8px;
  }

  .preview-card {
    height: 300px;
  }

  .preview-card-narrow {
    width: 50px;
  }

  .preview-card-narrow.expanded {
    width: 220px;
  }

  .preview-card-content-medium {
    max-width: 190px;
    padding: 0.75rem;
    height: 270px;
    gap: 0.875rem;
  }

  .large-icon {
    width: 60px;
    height: 60px;
  }

  .large-icon svg {
    width: 35px;
    height: 35px;
  }

  .medium-card-text p:nth-child(1) {
    font-size: 1.25rem;
  }

  .medium-card-text p:nth-child(2) {
    font-size: 0.863rem;
  }

  .details-button {
    width: 110px;
    height: 32px;
    font-size: 0.813rem;
  }

  .tag-list {
    gap: 10px;
    top: 12px;
    left: 15px;
  }

  .tag {
    height: 26px;
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }

  .card-info {
    margin-left: 10px;
  }

  .card-info svg {
    width: 20px;
    height: 20px;
  }

  .info-text {
    font-size: var(--font-size-base);
  }

  .card-number {
    width: 36px;
    height: 36px;
    font-size: var(--font-size-base);
  }

  .narrow-number {
    top: 250px;
  }

  .vertical-text {
    font-size: var(--font-size-base);
  }

  .feature-item {
    font-size: var(--font-size-sm);
  }

  .statistics {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 1.875rem;
  }

  .statistics-header {
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .statistics-header p {
    font-size: 1.8rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-value {
    font-size: 1.375rem;
  }

  .advantages {
    padding: 90px 0;
  }

  .advantages-intro {
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .advantages-text {
    width: 100%;
    max-width: 400px;
  }

  .advantage-point {
    font-size: var(--font-size-base);
    line-height: 120%;
  }

  .advantages-cards {
    gap: 20px;
  }

  .advantage-card {
    height: 460px;
    padding: 1.875rem;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 250px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .card-title {
    font-size: 1.75rem;
  }

  .card-bottom {
    bottom: 2rem;
    left: 2.2rem;
  }

  .card-hover-text {
    font-size: var(--font-size-base);
    top: 150px;
    left: 1.875rem;
    right: 1.875rem;
  }

  .number-badge {
    width: 65px;
    height: 65px;
  }

  .number-text {
    font-size: var(--font-size-md);
  }

  .mobile-title {
    font-size: 1.75rem;
  }

  .services-title {
    font-size: 2.4rem;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    height: 360px;
  }

  .service-card-wrapper {
    width: calc(100% - 50px);
    height: 320px;
  }

  .service-card-body {
    gap: 3.125rem;
  }

  .service-card-title {
    font-size: 1.875rem;
  }

  .service-card-number {
    font-size: 7.5rem;
  }

  .service-card-footer {
    bottom: 10px;
  }

  .gradient-dot svg {
    width: 50px;
    height: 52px;
  }

  .promo {
    padding: 90px 0;
  }

  .promo-wrapper {
    padding: 1.875rem;
  }

  .promo-info-card {
    top: 80px;
  }

  .promo-content {
    gap: 1.25rem;
  }

  .promo-title {
    font-size: 2.1rem;
  }

  .countdown-display {
    height: 110px;
    width: 64%;
  }

  .countdown-block {
    height: 90px;
    border-radius: 28px;
  }

  .countdown-timer {
    height: 90px;
    top: 10px;
    left: 8px;
  }

  .timer-group {
    font-size: 4.775rem;
  }

  .timer-separator {
    font-size: 5.063rem;
  }

  .countdown-labels {
    gap: 4.46rem;
    left: 30px;
  }

  .if-small {
    margin-top: -0.625rem !important;
  }

  .countdown-unit {
    font-size: var(--font-size-base);
  }

  .promo-text {
    font-size: var(--font-size-base);
  }
}

@media (min-width: 981px) {
  .features-list {
    order: 2;
    margin: 20px 0;
  }

  .slider-dots {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 1120px) {
  .pricing-main-heading {
    font-size: 40px;
  }
}

@media (max-width: 1028px) {
  .container {
    padding: 0 1.875rem;
  }

  .phone-number {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    height: 30px;
  }

  .phone-number svg {
    width: 16px;
    height: 16px;
  }

  .cta-button {
    width: auto;
    height: 30px;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .hero-title-block {
    margin-right: auto;
  }

  .hero-title-block p svg {
    width: 70px;
    height: 34px;
    position: relative;
    top: 5px;
  }

  .hero-description {
    max-width: 700px;
    gap: 0.25rem;
    margin-left: auto;
  }

  .hero {
    padding: 1.875rem 0 0 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }

  .hero-title-block {
    max-width: 100%;
  }

  .hero-title-block p {
    font-size: 1.4rem;
    letter-spacing: 0.08rem;
  }

  .big-letter {
    font-size: 2.2rem;
  }

  .show-more-button {
    font-size: 1rem;
    width: 164px;
  }

  .big-a-letter {
    font-size: 1.9rem;
  }

  .hero-description p {
    font-size: var(--font-size-sm);
    line-height: 120%;
  }

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

  .services-preview {
    margin-bottom: 1rem;
  }

  .services-preview-grid {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .preview-card-large {
    width: 100%;
    height: 348px;
    min-width: 100%;
  }

  .feature-item {
    font-size: 0.75rem;
  }

  .preview-card-narrow {
    width: 252px;
    min-width: 252px;
    height: 348px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    cursor: default;
  }

  .preview-card-narrow.expanded {
    width: 252px;
  }

  .preview-card-narrow .vertical-text,
  .preview-card-narrow > .card-number.narrow-number {
    display: none !important;
  }

  .preview-card-narrow .preview-card-content-medium {
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 0.875rem;
    height: 320px;
    min-width: 220px;
  }

  .medium-card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .large-icon {
    width: 73px;
    height: 73px;
  }

  .large-icon svg {
    width: 40px;
    height: 40px;
  }

  .medium-card-text p:nth-child(1) {
    font-size: 1.5rem;
  }

  .medium-card-text p:nth-child(2) {
    font-size: var(--font-size-base);
  }

  .details-button {
    width: 117px;
    height: 36px;
    font-size: var(--font-size-sm);
  }

  .tag-list {
    gap: 10px;
    top: 15px;
    left: 19px;
  }

  .tag {
    height: 30px;
    font-size: var(--font-size-sm);
    padding: 0 0.625rem;
  }

  .card-info {
    margin-left: 0.875rem;
  }

  .card-info svg {
    width: 24px;
    height: 24px;
  }

  .info-text {
    font-size: 1.25rem;
  }

  .promo-wrapper {
    padding: 0;
  }

  .card-number {
    width: 42px;
    height: 42px;
    font-size: var(--font-size-md);
    flex-shrink: 0;
  }

  .statistics {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .statistics-header {
    width: 100%;
    margin-top: 1.25rem;
    gap: 1rem;
  }

  .statistics-header p {
    font-size: 1.75rem;
  }

  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-mobile {
    display: inline;
  }

  .stat-desktop {
    display: none;
  }

  .stat-icon svg.stat-mobile {
    display: block;
  }

  .stat-icon svg.stat-desktop {
    display: none;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
  }

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

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-value {
    font-size: var(--font-size-md);
  }

  .advantages {
    padding: 70px 0;
  }

  .advantages-intro {
    gap: 1.25rem;
    margin-bottom: 1.875rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .advantages-text {
    width: 100%;
  }

  .advantage-point {
    font-size: var(--font-size-sm);
    line-height: 120%;
  }

  .advantages-cards {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-padding-left: 30px;
  }

  .advantages-cards::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    min-width: 280px;
    height: 450px;
    padding: 1.5rem;
    flex-shrink: 0;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 230px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-hover-text {
    font-size: var(--font-size-sm);
  }

  .number-badge {
    width: 55px;
    height: 55px;
    padding: 0.938rem 0.75rem;
  }

  .number-text {
    font-size: var(--font-size-base);
  }

  .services-intro {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-description {
    font-size: var(--font-size-sm);
  }

  .services-grid {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 280px;
    height: 341px;
    flex-shrink: 0;
  }

  .service-card-wrapper {
    width: calc(100% - 40px);
    height: 340px;
  }

  .service-card-body {
    gap: 2.5rem;
    left: 0;
  }

  .service-badge {
    font-size: 0.75rem;
    height: 26px;
    padding: 0.188rem 0.5rem;
  }

  .service-card-title {
    font-size: 1.5rem;
  }

  .service-card-title.smaller {
    font-size: 1.375rem;
  }

  .service-card-number {
    font-size: 6.25rem;
    margin-top: 2.375rem;
  }

  .services-grid .service-card:nth-child(1) .service-card-number {
    font-size: 6.25rem;
    margin-top: 2.375rem;
  }

  .mobile-title {
    display: none !important;
  }

  .desktop-title {
    display: block !important;
    font-size: 1.813rem;
    line-height: 100%;
  }

  .if-small {
    margin-top: 2.438rem !important;
  }

  .service-card-footer {
    bottom: 24px;
    right: 0;
  }

  .footer-badge {
    font-size: 0.75rem;
    height: 26px;
  }

  .icon-circle {
    width: 28px;
    height: 28px;
  }

  .gradient-dot svg {
    width: 40px;
    height: 42px;
  }

  .promo {
    padding: 70px 0;
  }

  .promo-bg-image {
    object-position: left center;
  }

  .promo-content {
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .promo-title {
    font-size: 2rem;
    line-height: 120%;
  }

  .countdown-display {
    height: 110px;
    width: 58%;
    margin-bottom: -0.625rem;
  }

  .countdown-block {
    height: 90px;
    border-radius: 28px;
  }

  .countdown-timer {
    height: 90px;
    top: 10px;
    left: 9px;
  }

  .timer-group {
    font-size: 4.75rem;
  }

  .timer-separator {
    font-size: 5.063rem;
    margin-top: -0.75rem;
  }

  .countdown-display {
    min-width: 443px;
  }

  .countdown-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .countdown-label {
    font-size: var(--font-size-sm);
    margin-bottom: 0.625rem;
  }

  .countdown-block {
    width: 94px !important;
  }

  .countdown-labels {
    gap: 5.375rem;
    left: 34px;
    margin-top: 0;
  }

  .countdown-unit {
    font-size: 0.688rem;
  }

  .promo-text {
    font-size: var(--font-size-sm);
    max-width: 100%;
  }

  .promo-button {
    font-size: var(--font-size-sm);
  }

  .promo-info-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    padding: 1.625rem;
  }

  .promo-info-card svg {
    display: none;
  }

  .info-card-label {
    font-size: 0.688rem;
  }

  .info-card-title {
    font-size: var(--font-size-md);
    max-width: 100%;
  }

  .info-card-description {
    font-size: 0.688rem;
    max-width: 100%;
  }

  .numbers {
    display: none;
  }

  .category-links a:nth-child(2) {
    display: none;
  }

  .primary-nav-inner {
    max-width: 750px;
  }

  .main-navigation {
    margin-top: 0.313rem;
  }

  .advantage-point {
    font-size: var(--font-size-base);
  }

  .advantage-card {
    min-width: 310px;
    min-height: 460px;
  }

  .services-description {
    font-size: var(--font-size-base);
  }

  .services-title {
    font-size: 2.5rem;
  }

  .statistics-header {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 2rem;
  }

  .number-badge {
    width: 76px;
    height: 76px;
  }

  .number-text {
    font-size: 1.25rem;
  }

  .card-hover-divider {
    width: 100%;
    left: 0;
    top: 6px;
  }

  .card-hover-divider-grey {
    top: -40px;
    width: 100%;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 262px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .advantage-card-blue .card-hover-text,
  .advantage-card-dark .card-hover-text,
  .advantage-card-gray .card-hover-text {
    font-size: var(--font-size-base);
  }

  .advantage-card-gray .card-hover-text {
    margin-bottom: 30px;
  }

  .service-badge {
    font-size: var(--font-size-sm);
  }

  .desktop-title {
    font-size: 1.5rem;
    width: 200px;
  }

  .service-card-number {
    font-size: 8rem;
    margin-top: 1.563rem;
  }

  .if-small {
    margin-top: 1.563rem !important;
  }

  .service-card {
    min-width: 314px;
    min-height: 341px;
  }

  .services-grid .service-card:nth-child(1) .service-card-number {
    font-size: 8rem;
    margin-top: 1.5rem;
  }

  .info-card-label {
    font-size: 0.75rem;
  }

  .info-card-title {
    font-size: 1.25rem;
  }

  .info-card-description {
    font-size: 0.75rem;
  }

  .services-preview {
    width: 100%;
  }

  .services-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }

  .preview-card-large {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
  }

  .preview-card-narrow {
    min-width: 212px;
    width: 212px;
    height: 348px;
    flex-shrink: 0;
  }

  .preview-card-narrow.expanded {
    width: 212px;
  }

  .preview-card-narrow .preview-card-content-medium {
    display: flex;
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .preview-card-narrow .preview-card-content-medium.active {
    display: flex;
  }

  .preview-card-narrow .vertical-text {
    display: none;
  }

  .preview-card-narrow .narrow-number {
    display: none;
  }

  .preview-card-narrow:hover .preview-card-content-medium {
    display: flex;
  }

  .narrow-cards-scroll-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0 0 0;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .advantages-cards {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .advantages-cards::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    scroll-snap-align: start;
  }

  .services-grid {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .preview-card-narrow {
    min-width: 240px;
    width: 240px;
  }

  .preview-card-narrow.expanded {
    width: 240px;
  }

  #header-icon {
    position: relative;
    top: 2px;
  }

  .hero,
  .advantages,
  .services {
    overflow: hidden;
  }

  .hero .container,
  .advantages .container,
  .services .container {
    overflow: visible;
  }

  .narrow-cards-scroll-wrapper {
    width: calc(100% + 6rem);
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 2.2rem 0 3.88rem;
    margin-left: -1.875rem;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .advantages-cards {
    width: calc(100% + 3.75rem);
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.875rem 1rem 1.875rem;
    scroll-snap-type: x mandatory;
    margin-left: -1.875rem;
  }

  .services-grid {
    width: calc(100% + 3.75rem);
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.875rem 1rem 1.875rem;
    scroll-snap-type: x mandatory;
    margin-left: -1.875rem;
  }

  .narrow-cards-scroll-wrapper::-webkit-scrollbar,
  .advantages-cards::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .features-list-mobile {
    display: flex;
    width: 100%;
    gap: 0.75rem;
    align-items: flex-start;
    order: 2;
    padding-left: 0.75rem;
  }

  .features-list-desktop {
    display: none;
  }

  .slider-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.938rem;
    width: 100%;
    height: 20px;
    margin-top: 1.25rem;
    order: 4;
  }
}

@media (max-width: 840px) {
  .cta-button {
    display: none;
  }

  .primary-nav-inner {
    max-width: 565px;
  }

  .category-links a:nth-child(3) {
    display: none;
  }

  .advantages-intro {
    flex-direction: column;
  }

  .advantages-heading {
    margin-right: auto;
  }

  .advantages-text {
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .statistics-header {
    flex-direction: column;
  }

  .services-intro {
    flex-direction: column;
  }

  .services-title {
    margin-right: auto;
  }

  .services-description {
    margin-left: auto;
  }

  .hero-description {
    width: 78%;
  }

  .geo-icon-small {
    display: inline-block;
  }
}

@media (max-width: 630px) {
  .more-services-desktop {
    display: none;
  }

  .more-services-mobile {
    display: inline;
  }

  .burger-menu-icon {
    display: flex;
    margin-left: 0.875rem;
    border: none;
    background: none;
    margin-top: 4px;
  }

  .primary-nav {
    padding: 0.938rem 0;
  }

  .primary-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0 1.25rem;
  }

  .logo {
    position: absolute;
    margin-top: 5px;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
  }

  .main-navigation {
    display: none;
  }

  .header-contacts .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-contacts .phone-number .numbers {
    display: none;
  }

  .header-contacts .phone-number svg {
    width: 24px;
    height: 24px;
    margin-top: 0.438rem;
  }

  .cta-button {
    display: none;
  }

  .info-card-title {
    max-width: 204px;
  }

  .info-card-description {
    max-width: 176px;
  }

  .statistics {
    margin-top: 0.875rem;
  }

  .tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    font-size: 0.64rem;
  }

  .features-list-mobile {
    margin-left: 0.25rem;
    gap: 0.813rem;
  }

  .slider-dots {
    margin-top: 0;
  }

  .hero-title-block p {
    font-size: 1.5rem !important;
  }

  .big-letter {
    font-size: 2.125rem;
  }

  .big-a-letter {
    font-size: 2.04rem !important;
  }
}

@media (max-width: 630px) {
  .hero-mobile-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.938rem;
    width: 100%;
  }

  .hero-title-block,
  .hero-description {
    display: none !important;
  }

  .mobile-hero-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.938rem;
    width: 100%;
    order: 0;
  }

  .mobile-hero-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 100%;
    font-variant: small-caps;
    color: #393939;
    margin: 0;
    width: 100%;
  }

  .why-us-section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    color: #393939;
    max-width: 300px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .why-us-section-title::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .test-drive-section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    color: #393939;
    max-width: 300px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .test-drive-section-title::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .niches-main-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .niches-main-title::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .main-title-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .main-title-h1::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .portfolio-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .portfolio-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .team-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .team-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .geo-icon-small {
    width: 54px;
    position: relative;
    top: 0.1rem;
  }

  #header-icon {
    position: relative;
    left: 14px;
  }

  .mobile-hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.25rem;
    width: 100%;
  }

  .mobile-hero-subtitle p {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 100%;
    color: #393939;
    margin: 0;
    width: 100%;
  }

  .mobile-consultation-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.375rem 0.625rem;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #0c47a0 0%, #8fecfc 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .mobile-consultation-button:active {
    transform: scale(0.98);
  }

  .features-list-mobile-top {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    order: 1;
  }

  .feature-item-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 150%;
    color: #393939;
  }

  .feature-item-check svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .features-list-mobile {
    display: none !important;
  }

  .preview-card-large {
    order: 2;
  }

  .services-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .narrow-cards-scroll-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0 0 0;
    margin-left: 0;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }

  .narrow-cards-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .preview-card-narrow {
    scroll-snap-align: start;
  }

  .slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 0.5rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 71, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .slider-arrow:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 1);
  }

  .slider-arrow svg {
    color: #0c47a0;
  }

  .slider-arrow-prev {
    margin-left: -0.5rem;
  }

  .slider-arrow-next {
    margin-right: -0.5rem;
  }
}

@media (max-width: 1026px) {
  .slider-navigation {
    display: none !important;
  }
  .slider-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 343px;
    height: 42px;
    margin: 1.25rem auto 0;
    order: 4;
  }

  .slider-arrow {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px;
    gap: 10px;
    width: 37px;
    height: 38px;
    background: #f4f4f4;
    border: 1px solid #ffffff;
    border-radius: 51px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .slider-arrow:active {
    transform: scale(0.95);
    background: #ffffff;
  }

  .slider-arrow-prev svg path {
    stroke: #939393;
    transition: stroke 0.2s ease;
  }

  .slider-arrow-next {
    order: 2;
  }

  .slider-arrow-next svg {
    width: 30px;
    height: 30px;
    transform: rotate(36.3611px);
  }

  .slider-arrow-next svg path {
    stroke: #939393;
    transition: stroke 0.2s ease;
  }

  .slider-arrow.active svg path {
    stroke: #0c47a0;
  }

  .slider-arrow svg {
    width: 31px;
    height: 31px;
    flex: none;
    flex-grow: 0;
  }

  .slider-arrow-prev {
    order: 0;
  }

  .slider-arrow-prev svg {
    transform: rotate(360deg);
  }

  .slider-container .slider-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 12px;
    width: 113px;
    height: 13px;
    margin: 0;
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  .slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #d9d9d9;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: none;
    flex-grow: 0;
    padding: 0;
  }

  .slider-dot.active {
    background: #0c47a0;
  }

  .slider-dot:hover {
    background: #0c47a0;
    opacity: 0.7;
  }

  .slider-dot:hover {
    background: #0c47a0;
    opacity: 0.7;
  }

  @media (max-width: 375px) {
    .slider-container {
      width: 100%;
      max-width: 343px;
      padding: 0 16px;
    }
  }
}

@media (min-width: 1026px) {
  .slider-container {
    display: none !important;
  }
}

@media (min-width: 630px) {
  .hero-mobile-layout {
    display: none;
  }
}

@media (max-width: 620px) {
  .countdown-display {
    height: 110px;
    margin-bottom: -0.625rem;
  }

  .countdown-block {
    height: 70px;
    border-radius: 21px;
    width: 70px !important;
  }

  .countdown-block:nth-child(1) {
    left: 0;
  }

  .countdown-block:nth-child(2) {
    left: calc(70px + 20px);
  }

  .countdown-block:nth-child(3) {
    left: calc((80px * 2) + 19px);
  }

  .countdown-block:nth-child(4) {
    left: calc((90px * 3) - 1px);
  }

  .countdown-timer {
    height: 90px;
    top: -2px;
    left: 7px;
  }

  .timer-group {
    font-size: 3.581rem;
  }

  .timer-separator {
    font-size: 3.75rem;
    margin-top: -0.625rem;
  }

  .countdown-label {
    font-size: var(--font-size-sm);
    margin-bottom: 0.625rem;
  }

  .countdown-labels {
    gap: 3.65rem;
    left: 24px;
    margin-top: -1.938rem;
  }

  .advantage-card {
    max-width: 300px;
    min-width: 300px;
    max-height: 460px;
    min-height: 460px;
  }

  .countdown-unit {
    font-size: 0.688rem;
  }
}

@media (max-width: 540px) {
  .hero-title-block p {
    font-size: 1.5rem !important;
  }

  .big-letter {
    font-size: 2.125rem;
  }

  .big-a-letter {
    font-size: 2.1rem !important;
  }

  .hero-title-block p:last-child {
    display: inline;
    margin-left: 0;
  }

  #header-icon {
    padding-top: 0.24rem;
    margin-left: -1.7rem;
  }

  .card-bottom {
    left: 2rem;
  }
}

@media (max-width: 516px) {
  .hero-title-block {
    max-width: 410px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .info-text {
    font-size: var(--font-size-base);
  }

  .medium-card-text p:nth-child(1) {
    font-size: 1.25rem;
  }

  .medium-card-text p:nth-child(2) {
    font-size: var(--font-size-sm);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .show-more-button {
    font-size: 0.9rem;
  }

  .services-description {
    max-width: 320px;
    text-align: right;
  }

  .features-list-mobile {
    font-size: 0.5625rem;
  }

  .narrow-cards-scroll-wrapper {
    padding: 0.25rem 1.5rem 0 1.5rem !important;
  }
}

@media (max-width: 450px) {
  .promo-title {
    font-size: 1.625rem;
  }

  .countdown-label {
    font-size: 0.781rem;
  }

  .promo-text {
    font-size: 0.813rem;
  }

  .countdown-display {
    height: 110px;
    margin-bottom: -0.625rem;
  }

  .countdown-block {
    height: 50px;
    border-radius: 16px;
    width: 52px !important;
  }

  .countdown-block:nth-child(1) {
    left: 0;
  }

  .countdown-block:nth-child(2) {
    left: calc(50px + 16px);
  }

  .countdown-block:nth-child(3) {
    left: calc((50px * 2) + 32px);
  }

  .countdown-block:nth-child(4) {
    left: calc((50px * 3) + 48px);
  }

  .countdown-timer {
    height: 90px;
    top: -0.75rem;
    left: 7px;
  }

  .timer-group {
    font-size: 2.525rem;
  }

  .timer-separator {
    font-size: 2.563rem;
    margin-top: -0.375rem;
  }

  .countdown-labels {
    gap: 2.338rem;
    left: 16px;
    margin-top: -3.438rem;
  }

  .countdown-unit {
    font-size: 0.625rem;
  }

  .hero-title-block {
    margin-bottom: 0.25rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .primary-nav-inner {
    padding: 0 !important;
  }
}

@media (max-width: 400px) {
  .advantage-card {
    min-height: 440px;
    min-width: 290px;
  }

  .card-title {
    font-size: 1.74rem;
  }

  .card-hover-text {
    font-size: 1rem;
  }

  .is-tall {
    font-size: 1.74rem !important;
  }

  .service-card {
    min-width: 290px;
  }

  .service-card-number {
    font-size: 6.8rem;
    margin-top: 2.56rem;
  }

  .if-small {
    font-size: 6.8rem !important;
    margin-top: 2.64rem !important;
  }

  .services-grid .service-card:nth-child(1) .service-card-number {
    font-size: 6.8rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 370px) {
  .promo-info-card svg {
    margin-right: 0 !important;
  }

  .hero-title-block p {
    font-size: 1.32rem !important;
  }

  .big-letter {
    font-size: 2.1rem;
  }

  .big-a-letter {
    font-size: 1.875rem !important;
  }

  .hero {
    padding: 1.25rem 0 0 0;
  }

  .stat-card {
    padding: 0.875rem 0.39rem;
    border-radius: 24px;
  }

  .stat-card-content {
    gap: 0.4rem;
  }

  .stats-cards {
    gap: 0.5rem;
  }
}

@media (max-width: 340px) {
  .promo-info-card svg {
    width: 220px;
  }
}

.geo-icon-large {
  display: none;
}

.geo-icon-small {
  display: inline-block;
}

.card-icon-large {
  display: none;
}

.card-icon-small {
  display: inline-block;
}

.icon-small {
  display: inline-block;
}

.icon-large {
  display: none;
}

@media (max-width: 630px) {
  .services-preview-section {
    overflow: visible;
  }

  .stat-card {
    border-radius: 12px;
  }

  .services-preview-section .container {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .services-preview-grid {
    overflow: visible;
  }

  .narrow-cards-scroll-wrapper {
    width: 100vw;
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.25rem 1.875rem 0 1.875rem;
    margin-left: 0;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.875rem;
  }

  .narrow-cards-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .category-links {
    width: 100%;
    justify-content: center;
  }

  .preview-card-narrow {
    min-width: 240px;
    width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .preview-card-narrow.expanded {
    width: 240px;
  }

  .hero-title-block,
  .hero-description {
    display: none !important;
  }
}

.portfolio-grid-container {
  position: relative !important;
}

@media (min-width: 1616px) {
  .primary-nav {
    max-width: 1500px;
  }

  .category-links {
    gap: 20px;
  }

  .cta-button {
    width: 180px;
  }

  .desktop-title {
    font-size: 44.8px;
    line-height: 106%;
  }

  .service-badge,
  .footer-badge {
    font-size: 14px;
  }

  .advantage-card:nth-child(3) .card-bg-image {
    object-position: 74% center;
  }

  .category-link,
  .nav-link {
    font-size: 16px;
  }

  .vertical-text {
    max-height: 160px;
  }

  .show-more-button {
    width: 176px;
  }

  .statistics-header {
    width: 340px;
  }

  .statistics-header p {
    font-size: 36px;
  }

  .advantage-card {
    max-height: 750px;
  }

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

  .number-text {
    font-size: 27.2px;
  }

  .advantages-cards {
    gap: 40px;
  }

  .card-hover-text {
    font-size: 23px;
  }

  .card-title:nth-child(2) {
    max-width: 340px;
    margin-right: auto;
  }

  .why-us-section-subtitle {
    max-width: 420px;
  }

  .number-badge {
    width: 88px;
    height: 88px;
    border-radius: 50%;
  }

  .service-card-title {
    flex-shrink: 0;
  }

  .service-card-number {
    margin-top: auto;
    position: relative;
  }

  .service-card-footer {
    position: absolute;
    bottom: 14px;
    right: 0;
  }

  .show-more-button {
    font-size: 16px;
  }

  .service-card {
    min-height: 530px;
  }

  .service-card-wrapper {
    height: 470px;
  }

  .service-card-body {
    gap: 64px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .countdown-timer {
    font-size: 120.3px;
  }

  .promo-button {
    width: 174px;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 330px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 45%,
      transparent 50%,
      transparent 100%
    );
  }

  .section-title {
    font-size: 50px;
  }

  .advantages {
    padding: 110px 0;
  }

  .feature-item {
    font-size: 14.5px;
  }

  .card-hover-divider {
    position: absolute;
    width: 100%;
    left: 0;
    top: -8px;
    margin-bottom: 100px !important;
  }

  .card-hover-text {
    margin-bottom: 50px;
  }

  .card-hover-divider-grey {
    top: -30px !important;
    width: 100%;
  }

  .countdown-label,
  .countdown-unit {
    font-size: 15.5px;
  }

  .services-description {
    font-size: 24px;
  }

  .promo-button {
    font-size: 15px;
  }

  .countdown-labels {
    gap: 132px;
  }

  .more-services-desktop {
    display: none;
  }

  .category-link svg {
    display: none;
  }

  .business-improvement-frame {
    min-width: 1470px;
    height: 619px;
  }

  .business-improvement-frame .divider-line {
    width: 1518px;
    left: 15px;
    top: 483px;
  }

  .process-header-wrapper {
    gap: 1px;
    width: 1470px;
    height: 296px;
  }

  .main-title-h1 {
    width: 1470px;
    height: 166px;
    font-size: 50px;
  }

  .header-text-container {
    gap: 487px;
    width: 1470px;
    height: 108px;
  }

  .step-badge-indicator {
    display: none;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -10px;
  }

  .description-text-large {
    width: 760px;
    height: 108px;
    font-size: 30px;
  }

  .steps-container-grid {
    gap: 120px;
    width: 1470px;
    top: 349px;
  }

  .step-card-item {
    gap: 34px;
    width: 286px;
  }

  .step-heading-wrapper {
    gap: 23px;
    width: 286px;
    height: 85px;
  }

  .number-badge-circle {
    padding: 22px 18px;
    width: 86.6px;
    height: 85px;
    border-radius: 42px;
  }

  .badge-number-text {
    width: 26px;
    height: 23px;
    font-size: 23px;
  }

  .step-title-h5 {
    width: 177px;
    font-size: 23px;
  }

  .step-title-h5.title-01 {
    height: 23px;
  }

  .step-title-h5.title-02,
  .step-title-h5.title-03,
  .step-title-h5.title-04 {
    height: 45px;
  }

  .step-content-wrapper {
    gap: 40px;
    width: 286px;
  }

  .ellipse-indicator-container {
    width: 29px;
    height: 29px;
    border-radius: 15px;
    margin-top: 2px;
  }

  .ellipse-dot {
    width: 18px;
    height: 18px;
  }

  .step-description-text {
    width: 286px;
    font-size: 18px;
  }

  .portfolio-header-container {
    gap: 135px;
    margin-bottom: 64px;
  }

  .portfolio-main-heading {
    font-size: 50px;
    width: 480px;
  }

  .portfolio-description-text {
    font-size: 24px;
    width: 428px;
  }

  .portfolio-action-buttons-wrapper {
    width: 240px;
  }

  .portfolio-btn-primary {
    width: 230px;
    height: 41px;
    padding: 7px 12px;
    border-radius: 9px;
    gap: 2px;
  }

  .portfolio-btn-primary-text {
    font-size: 17px;
  }

  .portfolio-btn-arrow-icon {
    width: 26px;
    height: 26px;
  }

  .portfolio-grid-container {
    padding: 0 42px 0 42px;
    margin-left: -42px;
    margin-right: -42px;
  }

  .portfolio-card-item {
    width: calc(33.333% - 21.33px);
    height: 600px;
    padding: 48px;
    border-radius: 36px;
  }

  .portfolio-card-header-badge {
    padding: 12px 24px;
    border-radius: 40px;
  }

  .portfolio-card-title-text {
    font-size: 29px;
  }

  .portfolio-card-project-info {
    gap: 72px;
  }

  .portfolio-card-action-btn {
    width: 92px;
    height: 92px;
    padding: 6px 7px;
    border-radius: 46px;
  }

  .portfolio-card-services-list {
    width: 239px;
    gap: 7px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 5px 12px;
    border-radius: 19px;
  }

  .portfolio-service-tag-text {
    font-size: 17px;
  }

  .portfolio-view-all-btn {
    width: 113px;
    height: 113px;
    padding: 31px 18px;
    border-radius: 63px;
  }

  .portfolio-view-all-text {
    font-size: 29px;
  }

  .portfolio-view-all-arrow {
    width: 27px;
    height: 61px;
  }

  .hero-title-block h1 {
    font-size: 2.2rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    transform-origin: left center;
    letter-spacing: 0.12rem;
    line-height: 1;
    margin: 0;
  }

  .hero-title-block .big-letter,
  .hero-title-block .big-a-letter {
    font-size: 3rem !important;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    transform-origin: left center;
    letter-spacing: 0.12rem;
    line-height: 1;
    margin: 0;
  }
}

@media (max-width: 1616px) and (min-width: 980px) {
  body {
    max-width: 1290px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .contact-engagement-form {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .form-container-wrapper {
    max-width: 1270px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .contact-engagement-form .background-image {
    position: absolute;
    width: 100%;
    height: 120%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
    object-position: 10% 40%;
    z-index: 0;
  }

  .contact-engagement-form .dark-overlay {
    position: absolute;
    width: calc((100vw - 1270px) / 2 + 561px);
    height: 100%;
    left: 0;
    top: 0;
    background: #13233b;
    z-index: 1;
  }

  .site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .site-footer .container {
    max-width: 1270px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 630px) {
  .burger-menu-icon {
    display: flex;
    margin-left: 0;
    z-index: 1002;
  }

  .primary-nav-inner {
    padding: 0 1.25rem;
  }

  .logo img {
    height: 26px;
  }
}

@media (max-width: 1616px) {
  .primary-nav-inner {
    max-width: none;
    padding: 0 2.625rem;
  }

  .primary-nav {
    max-width: none;
  }
}

@media (min-width: 1616px) and (max-width: 2100px) {
  .primary-nav-inner {
    max-width: none;
    padding: 0 4rem;
  }

  .nav-link {
    font-size: 17px;
    padding: 1.22rem 1.25rem;
  }

  .primary-nav {
    max-width: none;
    padding: 1.5rem 1rem;
  }

  .cta-button {
    font-size: 17px;
    height: 42px;
  }

  .numbers {
    font-size: 17px;
  }

  .main-navigation {
    height: 42px;
  }

  .logo {
    height: 40px;
  }
}

@media (min-width: 2100px) {
  .primary-nav-inner {
    max-width: 2600px;
    padding: 0 5rem;
  }

  .nav-link {
    font-size: 19px;
    padding: 1.22rem 1.35rem;
  }

  .primary-nav {
    max-width: none;
    padding: 1.75rem 1rem;
  }

  .cta-button {
    font-size: 19px;
    height: 42px;
    width: 190px;
  }

  .numbers {
    font-size: 19px;
  }

  .main-navigation {
    height: 42px;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    font-size: 32px;
  }

  .brand-logo {
    height: 38px;
    gap: 10px;
  }

  .brand-logo img {
    width: 38px;
  }
}

@media (min-width: 1616px) {
  body {
    max-width: 1630px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .contact-engagement-form {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .form-container-wrapper {
    max-width: 1616px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .contact-engagement-form .background-image {
    position: absolute;
    width: 100%;
    height: 120%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
    object-position: 10% 40%;
    z-index: 0;
  }

  .contact-engagement-form .dark-overlay {
    position: absolute;
    width: calc((100vw - 1616px) / 2 + 790px);
    height: 100%;
    left: 0;
    top: 0;
    background: #13233b;
    z-index: 1;
  }

  .site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .site-footer .container {
    max-width: 1616px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 2120px) {
  html {
    zoom: 1.25;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    max-width: none !important;
  }

  body
    > *:not(.contact-engagement-form):not(.site-footer):not(.header):not(
      .feedback-contact-section-container
    ) {
    max-width: 1616px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-engagement-form,
  .site-footer {
    max-width: none !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
  }
}

/* uslugi/yandex.html*/

.hero-image-container {
  display: flex;
  width: 100%;
  height: 348px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 980px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-description {
    width: 100%;
  }

  .hero-image-container {
    height: 280px;
  }
}

/* yandex promotion section*/
.yandex-benefits-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.yandex-benefits-main-heading {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  margin-bottom: 40px;
  line-height: 100%;
}

.yandex-benefits-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.yandex-benefits-hero-card {
  width: 432px;
  height: 610px;
  position: relative;
  border-radius: 33.5867px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(67, 67, 67, 0) 53.88%, #0c47a0 90%);
  flex-shrink: 0;
}

.yandex-benefits-hero-card-image {
  width: 100%;
  height: 100%;
  object-position: 90% 0%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.yandex-benefits-hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(67, 67, 67, 0) 0%, #0c47a0 60%);
  z-index: 2;
}

.yandex-benefits-hero-card-title {
  position: absolute;
  width: 386.76px;
  left: 28.5px;
  bottom: 66.79px;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: #ffffff;
  z-index: 3;
}

.yandex-benefits-grid-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.yandex-benefits-card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 142px;
  padding: 25px 29px;
  gap: 10px;
  width: 100%;
  background: #f4f4f4;
  border-radius: 33px;
}

.yandex-benefits-card-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 85px;
  width: 100%;
}

.yandex-benefits-card-number-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 86px;
  color: #0c47a0;
  flex-shrink: 0;
}

.yandex-benefits-card-heading-title {
  width: 206px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
  flex-shrink: 0;
}

.yandex-benefits-card-description-text {
  flex: 1;
  min-width: 0;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

@media (min-width: 1312px) and (max-width: 1616px) {
  .yandex-benefits-main-heading {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .onetimeservices-main-heading {
    font-size: 2.4rem;
  }

  .yandex-benefits-content-wrapper {
    gap: 18px;
  }

  .yandex-benefits-hero-card {
    width: 432px;
    height: 626px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 48px;
    width: 386.76px;
    left: 28.5px;
    bottom: 66.79px;
  }

  .yandex-benefits-grid-container {
    gap: 14px;
  }

  .yandex-benefits-card-item {
    min-height: 142px;
    padding: 25px 29px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 65px;
  }

  .yandex-benefits-card-number-icon {
    min-width: 58px;
    font-size: 120px;
    line-height: 86px;
  }

  .yandex-benefits-card-heading-title {
    width: 206px;
    font-size: 22px;
  }

  .yandex-benefits-card-description-text {
    font-size: 18px;
  }
}

@media (min-width: 1616px) {
  .yandex-benefits-section {
    padding: 60px 0 0 0;
  }

  .yandex-benefits-main-heading {
    font-size: 50px;
    margin-bottom: 45px;
  }

  .onetimeservices-main-heading {
    font-size: 50px;
  }

  .yandex-benefits-content-wrapper {
    gap: 20px;
  }

  .yandex-benefits-hero-card {
    width: 470px;
    height: 665px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 52px;
    width: 420px;
    left: 31px;
    bottom: 73px;
  }

  .yandex-benefits-grid-container {
    gap: 16px;
  }

  .yandex-benefits-card-item {
    min-height: 155px;
    padding: 28px 32px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 95px;
  }

  .yandex-benefits-card-number-icon {
    min-width: 63px;
    font-size: 130px;
    line-height: 94px;
  }

  .yandex-benefits-card-heading-title {
    width: 225px;
    font-size: 26px;
  }

  .yandex-benefits-card-description-text {
    font-size: 19px;
  }
}

@media (min-width: 1312px) and (max-width: 1616px) {
  .yandex-benefits-section {
    padding: 65px 0 0 0;
  }
}

@media (min-width: 968px) and (max-width: 1312px) {
  .yandex-benefits-section {
    gap: 35px;
    padding: 70px 0 0 0;
  }

  .yandex-benefits-main-heading {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }

  .onetimeservices-main-heading {
    font-size: 2.4rem;
  }

  .yandex-benefits-content-wrapper {
    gap: 16px;
  }

  .yandex-benefits-hero-card {
    width: 360px;
    height: 556px;
    border-radius: 30px;
  }

  .yandex-benefits-hero-card-title {
    width: 320px;
    left: 25px;
    bottom: 55px;
    font-size: 40px;
  }

  .yandex-benefits-grid-container {
    gap: 12px;
  }

  .yandex-benefits-card-item {
    min-height: 130px;
    padding: 22px 26px;
    border-radius: 30px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 40px;
  }

  .yandex-benefits-card-number-icon {
    min-width: 50px;
    font-size: 100px;
    line-height: 75px;
  }

  .yandex-benefits-card-heading-title {
    width: 170px;
    font-size: 20px;
  }

  .yandex-benefits-card-description-text {
    font-size: 16px;
  }
}

@media (max-width: 968px) {
  .yandex-benefits-section {
    gap: 20px;
    padding: 70px 0 0 0;
  }

  .yandex-benefits-main-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .onetimeservices-main-heading {
    font-size: 40px;
  }

  .yandex-benefits-content-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .yandex-benefits-hero-card {
    width: 100%;
    height: 197.19px;
    border-radius: 33.5867px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 32px;
    width: 314px;
    left: 28px;
    bottom: 50px;
  }

  .yandex-benefits-grid-container {
    width: 100%;
    gap: 10px;
  }

  .yandex-benefits-card-item {
    min-height: auto;
    padding: 25px 29px;
  }

  .yandex-benefits-card-inner-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .yandex-benefits-card-number-icon {
    min-width: 40px;
    width: 40px;
    font-size: 60px;
    line-height: 60px;
    padding: 10px 10px 10px 0;
    align-self: flex-start;
  }

  .yandex-benefits-card-heading-title {
    width: 100%;
    font-size: 20px;
  }

  .yandex-benefits-card-description-text {
    width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .yandex-benefits-main-heading,
  .onetimeservices-main-heading {
    font-size: 2.2rem;
  }

  .yandex-benefits-hero-card {
    height: 180px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 28px;
    width: 280px;
    left: 20px;
    bottom: 40px;
  }

  .yandex-benefits-card-item {
    padding: 22px 25px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 18px;
  }

  .yandex-benefits-card-heading-title {
    font-size: 18px;
  }

  .yandex-benefits-card-description-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .yandex-benefits-section {
    gap: 15px;
  }

  .yandex-benefits-main-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .yandex-benefits-hero-card {
    height: 160px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 24px;
    width: 250px;
    left: 18px;
    bottom: 30px;
  }

  .yandex-benefits-card-item {
    padding: 20px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 15px;
  }

  .yandex-benefits-card-number-icon {
    font-size: 50px;
    line-height: 50px;
  }

  .yandex-benefits-card-heading-title {
    font-size: 16px;
  }

  .yandex-benefits-card-description-text {
    font-size: 14px;
  }
}

/* onetime services section*/
.onetimeservices-section-wrapper {
  width: 100%;
  padding: 10px 0 80px 0;
}

.discount-badge-container {
  position: absolute;
  overflow: hidden;
  height: 49px;
  right: 0px;
  top: 30px;
  z-index: 10;
}

.flag {
  position: relative;
  width: 77px;
  height: 39px;
}

.flag svg {
  width: 100%;
  height: 100%;
}

.flag-text {
  position: absolute;
  top: 52%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 500;
}

.onetimeservices-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.onetimeservices-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.onetimeservices-sub-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

.onetimeservices-cards-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10.5px;
  row-gap: 13px;
}

.servicecard-individual-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: #f4f4f4;
  box-shadow:
    inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
    inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(36.3611px);
  border-radius: 30px;
  position: relative;
  isolation: isolate;
}

.servicecard-content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  z-index: 0;
}

.servicecard-textblock-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.servicecard-title-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  max-width: 200px;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
}

.servicecard-body-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.servicecard-description-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.servicecard-description-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #393939;
}

.servicecard-timeline-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #393939;
}

.servicecard-price-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-label {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
  color: #939393;
}

.price-amount {
  font-size: 24px;
  font-weight: 500;
  color: #393939;
}

.servicecard-cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 103px;
  height: 34px;
  border: 1px solid #393939;
  border-radius: 9px;
  background: transparent;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.servicecard-cta-button:hover {
  background: #393939;
}

.servicecard-button-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  transition: color 0.3s ease;
}

.servicecard-cta-button:hover .servicecard-button-text {
  color: #ffffff;
}

@media (max-width: 1400px) {
  .onetimeservices-cards-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .onetimeservices-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .onetimeservices-section-wrapper {
    margin-bottom: 20px;
  }

  .onetimeservices-cards-grid-container {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}

@media (max-width: 630px) {
  .onetimeservices-main-heading,
  .yandex-benefits-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .onetimeservices-main-heading::first-letter,
  .yandex-benefits-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

.dropdown-item.active,
.mobile-submenu-link.active {
  color: #0c47a0;
  text-decoration: none;
}

@media (max-width: 630px) {
  .mobile-visible {
    display: block !important;
    width: 80%;
  }
}
