@charset "UTF-8";
/**
 *  Function "rem" Converts px to rem (based on 16px root font size).
 *
 * Why:
 *  - Keeps spacing, fonts, and layout elements scalable and consistent.
 *  - Makes the whole design respond to root font-size changes.
 *
 * Example:
 *  rem(32) → 2rem
 *
 * Notes:
 *  - Pass only unitless numbers (no "px").
 *  - Use rem(24) for normal properties (e.g. font-size, margin, padding).
 *  - Pass negative values directly into the function, e.g. rem(-8),
 *    not as -rem(8). This keeps syntax consistent, makes the original px value clear and prevents double-minus mistakes. 
 */
/* Media Queries Screens Variables */
/**
 * Mixin "fluid-size" makes any CSS property change smoothly between two values 
 * as the screen width grows from 370px to 1164px.
 *
 * Example:
 *  @include fluid-size(width, 60, 100);
 *  width will grow from 60px (at 370px viewport) to 100px (at 1164px viewport).
 *
 *  Works with rem in the final CSS for better scalability.
 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
  /* offset for fixed header */
}
@media (min-width: 62rem) {
  html {
    scroll-padding-top: 6.875rem;
  }
}

body {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
img {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  all: unset;
  cursor: pointer;
}

textarea:focus,
input:focus {
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid transparent;
  min-width: 10rem;
}
@media (min-width: 36rem) {
  .btn {
    font-size: 1.125rem;
  }
}
@media (min-width: 62rem) {
  .btn {
    font-size: 1.25rem;
  }
}
.btn:active {
  transform: scale(0.98);
}
.btn:hover {
  border-color: transparent;
}
.btn--outline {
  background-color: #fff;
  border-color: #212a31;
  color: #212a31;
}
.btn--outline:hover {
  background-color: #191314;
  color: #fff;
}
.btn--primary {
  background-color: #eaf941;
  color: #212a31;
}
.btn--primary:hover {
  background-color: #191314;
  color: #fff;
}
.btn--secondary {
  background-color: #191314;
  color: #e3e3e3;
  fill: red;
}
.btn--with-arrow {
  gap: 0.75rem;
}
.btn--with-arrow::after {
  content: "";
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'><path d='M10.9785 0H4.9785V1H10.2715L0 11.2715L0.707 11.9785L10.9785 1.707V7H11.9785V1C11.9785 0.4485 11.53 0 10.9785 0Z'/></svg>") no-repeat center;
  mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'><path d='M10.9785 0H4.9785V1H10.2715L0 11.2715L0.707 11.9785L10.9785 1.707V7H11.9785V1C11.9785 0.4485 11.53 0 10.9785 0Z'/></svg>") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.3s ease;
}
.btn--with-arrow:hover::after {
  transform: translate(3px, -3px);
}

.section-description {
  line-height: 1.4;
  opacity: 0.8;
}
@media (min-width: 48rem) {
  .section-description {
    font-size: 1.125rem;
  }
}
@media (min-width: 62rem) {
  .section-description {
    font-size: 1.4375rem;
  }
}
.section-description p + p {
  margin-top: 0.625rem;
}

/*** all styles ***/
.heading {
  font-family: "Red Rose", serif;
}
.heading--page {
  font-size: clamp(1.25rem, 5vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 1.5625rem;
  font-weight: 500;
}
@media (min-width: 62rem) {
  .heading--page {
    margin-bottom: 2.5rem;
  }
}
.heading--section {
  text-transform: uppercase;
  font-size: clamp(1.5625rem, 5vw, 2.375rem);
  line-height: 1.3;
  margin-bottom: 0.375rem;
  font-weight: 600;
}
.heading--card {
  text-transform: uppercase;
  font-size: clamp(1.125rem, 5vw, 1.5625rem);
  line-height: 1.3;
  font-weight: 500;
}
.heading--bold {
  font-weight: 700;
}

.wrapper {
  background-color: #f9f9f9;
}

.container {
  max-width: 87.5rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.container--xs {
  max-width: 62.5rem;
}
.container--sm {
  max-width: 75rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border: 1px solid #000;
  border-radius: 6.25rem;
  white-space: nowrap;
  font-size: 0.875rem;
}
@media (min-width: 48rem) {
  .tag {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 62rem) {
  .tag {
    font-size: 1rem;
  }
}
@media (min-width: 75rem) {
  .tag {
    padding: 0.75rem 1.5rem;
  }
}
.tag--accent {
  background-color: #eaf941;
  border-color: #eaf941;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group__label {
  margin-bottom: 0.375rem;
  font-weight: 600;
}
.form-group__field {
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #fff;
  transition: all 0.2s;
}
.form-group__field::-moz-placeholder {
  color: #6b7280;
}
.form-group__field::placeholder {
  color: #6b7280;
}
.form-group__field:focus {
  border-color: rgb(196.75, 196.75, 196.75);
}
.form-group__field--invalid {
  border-color: #f04438 !important;
}
.form-group__field:invalid:not(:-moz-placeholder):not(:focus) {
  border-color: #f04438;
}
.form-group__field:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #f04438;
}
.form-group__error {
  color: #f04438;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.form-group textarea {
  resize: none;
}

.privacy-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.privacy-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.privacy-checkbox__input:checked + .privacy-checkbox__custom::after {
  display: block;
}
.privacy-checkbox__custom {
  position: relative;
  top: 2px;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.privacy-checkbox__custom--invalid {
  border-color: #f04438 !important;
}
.privacy-checkbox__custom::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 0.3125rem;
  height: 0.5625rem;
  border: solid #212a31;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.privacy-checkbox__text {
  flex-grow: 1;
  color: #6b7280;
}
.privacy-checkbox__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.privacy-checkbox__text a:hover {
  color: rgb(60.5574468085, 64.5191489362, 72.4425531915);
}
.privacy-checkbox__error {
  width: 100%;
  color: #f04438;
  font-size: 0.875rem;
  margin-top: -0.5rem;
}

.upload {
  border: 1px dashed #ebebeb;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.upload--dragover {
  border-color: #212a31;
  background-color: rgba(0, 0, 0, 0.02);
}
.upload__icon {
  margin-bottom: 0.75rem;
  width: 1.25rem;
}
.upload__text {
  color: #475467;
}
.upload__accent {
  color: #212a31;
  font-weight: 600;
}
.upload__hint {
  color: #6b7280;
}
.upload__error {
  color: #f04438;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.upload__file-list {
  width: 100%;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.upload__file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #212a31;
  font-weight: 500;
  background: rgba(33, 42, 49, 0.05);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}
.upload__file-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}
.upload__file-item .upload__clear {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: rgba(33, 42, 49, 0.1);
  font-size: 0.625rem;
  font-weight: 700;
  transition: background 0.2s;
  flex-shrink: 0;
}
.upload__file-item .upload__clear:hover {
  background: rgba(33, 42, 49, 0.2);
}

.header {
  padding: 1rem 0 0.625rem;
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
  background-color: rgba(249, 249, 249, 0.6);
}
@media (min-width: 36rem) {
  .header {
    padding: 1rem 0 0.625rem;
  }
}
@media (min-width: 62rem) {
  .header {
    padding: 2.5rem 0 1.5rem;
  }
}
@media (min-width: 62rem) {
  .header__btn {
    padding: 0.375rem 1.875rem;
  }
}
.header__logo {
  padding: 0.625rem 0;
  margin-right: auto;
}
.header__logo img {
  width: 100%;
}
@media (min-width: 62rem) {
  .header__logo {
    width: 5.625rem;
    margin-right: 0;
  }
}
.header__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100dvh;
  background-color: #fff;
  z-index: 1000;
  padding: 1.875rem 1.25rem;
  transition: left 0.4s ease-in-out;
}
@media (min-width: 62rem) {
  .menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    transition: none;
  }
}
.menu.is-open {
  left: 0;
}
.menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 62rem) {
  .menu__top {
    display: none;
  }
}
.menu__btn {
  margin-top: auto;
  font-size: 1.25rem;
}
@media (min-width: 36rem) {
  .menu__btn {
    align-self: flex-start;
  }
}
@media (min-width: 62rem) {
  .menu__btn {
    display: none;
  }
}
.menu__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  flex-grow: 1;
  overflow-x: auto;
}
@media (min-width: 62rem) {
  .menu__nav {
    flex-direction: row;
    gap: 0.25rem;
  }
}
@media (min-width: 75rem) {
  .menu__nav {
    gap: 0.75rem;
  }
}
.menu__link {
  font-family: var(--font-main);
  font-size: 1.125rem;
  color: #212a31;
  font-weight: 400;
  padding: 0.625rem 0;
}
@media (min-width: 62rem) {
  .menu__link {
    font-size: 1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: font-weight 0.2s;
    padding: 0.625rem 0.625rem;
  }
  .menu__link::after {
    content: attr(data-text);
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none;
    font-weight: 700;
    display: block;
  }
  .menu__link:hover {
    font-weight: 700;
  }
}
.menu__burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: -0.625rem;
}
.menu__burger img {
  width: 1.25rem;
}
.menu__close img {
  width: 1rem;
}
.menu__burger, .menu__close {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 62rem) {
  .menu__burger, .menu__close {
    display: none;
  }
}

.hero {
  min-height: 60dvh;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 48rem) {
  .hero {
    position: relative;
    padding-top: 2.5rem;
  }
}
@media (min-width: 75rem) {
  .hero {
    min-height: 70dvh;
  }
}
.hero__title {
  margin-top: 10%;
  max-width: 31.25rem;
}
.hero__container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hero__wrapper {
  flex-grow: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 48rem) {
  .hero__wrapper {
    grid-template-columns: minmax(0, 1fr) 1fr;
  }
}
.hero__info, .hero__media {
  height: 100%;
  border-radius: 2.5rem;
  min-height: 21.4375rem;
  display: flex;
  flex-direction: column;
}
.hero__info {
  background-color: #fff;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5625rem 1.25rem 4.375rem;
  position: relative;
}
@media (min-width: 48rem) {
  .hero__info {
    position: static;
    padding: 4.375rem 2rem 6.25rem;
    background-color: transparent;
    background-image: url("../../images/hero-left-bg.svg");
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
}
.hero__media {
  background-color: #eaf941;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media (min-width: 48rem) {
  .hero__media {
    background-color: transparent;
  }
  .hero__media::before, .hero__media::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #eaf941;
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
  }
  .hero__media::before {
    mask-image: url("../../images/hero-right-bg.svg");
    -webkit-mask-image: url("../../images/hero-right-bg.svg");
    left: 0;
    mask-position: left bottom;
    -webkit-mask-position: left bottom;
    width: 30%;
  }
  .hero__media::after {
    mask-image: none;
    -webkit-mask-image: none;
    right: 0;
    mask-position: right bottom;
    -webkit-mask-position: right bottom;
    width: 70%;
  }
}
@media (min-width: 62rem) {
  .hero__media {
    justify-content: flex-end;
  }
  .hero__media::after {
    mask-image: url("../../images/hero-right-bg.svg");
    -webkit-mask-image: url("../../images/hero-right-bg.svg");
  }
}
.hero__media img {
  max-width: 13.75rem;
}
@media (min-width: 36rem) {
  .hero__media img {
    max-width: 15rem;
  }
}
@media (min-width: 48rem) {
  .hero__media img {
    max-width: 90%;
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 62rem) {
  .hero__media img {
    max-width: 100%;
  }
}
@media (min-width: 75rem) {
  .hero__media {
    justify-content: flex-end;
  }
}
.hero__bottom {
  margin-top: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__tags {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
}
.hero__tags-list {
  width: 100%;
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  padding-top: 2.5rem;
  padding-right: 0.625rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  /* IE и Edge */
  scrollbar-width: none;
  /* Firefox */
}
.hero__tags-list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 62rem) {
  .hero__tags-list {
    gap: 1rem;
  }
}

.explore {
  z-index: 1;
  position: absolute;
  width: 6rem;
  height: 6rem;
  padding: 0.25rem;
  border-radius: 50%;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.3s ease;
  bottom: -2.9375rem;
  left: 50%;
  transform: translate(-50%);
}
@media (min-width: 48rem) {
  .explore {
    padding: 0;
    bottom: 50%;
    left: 50%;
    width: 6.25rem;
    height: 6.25rem;
    bottom: -3.125rem;
    border-radius: 36%;
  }
  .explore:hover .explore__text {
    scale: 1.1;
  }
}
.explore__text {
  transition: scale 0.3s ease;
  scale: 1;
  width: 100%;
  height: 100%;
  animation: rotateExplore 26s linear infinite;
}
.explore__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@keyframes rotateExplore {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.cta {
  padding: clamp(2.5rem, 10vw, 6.25rem) 0;
}
.cta--neon {
  background-color: #eaf941;
  background: linear-gradient(to bottom, #f9f9f9 0%, #eaf941 100%);
}
.cta--center {
  text-align: center;
}
.cta--center .cta__container {
  margin: 0 auto;
  align-items: center;
}
.cta__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.cta__title {
  margin-bottom: 1rem;
}
.cta__description {
  max-width: 60rem;
}
.cta__btn {
  margin-top: 1.5rem;
}
@media (min-width: 48rem) {
  .cta__btn {
    margin-top: 2.125rem;
  }
}
@media (min-width: 75rem) {
  .cta__btn {
    margin-top: 3rem;
  }
}

.cases {
  overflow: hidden;
  padding: clamp(2.5rem, 10vw, 8.75rem) 0 clamp(2.5rem, 10vw, 5rem);
}
.cases__grid {
  min-width: 0;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 62rem) {
  .cases__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.cases__text-swiper {
  position: relative;
  width: 100%;
  min-width: 0;
}
.cases__text-swiper .swiper-wrapper {
  width: 100%;
  display: flex;
}
@media (min-width: 48rem) {
  .cases__text-swiper .swiper-wrapper {
    align-items: center;
  }
}
.cases__text-swiper .swiper-slide {
  pointer-events: none;
  opacity: 0 !important;
  height: 100%;
  position: relative;
  left: 0 !important;
  top: 0;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.cases__text-swiper .swiper-slide-active {
  pointer-events: auto;
  opacity: 1 !important;
}
.cases__visual {
  position: relative;
  width: 100%;
  justify-self: end;
}
.cases__mockup {
  position: relative;
  width: 100%;
  line-height: 0;
}
.cases__frame-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cases__visual, .cases__controls {
  order: -1;
}
@media (min-width: 62rem) {
  .cases__visual, .cases__controls {
    order: initial;
  }
}
.cases__controls {
  display: flex;
  justify-content: center;
  width: auto;
  gap: 1.5rem;
}
@media (min-width: 62rem) {
  .cases__controls {
    grid-column: 1/-1;
  }
}
.cases__control-btn {
  z-index: 200;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.cases__control-btn--prev:hover {
  transform: translateX(-0.25rem);
}
.cases__control-btn--next .cases__control-icon {
  transform: rotate(-180deg);
}
.cases__control-btn--next:hover {
  transform: translateX(0.25rem);
}
.cases__pagination {
  position: static;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 25;
}
.cases__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  opacity: 1;
  background-color: #212a31 !important;
  transition: all 0.3s ease !important;
}
.cases__pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 1.5625rem !important;
  border-radius: 0.1875rem;
}
.cases__screen-swiper {
  position: absolute;
  top: 5%;
  left: 4%;
  right: 4%;
  bottom: 5%;
  z-index: 1;
  overflow: hidden;
}
.cases__screen-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.cases__screen-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.case-card__description {
  font-size: 1.125rem;
}
@media (min-width: 48rem) {
  .case-card__description {
    font-size: 1.25rem;
  }
}
.case-card__top {
  text-align: center;
}
@media (min-width: 62rem) {
  .case-card__top {
    text-align: left;
  }
}
.case-card__info {
  display: flex;
  gap: 1.5rem;
  color: #2d3139;
  font-size: 1rem;
  font-weight: 500;
}
.case-card__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}
.case-card__info-item img {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.7;
}
.case-card__stats {
  display: flex;
  gap: 0.625rem;
  line-height: 1.2;
  justify-content: space-between;
}
@media (min-width: 48rem) {
  .case-card__stats {
    gap: 2.5rem;
    justify-content: flex-start;
  }
}
.case-card__stat {
  text-align: center;
}
.case-card__stat-value {
  text-transform: uppercase;
  font-size: clamp(1rem, 5vw, 1.375rem);
  line-height: 1.3;
  font-weight: 500;
}
.case-card__stat-label {
  font-size: 1rem;
}
@media (min-width: 48rem) {
  .case-card__stat-label {
    font-size: 1.125rem;
  }
}
.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.case-card__tag {
  height: 2.5rem;
  padding-block: 0;
}

.trusted {
  padding: clamp(2.5rem, 10vw, 6.25rem) 0;
  overflow: hidden;
}
.trusted__title {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  color: #a1a1a1;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .trusted__title {
    margin-bottom: 2.5rem;
  }
}
.trusted__slider {
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 85%, transparent);
          mask-image: linear-gradient(to right, transparent, black 5%, black 85%, transparent);
}
.trusted__track {
  display: flex;
  gap: 1.875rem;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.trusted__track:hover {
  animation-play-state: paused;
}
@media (min-width: 48rem) {
  .trusted__track {
    gap: 2.5rem;
  }
}
.trusted__item {
  display: flex;
  align-items: center;
}
.trusted__item img {
  width: auto;
  opacity: 0.7;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 48rem) {
  .trusted__item img {
    max-height: initial;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.pricing {
  padding: clamp(2.5rem, 10vw, 6.25rem) 0;
}
.pricing__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  flex-direction: column;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .pricing__header {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 62rem) {
  .pricing__header {
    margin-bottom: 5rem;
  }
}
@media (min-width: 75rem) {
  .pricing__header {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 2.5rem;
  }
}
.pricing__title {
  flex: 1;
  margin-bottom: 1rem;
}
@media (min-width: 75rem) {
  .pricing__description {
    max-width: 37.5rem;
  }
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 62rem) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(33, 42, 49, 0.05);
}
.pricing-card--featured {
  background-color: #eaf941;
  border: none;
}
@media (min-width: 62rem) {
  .pricing-card--featured {
    transform: scale(1.04);
  }
}
.pricing-card--featured .pricing-card__btn {
  background-color: #eaf941;
}
.pricing-card--featured .pricing-card__btn:hover {
  background-color: #191314;
}
.pricing-card__badge {
  display: inline-flex;
  background: #fff;
  padding: 0.5rem 0.75rem 0.375rem;
  border-radius: 6.25rem;
  line-height: 1;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.pricing-card__content {
  flex-grow: 1;
}
.pricing-card__title {
  margin-bottom: 0.5rem;
}
.pricing-card__title-br {
  display: none;
}
@media (min-width: 62rem) {
  .pricing-card__title-br {
    display: block;
  }
}
.pricing-card__text {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}
@media (min-width: 48rem) {
  .pricing-card__text {
    font-size: 1rem;
  }
}
.pricing-card__price {
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(33, 42, 49, 0.05);
}
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.pricing-card__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 1rem;
  height: 1rem;
  background-color: #212a31;
  -webkit-mask-image: url("../../images/icons/check.svg");
          mask-image: url("../../images/icons/check.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.pricing-card__btn {
  padding: 1.125rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}
.pricing-card__btn::after {
  font-size: 1em;
}

.cta-contact {
  position: relative;
  padding: clamp(2.5rem, 10vw, 6.25rem) 0;
  overflow: hidden;
}
.cta-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 230%;
  height: 115%;
  mask-image: url("data:image/svg+xml,%3Csvg width='1440' height='577' viewBox='0 0 1440 577' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 605H1486L1136.78 102.5L0 0V605Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='1440' height='577' viewBox='0 0 1440 577' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 605H1486L1136.78 102.5L0 0V605Z' fill='black'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  background-color: #eaf941;
}
@media (min-width: 48rem) {
  .cta-contact::before {
    left: -30%;
    width: 140%;
    height: 100%;
  }
}
@media (min-width: 75rem) {
  .cta-contact::before {
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.cta-contact__container {
  position: relative;
  z-index: 1;
}
.cta-contact__grid {
  display: grid;
  gap: 3.75rem;
  align-items: center;
}
@media (min-width: 48rem) {
  .cta-contact__grid {
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 62rem) {
  .cta-contact__grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
  }
}
.cta-contact__content {
  text-align: center;
  align-self: end;
}
@media (min-width: 48rem) {
  .cta-contact__content {
    text-align: left;
  }
}
@media (min-width: 75rem) {
  .cta-contact__content {
    max-width: 35.625rem;
    margin-inline: auto;
  }
}
.cta-contact__title {
  margin-bottom: 1rem;
}
.cta-contact__text {
  margin-bottom: 2rem;
}

.phone-frame {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.phone-frame__img {
  display: block;
  width: 20rem;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.phone-frame__screen {
  position: absolute;
  top: 2%;
  left: 5%;
  right: 5%;
  bottom: 2%;
  border-radius: 2.25rem;
  overflow: hidden;
  z-index: 1;
}
.phone-frame__screen iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.2);
}
.phone-frame__map-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.contact {
  background-color: #eaf941;
  padding: clamp(2.5rem, 10vw, 6.25rem) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 1.25rem;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  align-items: start;
}
@media (min-width: 62rem) {
  .contact__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media (min-width: 75rem) {
  .contact__grid {
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
}
@media (min-width: 62rem) {
  .contact__form-wrapper {
    grid-row: 1/3;
  }
}
.contact__text {
  order: -1;
}
@media (min-width: 62rem) {
  .contact__text {
    order: 0;
  }
}
@media (min-width: 62rem) {
  .contact__info {
    align-self: end;
  }
}
.contact__title {
  margin-bottom: 0.625rem;
}
@media (min-width: 75rem) {
  .contact__title {
    margin-bottom: 2.5rem;
  }
}
.contact__form {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .contact__form {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 62rem) {
  .contact__form {
    padding: 1.5rem 2rem;
  }
}

.contact-details__item {
  background: #fff;
  border-radius: 1rem;
  padding: 0.9375rem 1.5625rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #212a31;
  border: 1px solid #ebebeb;
}
.contact-details__item + .contact-details__item {
  margin-top: 0.9375rem;
}
.contact-details__item strong {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  font-family: "Red Rose", serif;
}
.contact-details__item p {
  margin: 0;
  font-weight: 600;
}

.services {
  padding: clamp(2.5rem, 10vw, 6.25rem) 0;
}
.services__container {
  margin-top: 4.0625rem;
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 48rem) {
  .services__container {
    margin-top: 2.8125rem;
  }
}
@media (min-width: 62rem) {
  .services__container {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
    margin-top: 4.0625rem;
  }
}
@media (min-width: 75rem) {
  .services__container {
    margin-top: 5.9375rem;
  }
}
.services__info {
  max-width: 28.125rem;
}
.services__list {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 36rem) {
  .services__list > *:nth-child(2) {
    margin-left: 15%;
  }
}
@media (min-width: 62rem) {
  .services__list {
    gap: 3.5rem;
  }
}

.service-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 1.25rem;
}
@media (min-width: 62rem) {
  .service-card__header {
    margin-bottom: 1.5rem;
  }
}
.service-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.625rem, 5vw, 1.875rem);
  height: clamp(1.625rem, 5vw, 1.875rem);
  background-color: #eaf941;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.service-card__link:hover {
  transform: translate(5px, -5px);
}
.service-card__link svg {
  width: 0.625rem;
}
@media (min-width: 62rem) {
  .service-card__link svg {
    width: 0.75rem;
  }
}
.service-card__text {
  line-height: 1.4;
  max-width: 37.5rem;
  color: #6b7280;
}
@media (min-width: 62rem) {
  .service-card__text {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}/*# sourceMappingURL=main.css.map */