.n_hero {
}
.n_hero__wrapper {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
}
.n_hero__content {
  border-radius: 24px;
  background: linear-gradient(90deg, #1353ba 0%, #307ef3 53.85%, #6fb1fc 89.9%);
  position: relative;
}
.n_hero__content::before {
  content: "";
  position: absolute;
  width: 582px;
  height: 100%;
  right: -4px;
  top: 1px;
  background-image: url(/img/hero/banner.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

.n_hero__inner {
  max-width: 626px;
  width: 100%;
  padding: 72px 0 104px 60px;
}
.n_hero__title {
  color: #fff;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 28px;
}
.n_hero__description {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 72px;
}
.n_hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.n_hero__button {
  padding: 16px 32px;
  border-radius: 12px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.n_hero__button--primary {
  width: 240px;
  color: #1d1e25;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.n_hero__button--primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.n_hero__button--secondary {
  background: transparent;
  color: white;
  border: 1px solid #fff;
}

.n_hero__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1240px) {
  .n_hero__content::before {
    display: none;
  }
  .n_hero__inner {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .n_hero__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .n_hero__description {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 52px;
  }
  .n_hero__inner {
    padding: 40px 16px 68px;
  }
  .n_hero__buttons {
    flex-direction: column;
  }
  .n_hero__button {
    max-width: 768px;
    width: 100%;
  }
}
/* how-to-use --------------> */

.n_how-to-use {
  padding: 80px 0;
  position: relative;
}

.n_how-to-use__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.n_how-to-use__title {
  color: #1d1e25;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 16px;
}

.n_how-to-use__subtitle {
  color: #1d1e25;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.n_how-to-use__content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.n_how-to-use__steps {
  flex: 1;
  max-width: 500px;
}

.n_how-to-use__step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  border-radius: 12px;
}

.n_how-to-use__step--active {
  transform: translateX(10px);
}

.n_how-to-use__step--active .n_how-to-use__step-number {
  background-color: #307ef3;
  color: #fff;
  border: 2px solid rgba(48, 126, 243, 0.4);
  transform: scale(1.1);
}

.n_how-to-use__step--active .n_how-to-use__step-title,
.n_how-to-use__step--active .n_how-to-use__step-text {
  color: #2c3e50;
  font-weight: 600;
}

.n_how-to-use__step-number {
  min-width: 40px;
  height: 40px;
  color: #1d1e25;
  border: 1px solid #efefef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.n_how-to-use__step-content {
  flex: 1;
}

.n_how-to-use__step-text {
  color: #1d1e25;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.n_how-to-use__visual {
  flex: 1;
}

.n_how-to-use__laptop {
  position: relative;
  display: inline-block;
  max-width: 768px;
  width: 100%;
}

.n_how-to-use__laptop-screen {
  position: relative;
  display: inline-block;
  width: 100%;
}

.n_how-to-use__laptop-image {
  max-width: 768px;
  width: 100%;
  display: block;
  height: auto;
}

.n_how-to-use__video-container {
  position: absolute;
  top: 1.5%;
  left: 11.5%;
  width: 77%;
  height: 80%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  background: #000;
}

.n_how-to-use__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.n_how-to-use__video-html5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
  }
  50% {
    box-shadow: 0 8px 35px rgba(74, 144, 226, 0.3);
  }
  100% {
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
  }
}

.n_how-to-use__step--active {
  animation: pulse 2s ease-in-out infinite;
}
.n_how-to-use__laptop-image {
  max-width: 768px;
  width: 100%;
}
@media (max-width: 1024px) {
  .n_how-to-use__content {
    flex-direction: column;
    gap: 50px;
  }

  .n_how-to-use__visual {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .n_how-to-use {
    padding: 60px 0;
  }

  .n_how-to-use__title {
    font-size: 28px;
  }

  .n_how-to-use__subtitle {
    font-size: 16px;
  }

  .n_how-to-use__content {
    gap: 40px;
  }

  .n_how-to-use__step {
    padding: 16px;
    margin-bottom: 20px;
  }

  .n_how-to-use__step--active {
    transform: translateX(5px);
  }

  .n_how-to-use__step-title {
    font-size: 16px;
  }

  .n_how-to-use__step-text {
    font-size: 15px;
  }
}

.n_how-to-use__step {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.n_how-to-use__step:nth-child(1) {
  animation-delay: 0.1s;
}
.n_how-to-use__step:nth-child(2) {
  animation-delay: 0.2s;
}
.n_how-to-use__step:nth-child(3) {
  animation-delay: 0.3s;
}
.n_how-to-use__step:nth-child(4) {
  animation-delay: 0.4s;
}
.n_how-to-use__step:nth-child(5) {
  animation-delay: 0.5s;
}
.n_how-to-use__step:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* who */
.n_who {
  padding: 40px 0 60px;
}

.n_who__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.n_who__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}

.n_who__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.n_who__column--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.n_who__image {
  max-width: 300px;
}

.n_who__image-img {
  width: 100%;
  height: auto;
}

.n_who__item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.n_who__button {
  width: 100%;
  padding: 12px 16px 8px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1d1e25;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.n_who__button-text {
  flex: 1;
}

.n_who__button-icon {
  width: 20px;
  height: 20px;
  background-image: url("/img/hero/icon/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.n_who__button--active .n_who__button-icon {
  transform: rotate(180deg);
}

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

.n_who__panel--active {
  max-height: 200px;
}

.n_who__panel-text {
  padding: 0 16px 12px;
  margin: 0;
  color: #1d1e25;
  line-height: 20px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .n_who {
    padding: 40px 0;
  }

  .n_who__container {
    padding: 0 16px;
  }

  .n_who__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .n_who__content {
    display: block;
  }

  .n_who__column {
    margin-bottom: 40px;
    gap: 16px;
  }

  .n_who__column--center {
    order: 2;
    margin-bottom: 0;
  }

  .n_who__column--left {
    order: 1;
    margin-bottom: 16px;
  }

  .n_who__column--right {
    order: 3;
    margin-bottom: 0;
  }

  .n_who__button {
    padding: 20px;
    font-size: 16px;
  }

  .n_who__panel-text {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .n_who__image {
    display: none;
  }
}

/* plans */
.n_plans {
  padding: 40px 0 60px;
}

.n_plans__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.n_plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.n_plans__card {
  background: white;
  border-radius: 20px;
  padding: 20px 24px 24px;
  position: relative;
  box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.n_plans__card--wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.n_plans__card--featured {
  background: #1353ba;
  color: #fff;
}

.n_plans__card-badge {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.n_plans__card-badge-text {
  color: #1d1e25;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px;
}

.n_plans__card-icon {
  width: 40px;
  height: 40px;
  background: #efefef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n_plans__card--featured .n_plans__card-icon {
  background-color: #fff;
}

.n_plans__card-icon-img {
  width: 24px;
  height: 24px;
}

.n_plans__card-subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 16px;
  color: #1d1e25;
  padding-top: 24px;
}

.n_plans__card--featured .n_plans__card-subtitle {
  color: #fff;
}

.n_plans__card-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 52px;
  color: #1a1a1a;
}

.n_plans__card--featured .n_plans__card-title {
  color: white;
}

.n_plans__card-content {
  margin-bottom: 32px;
  flex-grow: 1;
}

.n_plans__card-text {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
  color: #1d1e25;
}

.n_plans__card-text:last-child {
  margin-bottom: 0;
}

.n_plans__card--featured .n_plans__card-text {
  color: #fff;
}

.n_plans__card-button {
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  background: #307ef3;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.n_plans__card-button:hover {
  background: #3b5ce6;
}

.n_plans__card-button--featured {
  background: white;
  color: #4f7df8;
}

.n_plans__card-button--featured:hover {
  background: #f8f9fa;
}

@media (max-width: 1240px) {
  .n_plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .n_plans {
    padding: 20px 0;
  }

  .n_plans__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

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

  .n_plans__card {
    padding: 16px;
  }

  .n_plans__card--featured:hover {
    transform: translateY(-5px);
  }

  .n_plans__card-badge {
    right: 16px;
    top: -10px;
    padding: 8px 0px;
  }

  .n_plans__card-badge-text {
    font-size: 16px;
  }

  .n_plans__card-icon {
    width: 50px;
    height: 50px;
  }

  .n_plans__card-icon-img {
    width: 28px;
    height: 28px;
  }

  .n_plans__card-subtitle {
    font-size: 20px;
    line-height: 28px;
    padding-top: 8px;
    margin-bottom: 8px;
  }

  .n_plans__card-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .n_plans__card-content {
    margin-bottom: 24px;
  }

  .n_plans__card-text {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .n_plans__card-button {
    padding: 14px 20px;
    font-size: 16px;
  }
}

/* features */
/* features */
.n_features {
  padding: 40px 0 60px;
}

.n_features__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
  line-height: 1.2;
}

.n_features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.n_features__item {
  background: white;
  border-radius: 20px;
  padding: 24px;
}

.n_features__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.n_features__icon {
  width: 64px;
  height: 64px;
  background: #4f7df8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.n_features__icon-img {
  width: 24px;
  height: 24px;
}

.n_features__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.n_features__item-title {
  color: #1d1e25;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.n_features__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  padding: 4px;
  border-radius: 4px;
  flex-shrink: 0;
}

.n_features__toggle:hover {
  color: #4f7df8;
  background: rgba(79, 125, 248, 0.1);
}

.n_features__toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.n_features__toggle--up .n_features__toggle-icon {
  transform: rotate(180deg);
}

.n_features__text {
  color: #1d1e25;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* Десктопна версія - все відкрито за замовчуванням */
@media (min-width: 769px) {
  .n_features__details {
    max-height: none;
    overflow: visible;
  }

  .n_features__toggle {
    display: none; /* Ховаємо шеврони на десктопі */
  }
}

/* Мобільна версія */
@media (max-width: 768px) {
  .n_features {
    padding: 20px 0;
  }

  .n_features__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .n_features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .n_features__item {
    padding: 0;
  }

  .n_features__header {
    gap: 18px;
    margin-bottom: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
    flex-direction: row;
    align-items: center;
  }

  .n_features__icon {
    width: 48px;
    height: 48px;
  }

  .n_features__icon-img {
    width: 20px;
    height: 20px;
  }

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

  .n_features__toggle {
    display: block;
    pointer-events: none;
  }

  .n_features__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 0;
    margin-top: 16px;
  }

  .n_features__details--visible {
    max-height: 200px;
  }

  .n_features__text {
    font-size: 16px;
    padding-top: 0;
  }
}
/* FAQ */
.n_faq {
  padding: 60px 0 40px;
  background: white;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.n_faq__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-bottom: 40px;
  color: #1d1e25;
}

.n_faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.n_faq__item {
  background: white;
  border: 1px solid #efefef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.n_faq__item--active {
  border-color: #307ef3;
  box-shadow: 0 4px 20px rgba(79, 125, 248, 0.1);
}

.n_faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.n_faq__question-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #1d1e25;
  margin: 0;
  padding-right: 24px;
}

.n_faq__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #4f7df8;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  position: relative;
}

.n_faq__toggle::before,
.n_faq__toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: all 0.3s ease;
}

.n_faq__toggle::before {
  width: 2px;
  height: 16px;
  transform: translateX(-50%);
  left: 50%;
}

/* Горизонтальна лінія для + */
.n_faq__toggle::after {
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
}

/* При активному стані ховаємо вертикальну лінію (залишається тільки -) */
.n_faq__toggle--active::before {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.n_faq__toggle--active::after {
  transform: translateY(-50%) rotate(0deg);
}

.n_faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.n_faq__answer--visible {
  max-height: 200px;
}

.n_faq__answer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  padding: 0 24px 24px 24px;
}

/* Мобільна версія */
@media (max-width: 768px) {
  .n_faq {
    padding: 60px 0;
  }

  .n_faq__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .n_faq__list {
    gap: 12px;
  }

  .n_faq__question {
    padding: 20px;
  }

  .n_faq__question-text {
    font-size: 18px;
    padding-right: 16px;
  }

  .n_faq__toggle {
    padding: 6px;
    width: 30px;
    height: 30px;
  }

  .n_faq__toggle::before {
    height: 14px;
  }

  .n_faq__toggle::after {
    width: 14px;
  }

  .n_faq__answer-text {
    font-size: 16px;
    padding: 0 20px 20px 20px;
  }
}
/* Virtual Numbers */
.n_virtual-numbers {
  padding: 40px 0;
  border-top: 1px solid #efefef;
}

.n_virtual-numbers__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  color: #1d1e25;
}

.n_virtual-numbers__description {
  font-size: 16px;
  color: var #52555d;
  font-weight: 400;
  line-height: 20px;
}

/* Мобільна версія */
@media (max-width: 768px) {
  .n_virtual-numbers {
    padding: 20px 0;
  }

  .n_virtual-numbers__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .n_virtual-numbers__description {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* CTA */
.n_cta {
  padding: 50px 0;
  background: #307ef3;
  background-image: url("/img/hero/icon/ready.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.n_cta__content {
  max-width: 520px;
}

.n_cta__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;

  margin-bottom: 20px;
}

.n_cta__text {
  margin-bottom: 40px;
}

.n_cta__subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.n_cta__description {
  font-size: 20px;

  font-weight: 700;
  line-height: 28px;
  margin: 0;
}

.n_cta__button {
  background: white;
  color: #1d1e25;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.15);
}

.n_cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.n_cta__button:active {
  transform: translateY(0);
}

/* Планшетна версія */
@media (max-width: 1024px) {
  .n_cta {
    background-size: 40%;
    background-position: right 20px center;
  }
}

/* Мобільна версія */
@media (max-width: 768px) {
  .n_cta {
    padding: 60px 0;
    background-image: none; /* Прибираємо картинку на мобільних */
  }

  .n_cta__container {
    padding: 0 16px;
    text-align: center;
  }

  .n_cta__content {
    max-width: 100%;
  }

  .n_cta__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .n_cta__text {
    margin-bottom: 32px;
  }

  .n_cta__subtitle {
    font-size: 18px;
  }

  .n_cta__description {
    font-size: 18px;
  }

  .n_cta__button {
    font-size: 16px;
    padding: 14px 28px;
    width: 100%;
    max-width: 280px;
  }
}
