:root {
  --container-width: 1280px;

  --color-text: #010D27;
  --color-blue: #1335F2;
  --color-header-bg: #EEF2FF;
  --color-white: #FFFFFF;

  --font-main: "Open Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-main);
  background: var(--color-white);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  background: transparent;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text {
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.title {
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

/* Header */
.header {
  width: 100%;
  padding: 7px 0;
  background: var(--color-white);
}

.header__inner {
  min-height: 52px;
  padding: 6px;
  border-radius: 7px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-left: 13px;
}

.header__logo img {
  width: 165px;
  height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-left: auto;
  margin-right: 45px;
}

.header__nav-link {
  color: #010D27;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--color-blue);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header__contact-btn {
  min-width: 154px;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-blue);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__store-btn {
  width: 56px;
  height: 40px;
  border-radius: 5px;
  background: var(--color-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__store-btn img {
  max-width: 24px;
  max-height: 26px;
}

.applerr img{
	filter: brightness(0) invert(1);
}

.header__contact-btn:hover,
.header__store-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.header__burger {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 5px;
  background: var(--color-blue);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
}

.header__burger span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero block */
.hero-main {
  position: relative;
  min-height: 593px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(1, 13, 39, 0.72) 0%, rgba(1, 13, 39, 0.38) 39%, rgba(1, 13, 39, 0.04) 72%),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-main__container {
  position: relative;
  min-height: 593px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-main__content {
  width: 100%;
  max-width: 395px;
  padding-top: 4px;
}

.hero-main__title {
  margin: 0;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  letter-spacing: -0.02em;
}

.hero-main__text {
  margin: 26px 0 0;
  max-width: 360px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.hero-main__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 27px;
}

.hero-download {
  width: 210px;
  height: 38px;
  padding: 0 18px;
  border-radius: 4px;
  background: #FFFFFF;
  color: #010D27;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-download img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hero-download span {
  color: #010D27;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
}

.hero-download:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.hero-main__services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 127px;
  flex: 0 0 127px;
  margin-right: 39px;
}

.service-tile {
  width: 127px;
  height: 120px;
  padding: 7px 8px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-tile:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.service-tile img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.service-tile span {
  margin-top: 3px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}

/* Raffle block */
.raffle-section {
  padding: 80px 0 42px;
  background: #FFFFFF;
}

.raffle-card {
  position: relative;
  width: 100%;
  min-height: 322px;
  border-radius: 24px;
  background: #1838F5;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 52px 540px 48px 56px;
}

.raffle-card::before {
  content: "";
  position: absolute;
  left: -150px;
  top: 56px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.raffle-card__decor {
  display: none;
}

.raffle-card__content {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 15px 0;
}

.raffle-card__title {
  margin: 0;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
}

.raffle-card__text {
  margin: 23px 0 0;
  max-width: 390px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 118%;
}

.raffle-card__note {
  margin-top: 19px;
  width: 265px;
  min-height: 50px;
  padding: 9px 17px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raffle-card__image {
  position: absolute;
  z-index: 3;
  right: 24px;
  top: -154px;
  width: 640px;
  height: auto;
  pointer-events: none;
  user-select: none;
}
/* Responsive */
@media (max-width: 1180px) {
  .raffle-card {
    padding-right: 430px;
  }

  .raffle-card__image {
    width: 560px;
    right: -55px;
  }
}

@media (max-width: 1024px) {
  .header__inner {
    position: relative;
  }

  .header__nav {
    gap: 24px;
    margin-right: 20px;
  }

  .header__contact-btn {
    min-width: auto;
    padding: 0 16px;
  }

  .header__store-btn {
    width: 48px;
  }

  .hero-main,
  .hero-main__container {
    min-height: 540px;
  }

  .hero-main__services {
    margin-right: 0;
  }

  .raffle-card {
    min-height: 360px;
    padding: 48px 360px 48px 42px;
  }

  .raffle-card__title {
    font-size: 31px;
  }

  .raffle-card__image {
    width: 500px;
    right: -85px;
    bottom: -30px;
  }
}

@media (max-width: 860px) {
  .header__burger {
    display: inline-flex;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  body.menu-open .header__nav,
  body.menu-open .header__actions {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    background: var(--color-header-bg);
  }

  body.menu-open .header__nav {
    top: 74px;
    padding: 22px 20px 12px;
    border-radius: 7px 7px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
  }

  body.menu-open .header__actions {
    top: 205px;
    padding: 12px 20px 22px;
    border-radius: 0 0 7px 7px;
    flex-wrap: wrap;
  }

  .hero-main {
    min-height: auto;
    background-image:
      linear-gradient(90deg, rgba(1, 13, 39, 0.76) 0%, rgba(1, 13, 39, 0.48) 100%),
      url("../img/hero-bg.jpg");
    background-position: center center;
  }

  .hero-main__container {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-main__content {
    max-width: 560px;
  }

  .hero-main__title {
    font-size: 32px;
  }

  .hero-main__text {
    max-width: 520px;
    font-size: 16px;
  }

  .hero-main__services {
    width: 100%;
    flex: initial;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-right: 0;
  }

  .service-tile {
    width: 100%;
  }

  .service-tile {
    width: calc(50% - 8px);
   height: 140px;
  }

  .raffle-section {
    padding-top: 48px;
  }

  .raffle-card {
    min-height: auto;
    padding: 40px 32px 300px;
    align-items: flex-start;
  }

  .raffle-card__content {
    max-width: 100%;
  }

  .raffle-card__title {
    font-size: 30px;
  }

  .raffle-card__text {
    font-size: 15px;
    max-width: 520px;
  }

  .raffle-card__image {
    width: 430px;
    right: 50%;
    transform: translateX(50%);
    bottom: -64px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 12px;
  }

  .header__inner {
    min-height: 52px;
  }

  .header__logo {
    padding-left: 8px;
  }

  .header__logo img {
    width: 150px;
    height: auto;
  }

  .hero-main__container {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero-main__title {
    font-size: 27px;
  }

  .hero-main__text {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-download {
    width: 100%;
    max-width: 230px;
  }

  .service-tile {
    width: 100%;
  }

  .raffle-card {
    border-radius: 20px;
    padding: 34px 22px 265px;
  }

  .raffle-card::before {
    left: -190px;
    top: 10px;
  }

  .raffle-card__title {
    font-size: 25px;
  }

  .raffle-card__text {
    margin-top: 18px;
    font-size: 14px;
  }

  .raffle-card__note {
    width: 100%;
    max-width: 264px;
    font-size: 13px;
  }

  .raffle-card__image {
    width: 365px;
    bottom: -55px;
  }
}


/* Raffle responsive overrides */
@media (max-width: 1180px) {
  .raffle-card {
    min-height: 322px;
    padding: 52px 470px 48px 56px;
  }

  .raffle-card__image {
    width: 600px;
    right: -10px;
    top: -46px;
  }
}

@media (max-width: 1024px) {
  .raffle-card {
    min-height: 300px;
    padding: 44px 390px 42px 42px;
  }

  .raffle-card__title {
    font-size: 29px;
  }

  .raffle-card__text {
    font-size: 15px;
  }

  .raffle-card__image {
    width: 515px;
    right: -34px;
    top: -36px;
  }
}

@media (max-width: 860px) {
  .raffle-section {
    padding-top: 44px;
  }

  .raffle-card {
    min-height: auto;
    border-radius: 22px;
    padding: 36px 28px 285px;
    align-items: flex-start;
  }

  .raffle-card__content {
    max-width: 100%;
  }

  .raffle-card__title {
    font-size: 28px;
  }

  .raffle-card__text {
    font-size: 15px;
    max-width: 520px;
  }

  .raffle-card__image {
    width: 420px;
    right: 50%;
    top: auto;
    bottom: -52px;
    transform: translateX(50%);
  }
}

@media (max-width: 520px) {
  .raffle-card {
    border-radius: 20px;
    padding: 32px 20px 250px;
  }

  .raffle-card::before {
    left: -195px;
    top: 18px;
  }

  .raffle-card__title {
    font-size: 25px;
  }

  .raffle-card__text {
    margin-top: 18px;
    font-size: 14px;
  }

  .raffle-card__note {
    width: 100%;
    max-width: 265px;
    font-size: 12px;
  }

  .raffle-card__image {
    width: 355px;
    bottom: -48px;
  }
}



/* Features block */
.features-section {
  padding: 60px 0 120px;
  background: #FFFFFF;
}

.features-panel {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 72px;
}

.features-panel__media {
  width: 520px;
  height: 359px;
  border-radius: 20px;
  overflow: hidden;
}

.features-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-panel__content {
 
}

.features-panel__title {
  margin: 0 0 20px;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%;
  letter-spacing: -0.02em;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 7px;
  min-height: 88px;
  padding: 10px 14px 10px 20px;
  border-radius: 0;
  background: transparent;
  transition: background 0.2s ease, border-radius 0.2s ease, transform 0.2s ease;
}

.feature-item--active,
.feature-item:hover,
.feature-item:focus-within {
  border-radius: 14px;
  background: #EEF2FF;
}

.feature-item:hover {
  transform: translateY(-1px);
}

.feature-item__icon {
  width: 80px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.feature-item__body h3 {
  margin: 0 0 8px;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  transition: color 0.2s ease;
}

.feature-item__body p {
  margin: 0;
  color: #657083;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.feature-item:not(.feature-item--active) .feature-item__body h3 {
  color: #6B7280;
}

.feature-item:hover .feature-item__body h3,
.feature-item:focus-within .feature-item__body h3 {
  color: #010D27;
}

@media (max-width: 1024px) {
  .features-panel {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .features-panel__media {
    width: 100%;
    height: 330px;
  }

  .features-panel__title {
    font-size: 29px;
  }

  .feature-item {
    grid-template-columns: 70px 1fr;
    padding-left: 14px;
  }

  .feature-item__icon {
    width: 70px;
  }
}

@media (max-width: 860px) {
  .features-section {
    padding: 44px 0 60px;
  }

  .features-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .features-panel__media {
    width: 100%;
    height: auto;
    max-height: 430px;
  }

  .features-panel__media img {
    height: auto;
  }

  .features-panel__content {
    max-width: 100%;
  }

  .features-panel__title {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .features-section {
    padding: 34px 0 46px;
  }

  .features-panel {
    gap: 28px;
  }

  .features-panel__media {
    border-radius: 16px;
  }

  .features-panel__title {
    font-size: 26px;
  }

  .feature-item,
  .feature-item--active {
    grid-template-columns: 58px 1fr;
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }

  .feature-item__icon {
    width: 58px;
    height: 58px;
  }

  .feature-item__icon img {
    width: 52px;
    height: 52px;
  }

  .feature-item__body h3 {
    font-size: 17px;
  }

  .feature-item__body p {
    font-size: 12.5px;
  }
}



/* Why community block */
.why-section {
  padding: 20px 0 82px;
  background: #FFFFFF;
}

.why-card {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  background: #EEF2FF;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 54px;
  padding: 56px 56px 54px 50px;
  overflow: visible;
}

.why-card__image {
  position: absolute;
  left: -12px;
  bottom: -107px;
  z-index: 2;
  width: 540px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.why-card__content {
  grid-column: 2;
  max-width: 590px;
}

.why-card__title {
  margin: 0;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 600;
  line-height: 118%;
  letter-spacing: -0.02em;
}

.why-card__note {
  margin-top: 30px;
  width: 580px;
  max-width: 100%;
  min-height: 72px;
  border-radius: 10px;
  background: #1838F5;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding: 13px 22px;
  display: flex;
  align-items: center;
}

@media (max-width: 1180px) {
  .why-card {
    padding-left: 450px;
    gap: 40px;
  }

  .why-card__image {
    width: 420px;
  }

  .why-card__note {
    width: 540px;
  }
}

@media (max-width: 1024px) {
  .why-card {
    min-height: 300px;
    padding: 46px 38px 46px 390px;
  }

  .why-card__image {
    width: 380px;
    left: -26px;
    bottom: -22px;
  }

  .why-card__title {
    font-size: 28px;
  }

  .why-card__note {
    margin-top: 24px;
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  .why-section {
    padding: 28px 0 60px;
  }

  .why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px 0;
    overflow: hidden;
  }

  .why-card__image {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    width: 100%;
    max-width: 430px;
    margin: 20px auto -34px;
  }

  .why-card__content {
    max-width: 100%;
  }

  .why-card__title {
    font-size: 28px;
  }

  .why-card__note {
    width: 100%;
    min-height: auto;
    font-size: 17px;
    padding: 14px 18px;
  }
}

@media (max-width: 520px) {
  .why-section {
    padding: 24px 0 46px;
  }

  .why-card {
    border-radius: 20px;
    padding: 26px 20px 0;
  }

  .why-card__title {
    font-size: 24px;
  }

  .why-card__note {
    margin-top: 20px;
    font-size: 15px;
  }

  .why-card__image {
    max-width: 360px;
    margin-bottom: -28px;
  }
}



/* Start steps block */
.start-section {
  padding: 80px 0 120px;
  background: #FFFFFF;
}

.start-section__title {
  margin: 0 0 32px;
  color: #010D27;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.start-card {
  position: relative;
  min-height: 167px;
  border-radius: 12px;
  background: #1838F5;
  overflow: hidden;
  padding: 20px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.start-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.start-card__bg::before {
  content: "";
  position: absolute;
  left: -104px;
  bottom: -132px;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
}

.start-card__bg::after {
  content: "";
  position: absolute;
  right: -74px;
  top: 37px;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.start-card__number {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: 5px;
  background: #FFFFFF;
  color: #1838F5;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.start-card__icon {
  position: absolute;
  z-index: 2;
  left: 21px;
  top: 0;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.start-card__icon--phone {
  width: 100px;
  height: 120px;
  left: 26px;
  top: 0px;
}

.start-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 190px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.start-card:hover {
  transform: translateY(-2px);
}

.start-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start-card:hover {
  box-shadow: 0 14px 32px rgba(24, 56, 245, 0.16);
}

@media (max-width: 1024px) {
  .start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-card {
    min-height: 180px;
  }
}

@media (max-width: 860px) {
  .start-section {
    padding: 14px 0 60px;
  }

  .start-section__title {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .start-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .start-card {
    min-height: 160px;
  }

  .start-section__title {
    font-size: 26px;
    margin-bottom: 22px;
  }
}



/* Business free block */
.business-section {
  padding: 20px 0 80px;
  background: #FFFFFF;
}

.business-section__title {
  margin: 0 0 34px;
  color: #010D27;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%;
  letter-spacing: -0.02em;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.business-card {
  position: relative;
  min-height: 145px;
  border-radius: 10px;
  background: #EEF2FF;
  overflow: hidden;
  padding: 30px 245px 24px 29px;
}

.business-card__content {
  position: relative;
  z-index: 2;
  max-width: 230px;
}

.business-card__content h3 {
  margin: 0 0 15px;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.business-card__content p {
  margin: 0;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.business-card__image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  right: -28px;
  top: -45px;
  width: 250px;
}
}

.business-card__image--free-1 {
  right: -28px;
  top: -84px;
  width: 335px;
}

.business-card__image--free-2 {
  right: -20px;
  top: -82px;
  width: 330px;
}

.business-card__image--free-3 {
  right: -3px;
  top: -87px;
  width: 278px;
}

.business-card__image--free-4 {
  right: -30px;
  top: -69px;
  width: 270px;
}

.business-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 29px;
}

.business-section__btn {
  min-width: 170px;
  height: 36px;
  padding: 0 22px;
  border-radius: 5px;
  background: #1838F5;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 150%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.business-section__btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.business-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(24, 56, 245, 0.10);
}

@media (max-width: 1024px) {
  .business-card {
    padding-right: 210px;
  }

  .business-card__image--free-1,
  .business-card__image--free-2 {
    width: 285px;
  }

  .business-card__image--free-3,
  .business-card__image--free-4 {
    width: 245px;
  }
}

@media (max-width: 860px) {
  .business-section {
    padding: 10px 0 60px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 155px;
    padding-right: 260px;
  }

  .business-section__title {
    font-size: 30px;
  }
}

@media (max-width: 580px) {
  .business-section__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .business-grid {
    gap: 16px;
  }

  .business-card {
    min-height: 240px;
    padding: 26px 22px 145px;
  }

  .business-card__content {
    max-width: 100%;
  }

  .business-card__image--free-1 {
    right: -42px;
    top: 72px;
    width: 280px;
  }

  .business-card__image--free-2 {
    right: -48px;
    top: 78px;
    width: 280px;
  }

  .business-card__image--free-3 {
    right: -18px;
    top: 78px;
    width: 230px;
  }

  .business-card__image--free-4 {
    right: -48px;
    top: 82px;
    width: 235px;
  }

  .business-section__btn {
    width: 100%;
    max-width: 230px;
  }
}



/* FAQ block */
.faq-section {
 padding: 18px 0 206px;
  background: #FFFFFF;
}

.faq-section__title {
  margin: 0 0 30px;
  color: #010D27;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%;
  letter-spacing: -0.02em;
}

.faq-list {
  width: 100%;
  max-width: 558px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border-radius: 7px;
  background: #EEF2FF;
  overflow: hidden;
}

.faq-item[open] {
  background: #EEF2FF;
}

.faq-item__question {
  min-height: 59px;
  padding: 0 21px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__arrow {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.faq-item__arrow::before,
.faq-item__arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 8px;
  height: 2px;
  border-radius: 10px;
  background: #010D27;
  transition: transform 0.2s ease;
}

.faq-item__arrow::before {
  left: 0;
  transform: rotate(45deg);
}

.faq-item__arrow::after {
  right: 0;
  transform: rotate(-45deg);
}

.faq-item[open] .faq-item__arrow::before {
  transform: rotate(-45deg);
}

.faq-item[open] .faq-item__arrow::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 48px 18px 18px;
  color: #657083;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.faq-item {
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  background: #E8EDFF;
}

@media (max-width: 860px) {
  .faq-section {
    padding: 10px 0 64px;
  }

  .faq-section__title {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .faq-section {
    padding: 4px 0 48px;
  }

  .faq-section__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item__question {
    min-height: 56px;
    padding: 0 16px;
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 0 38px 16px 16px;
    font-size: 13px;
  }
}




/* Contact block */
.contact-section {
  padding: 34px 0 86px;
  background: #FFFFFF;
}

.contact-card {
  position: relative;
  min-height: 575px;
  border-radius: 21px;
  background: #1838F5;
  overflow: visible;
  padding: 29px 535px 24px 28px;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21px;
  background: #1838F5;
  z-index: 0;
  overflow: hidden;
}

.contact-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 705px;
}

.contact-form__title {
  margin: 0 0 26px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}

.contact-field {
  display: block;
  margin-bottom: 15px;
}

.contact-field span {
  display: block;
  margin-bottom: 7px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.19);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input {
  height: 35px;
  padding: 0 12px;
}

.contact-field textarea {
  height: 129px;
  padding: 10px 10px;
  resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}

.contact-checkbox input {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 1px;
  background: #FFFFFF;
  flex: 0 0 14px;
  position: relative;
}

.contact-checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #1838F5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 33px;
  margin-top: 27px;
  border: 0;
  border-radius: 6px;
  background: #FFFFFF;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-form__btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.contact-card__image {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: -1px;
  width: 610px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1180px) {
  .contact-card {
    padding-right: 455px;
  }

  .contact-form {
    max-width: 670px;
  }

  .contact-card__image {
    width: 560px;
    right: -70px;
  }
}

@media (max-width: 1024px) {
  .contact-card {
    min-height: 545px;
    padding: 29px 365px 24px 24px;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-card__image {
    width: 485px;
    right: -88px;
  }
}

@media (max-width: 860px) {
  .contact-section {
    padding: 20px 0 64px;
  }

  .contact-card {
    min-height: auto;
    padding: 30px 24px 385px;
    overflow: hidden;
  }

  .contact-card::before {
    overflow: hidden;
  }

  .contact-card__image {
    right: 50%;
    bottom: -42px;
    width: 420px;
    transform: translateX(50%);
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding: 16px 0 48px;
  }

  .contact-card {
    border-radius: 18px;
    padding: 26px 18px 330px;
  }

  .contact-card::before {
    border-radius: 18px;
  }

  .contact-form__title {
    font-size: 27px;
  }

  .contact-card__image {
    width: 355px;
    bottom: -35px;
  }
}



/* Footer */
.footer {
  padding: 0 0 42px;
  background: #FFFFFF;
}

.footer__inner {
  border-radius: 8px;
  background: #EEF2FF;
  padding: 18px 18px 17px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo img {
  width: 158px;
  height: auto;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer__nav a {
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #1838F5;
}

.footer__line {
  width: 100%;
  height: 1px;
  margin: 13px 0 13px;
  background: rgba(24, 56, 245, 0.22);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__copyright {
  margin: 0;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 150%;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #1838F5;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 13, 39, 0.52);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 18px;
  background: #FFFFFF;
  padding: 30px 32px 28px;
  box-shadow: 0 24px 80px rgba(1, 13, 39, 0.22);
}

.modal__close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #EEF2FF;
  color: #010D27;
  font-size: 26px;
  line-height: 30px;
  cursor: pointer;
}

.modal__title {
  margin: 0 40px 20px 0;
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
}

.modal__content {
  color: #010D27;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}

.modal__content p {
  margin: 0 0 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #EEF2FF;
  cursor: pointer;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #1838F5;
}

.cookie-option strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.modal__save {
  margin-top: 18px;
  min-width: 172px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: #1838F5;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  cursor: pointer;
}

@media (max-width: 680px) {
  .footer__top,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer__nav,
  .footer__links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .footer__inner {
    padding: 18px 16px;
  }

  .modal__dialog {
    padding: 26px 20px 22px;
  }

  .modal__title {
    font-size: 24px;
  }
  
  .business-card__image {top: 41px;}
  
}
