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

:root {
  --bg: #fbfaf8;
  --bg-card: #f7f3eb;
  --bg-footer: #f5f1ea;
  --primary: #5f35d9;
  --primary-dark: #5938d1;
  --text: #000000;
  --text-secondary: #6c6c69;
  --text-muted: #7f7b7b;
  --green: #00b975;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.2);
  --border-light: rgba(112, 110, 110, 0.1);
  --font: 'Inter', sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 67px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.3;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.section-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 22px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin-top: 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);

}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  height: 67px;
  position: relative;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.header__logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.header__nav {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 33px;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.header__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  width: 24px;
  height: 17px;
}

.burger-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-box: view-box;
  transform-origin: 11.75px 8.25px;
}

.header__menu-btn.active .burger-line--top {
  transform: rotate(45deg) translateY(7px);
}

.header__menu-btn.active .burger-line--mid {
  opacity: 0;
}

.header__menu-btn.active .burger-line--bot {
  transform: rotate(-45deg) translateY(-7px);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--bg);
  padding: 0 23px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
  padding: 17px 23px 24px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
  color: var(--text);
}

.mobile-menu__arrow {
  flex-shrink: 0;
  margin-left: 12px;
}

.mobile-menu__cta {
  display: block;
  margin-top: 16px;
  padding: 6px 0;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  border-radius: 5px;
  height: 31px;
  line-height: 31px;
  padding: 0;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 182px;
  background: var(--bg);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  padding: 6px 19px;
  cursor: pointer;
  transition: background 0.15s;
}

.lang-dropdown__item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.lang-dropdown__code {
  font-size: 20px;
  font-weight: 700;
  width: 36px;
  flex-shrink: 0;
}

.lang-dropdown__name {
  font-size: 20px;
  font-weight: 400;
  flex: 1;
}

.lang-dropdown__check {
  width: 20px;
  text-align: right;
  font-size: 14px;
  color: var(--text-muted);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #2a1663 0%, #3b1d8e 20%, #5b2dc9 40%, #7b4ed9 55%, #9a6de0 70%, #c19cef 85%, #e4c8f8 100%);
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero__video.visible {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  justify-content: flex-end;
  min-height: 641px;
}

.hero__logo {
  margin-bottom: 60px;
}

.hero__play {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  z-index: 2;
}

.hero__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  padding: 0 27px;
}

.hero__subtitle {
  font-size: 17.8px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
  padding: 0 27px;
}

.hero__cta-wrap {
  margin-top: 40px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 40px;
  border-radius: 8px;
  min-width: 315px;
  height: 40px;
  text-align: center;
  transition: opacity 0.2s;
}

.hero__cta:hover {
  opacity: 0.9;
}

.ticker {
  padding: 16px 0;
  background: var(--bg);
}

.ticker__label {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ticker__wrapper {
  position: relative;
  overflow: hidden;
}

.ticker__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 108px;
  z-index: 2;
  pointer-events: none;
}

.ticker__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.ticker__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.ticker__track {
  display: flex;
  width: max-content;
  cursor: grab;
  will-change: transform;
}

.ticker__track.dragging {
  cursor: grabbing;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}

.ticker__items {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
}

.ticker__items img {
  display: block;
  object-fit: contain;
}

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

.how-it-works__card {
  margin-top: 24px;
  border-radius: 5px;
  overflow: hidden;
  height: 280px;
}

.how-it-works__card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.how-it-works__video-note {
  font-size: 13px;
  color: #ff0000;
}

.steps {
  padding: 40px 0 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.step:last-child {
  margin-bottom: 0;
}

.step__number {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  width: 20px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.step__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 4px;
}

.discover {
  padding: 28px 0 0;
}

.discover__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 3px;
}

.discover .section-subtitle {
  margin-top: 8px;
}

.language-card {
  padding: 20px 0 13px;
  overflow: hidden;
  background-color: #F7F3EB;
  margin-top: 20px;
}

.lang-card__wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.lang-card {
  background: var(--bg-card);
  border-radius: 0;
  padding: 28px 20px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  height: 100%;
  box-sizing: border-box;
}

.lang-card__flags {
  position: absolute;
  top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lang-card__flags--left {
  left: 19px;
}

.lang-card__flags--right {
  right: 19px;
}

.lang-card__flag {
  width: 33px;
  height: 22px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.flag-fr {
  background: linear-gradient(90deg, #002395 33%, #fff 33%, #fff 66%, #ed2939 66%);
}

.flag-de {
  background: linear-gradient(180deg, #000 33%, #d00 33%, #d00 66%, #fc0 66%);
}

.flag-es {
  background: linear-gradient(180deg, #c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 33%, #fff 33%, #fff 66%, #ce2b37 66%);
}

.lang-card__badge {
  position: absolute;
  top: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.lang-card__badge-emoji {
  font-size: 12px;
}

.lang-card__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  min-height: 75px;
  justify-content: center;
}

.lang-card__logo-name {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}

.lang-card__logo-tagline {
  font-size: 10px;
  color: var(--text-secondary);
}

.lang-card__nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s;
}

.lang-card__nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.lang-card__nav-arrow--left {
  left: 5px;
}

.lang-card__nav-arrow--right {
  right: 5px;
}

.discover-swiper {
  overflow: hidden;
  padding-bottom: 0;
  cursor: grab;
}

.discover-swiper .swiper-wrapper {
  align-items: stretch;
}

.discover-swiper .swiper-slide {
  height: auto;
}

.discover-swiper:active {
  cursor: grabbing;
}

.reviews-swiper {
  cursor: grab;
}

.reviews-swiper:active {
  cursor: grabbing;
}

.lang-card__list {
  margin: 0 auto 16px;
  max-width: 230px;
  width: 100%;
  min-height: 130px;
}

.lang-card__list li {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 15px;
  line-height: 1.3;
}

.lang-card__category {
  font-weight: 500;
}

.lang-card__count {
  color: var(--text-secondary);
}

.lang-card__languages {
  text-align: center;
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

.lang-card__start-btn {
  display: block;
  width: 130px;
  margin: auto auto 0;
  padding: 7px 0;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 1px;
}

.discover-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.discover-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  flex-shrink: 0;
  transform: none !important;
  position: static !important;
}

.discover-pagination .swiper-pagination-bullet-active {
  background: #3f3baf;
}

.reviews {
  padding: 40px 0;
}

.reviews-swiper {
  margin-top: 24px;
  overflow: hidden;
  padding-left: 27px;
}

.reviews-swiper .swiper-slide {
  width: 308px;
}

.review-card {
  background: var(--white);
  border: 0.2px solid var(--border);
  border-radius: 5px;
  padding: 28px 20px;
  height: 100%;
  font-style: italic;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.review-card__author {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}


.pricing__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.pricing-card {
  border: 0.2px solid var(--border);
  border-radius: 8px;
  padding: 24px 31px;
  margin-top: 24px;
}

.pricing-card--pro {
  background: var(--bg-footer);
  border-color: transparent;
}

.pricing-card__name {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.pricing-card__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 4px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
}

.pricing-card__amount {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card__vat {
  color: #BABAB3;
}


.pricing-card__divider {
  height: 1px;
  background: var(--border-light);
  margin: 12px 0;
}

.pricing-card__note {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-card__toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card__toggle {
  width: 36px;
  height: 21.6px;
  background: #d9d9d9;
  border-radius: 10.8px;
  position: relative;
  cursor: pointer;
}

.pricing-card__toggle-knob {
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 1.8px;
  left: 1.8px;
  transition: left 0.2s;
}

.pricing-card__toggle.active {
  background: var(--primary);
}

.pricing-card__toggle.active .pricing-card__toggle-knob {
  left: 16.2px;
}

.pricing-card__toggle-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-card__save-badge {
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}

.pricing-card__toggle.active~.pricing-card__save-badge {
  opacity: 1;
}

.pricing-card__btn {
  display: block;
  text-align: center;
  padding: 6px 0;
  border: 0.2px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-card__btn:hover {
  background: #f0f0f0;
}

.pricing-card__btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.pricing-card__btn--primary:hover {
  background: #5230c0;
}

.pricing-card__features-label {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-card__features li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 24px;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 9px;
  height: 7px;
  border-left: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-45deg);
}

.faq {
  padding: 40px 0 80px;
}

.faq__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.faq__item {
  border: 0.2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__arrow {
  flex-shrink: 0;
  width: 12px;
  height: 7px;
  position: relative;
  margin-left: 12px;
}

.faq__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #1d1b20;
  border-bottom: 1.5px solid #1d1b20;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.2s;
}

.faq__item[open] .faq__arrow::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.faq__answer {
  padding: 0 15px 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.footer {
  background: var(--bg-footer);
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 31px 24px;
}

.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 0;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}

.footer__links li {
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__col--community {
  grid-column: span 1;
}

.footer__community-grid {
  display: flex;
  gap: 24px;
}

.footer__subscribe {
  margin-top: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer__email-wrap {
  position: relative;
  border: 0.1px solid var(--text);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 39px;
}

.footer__email-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  height: 100%;
}

.footer__email-input::placeholder {
  color: var(--text);
}

.footer__subscribe-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  border-radius: 8px;
  height: 31px;
  margin-right: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.footer__subscribe-btn:hover {
  background: #5230c0;
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: var(--text);
  margin-top: 24px;
}

.footer__email-wrap--error {
  border-color: #e53e3e;
}

.footer__subscribe-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 6px;
  min-height: 16px;
}

.subscribe-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

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

.subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.subscribe-modal__box {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px 32px;
  max-width: 360px;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 1;
}

.subscribe-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
}

.subscribe-modal__icon {
  margin-bottom: 16px;
}

.subscribe-modal__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.subscribe-modal__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.subscribe-modal__btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.subscribe-modal__btn:hover {
  background: #5230c0;
}

@media (min-width: 768px) {
  .section-container {
    max-width: 720px;
    padding: 0 40px;
  }

  .header__inner {
    max-width: 1200px;
    padding: 18px 40px;
    height: 72px;
  }

  .hero {
    max-width: 100%;
  }

  .hero__content {
    padding-top: 200px;
    min-height: 560px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .reviews-swiper {
    padding-left: calc((100% - 720px) / 2 + 40px);
  }

  .pricing-card {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__inner {
    max-width: 720px;
    padding: 48px 40px 32px;
  }

  .footer__columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .review-card__text,
  .review-card__author {
    font-size: 16px;
  }

  .pricing-card__name {
    font-size: 21px;
  }

  .pricing-card__desc,
  .pricing-card__note,
  .pricing-card__features li,
  .pricing-card__features-label {
    font-size: 15px;
  }

  .faq__question {
    font-size: 17px;
    padding: 14px 16px;
  }

  .faq__answer {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 16px 14px;
  }

  .footer__col-title {
    font-size: 15px;
  }

  .footer__links a {
    font-size: 15px;
  }

  .lang-card__wrapper {
    max-width: 860px;
    padding: 0 40px;
  }

  .lang-card {
    max-width: none;
    padding-left: 60px;
    padding-right: 60px;
    border: 0.2px solid var(--border);
    background-color: var(--white);
    border-radius: 5px;
  }
}

@media (min-width: 1024px) {
  .faq {
    padding-bottom: 120px;
  }

  .section-container {
    max-width: 1040px;
    padding: 0 40px;
  }

  .header__inner {
    max-width: 1200px;
  }

  .header__menu-btn {
    display: none;
  }

  .header__nav {
    display: flex;
    gap: 24px;
  }

  .header__nav a {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text);
    transition: color 0.2s;
  }

  .header__nav a:hover {
    color: var(--primary);
  }

  .hero__content {
    padding-top: 180px;
    min-height: 600px;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__subtitle {
    font-size: 22px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .how-it-works__card {
    height: 400px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps .section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .step {
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
  }

  .pricing .section-container {
    position: relative;
  }

  .pricing-card {
    max-width: 100%;
  }


  .pricing .section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .pricing__logo,
  .pricing .section-title,
  .pricing .section-subtitle {
    width: 100%;
  }

  .pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
  }

  .pricing-card__desc {
    min-height: 40px;
  }

  .pricing-card__price {
    min-height: 26px;
  }

  .ticker__label {
    font-size: 18px;
  }

  .reviews-swiper {
    padding-left: calc((100% - 1040px) / 2 + 40px);
  }

  .faq__list {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__inner {
    max-width: 1040px;
    padding: 56px 40px 32px;
  }

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

  .lang-card__wrapper {
    max-width: 1000px;
  }
}

@media (min-width: 1280px) {
  .section-container {
    max-width: 1200px;
  }

  .header__inner {
    max-width: 1400px;
  }

  .header__nav {
    gap: 32px;
  }

  .lang-card__wrapper {
    max-width: 1140px;
    padding: 0 44px;
  }

  .lang-card {
    border: 0.2px solid var(--border);
    background-color: var(--white);
    border-radius: 5px;
  }

  .hero__content {
    padding-top: 200px;
    min-height: 640px;
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__subtitle {
    font-size: 24px;
    margin-top: 8px;
  }

  .hero__cta {
    min-width: 380px;
    height: 48px;
    font-size: 18px;
    border-radius: 10px;
  }

  .section-title {
    font-size: 40px;
  }

  .how-it-works__card {
    height: 540px;
    border-radius: 12px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-swiper {
    padding: 0 40px;
    overflow: visible;
    max-width: 1200px;
    margin: 24px auto 0;
    cursor: default;
  }

  .reviews-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .reviews-swiper .swiper-slide {
    width: auto;
    display: flex;
    height: auto;
  }

  .review-card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
  }

  .review-card__text {
    flex: 1;
  }

  .pricing-card {
    min-width: 300px;
    max-width: 360px;
  }

  .footer__inner {
    max-width: 1200px;
  }
}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 300px;
  max-width: calc(100vw - 24px);
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 18px 18px 16px;
  z-index: 9998;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: #4a4a4a;
}

.cookie-banner__text a {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.cookie-btn--primary {
  background: #111111;
  color: #ffffff;
}

.cookie-btn--primary:hover {
  opacity: 0.94;
}

.cookie-btn--secondary {
  background: #f3efe9;
  color: #222222;
}

.cookie-btn--secondary:hover {
  background: #ece7df;
}

/* =========================
   BACKDROP
========================= */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cookie-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   RIGHT PANEL
========================= */
.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 430px;
  max-width: 92vw;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
}

.cookie-panel.show {
  transform: translateX(0);
}

.cookie-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #e6e6e6;
  background: #ffffff;
}

.cookie-panel__header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #222222;
}

.cookie-panel__close {
  border: none;
  background: transparent;
  font-size: 38px;
  line-height: 1;
  color: #777777;
  cursor: pointer;
  padding: 0;
}

.cookie-panel__body {
  padding: 18px 22px 20px;
}

.cookie-panel__intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.5;
  color: #4b4b4b;
}

.cookie-panel__footer {
  padding: 0 22px calc(22px + env(safe-area-inset-bottom));
  background: #ffffff;
}

.cookie-save-btn {
  display: block;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-save-btn:hover {
  opacity: 0.95;
}

/* =========================
   CATEGORY
========================= */
.cookie-category {
  margin-bottom: 28px;
}

.cookie-category__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cookie-category__content {
  flex: 1;
}

.cookie-category h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
  color: #111111;
}

.cookie-category p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.45;
  color: #555555;
}

.cookie-disclosure-toggle {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #5a5a5a;
  text-decoration: underline;
  cursor: pointer;
}

/* =========================
   DISCLOSURE / ACCORDION
========================= */
.cookie-disclosure {
  display: none;
  margin-top: 16px;
  background: #ececec;
  border: 1px solid #dddddd;
}

.cookie-disclosure.open {
  display: block;
}

.cookie-disclosure__item {
  padding: 18px 16px;
  border-bottom: 1px solid #d8d8d8;
}

.cookie-disclosure__item:last-child {
  border-bottom: none;
}

.cookie-disclosure__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  margin-bottom: 16px;
  align-items: start;
}

.cookie-disclosure__row:last-child {
  margin-bottom: 0;
}

.cookie-disclosure__row strong {
  font-size: 14px;
  color: #111111;
}

.cookie-disclosure__row span {
  font-size: 14px;
  line-height: 1.45;
  color: #555555;
}

/* =========================
   SWITCH
========================= */
.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 32px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background-color: #ece8e2;
  border-radius: 999px;
  transition: 0.25s ease;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  transition: 0.25s ease;
}

.switch input:checked + .slider {
  background-color: #111111;
}

.switch input:checked + .slider::before {
  transform: translateX(26px);
}

.switch input:disabled + .slider {
  cursor: not-allowed;
  opacity: 1;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: 290px;
    max-width: calc(100vw - 24px);
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-banner__text {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .cookie-btn {
    height: 46px;
    font-size: 14px;
  }

  .cookie-panel {
    width: 360px;
    max-width: calc(100vw - 48px);
  }

  .cookie-panel__header,
  .cookie-panel__body,
  .cookie-panel__footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cookie-disclosure__row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 14px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: 280px;
    max-width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-banner__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie-btn {
    height: 44px;
    font-size: 14px;
    border-radius: 10px;
  }

  .cookie-panel {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .cookie-panel__header {
    padding: 16px 14px;
  }

  .cookie-panel__header h2 {
    font-size: 18px;
  }

  .cookie-panel__body {
    padding: 16px 14px 18px;
  }

  .cookie-panel__footer {
      padding: 0 14px calc(28px + env(safe-area-inset-bottom));
  }

  .cookie-panel__intro,
  .cookie-category p,
  .cookie-disclosure-toggle {
    font-size: 14px;
  }

  .cookie-category h3 {
    font-size: 16px;
  }

  .cookie-save-btn {
    height: 44px;
    font-size: 15px;
    border-radius: 10px;
    margin-bottom: 0;
  }

  .switch {
    width: 54px;
    height: 30px;
  }

  .slider::before {
    width: 22px;
    height: 22px;
    top: 4px;
    left: 4px;
  }

  .switch input:checked + .slider::before {
    transform: translateX(24px);
  }
}
/* =========================
   CAREERS MODAL
========================= */
.careers-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.careers-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.careers-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 450px;
  max-width: calc(100vw - 28px);
  transform: translate(-50%, -50%) scale(0.96);
  background: #f5f2ec;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.careers-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.careers-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #7a7a7a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-modal__close:hover {
  color: #222222;
}

.careers-modal__content {
  padding: 34px 38px 42px;
    text-align: center; /* оставляем для логотипа и кнопки */
}

.careers-modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.careers-modal__logo img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.careers-modal__title {
  margin: 0 0 26px;
  font-size: 0;
}

.careers-modal__title span {
  display: none;
}

.careers-modal__text {
  max-width: 340px;
  margin: 0 auto 30px;
}

.careers-modal__text p {
  margin: 0 0 28px;
  color: #262626;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.careers-modal__text p:last-child {
  margin-bottom: 0;
}

.careers-modal__btn.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 44px;
  padding: 0 22px;
  text-align: center;
  border: 0.2px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.careers-modal__btn.pricing-card__btn--primary {
  background: var(--primary, #5f3df5);
  color: var(--white, #ffffff);
  border-color: transparent;
}

.careers-modal__btn.pricing-card__btn--primary:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 768px) {
  .careers-modal {
    width: 400px;
    max-width: calc(100vw - 24px);
  }

  .careers-modal__content {
    padding: 30px 28px 34px;
  }

  .careers-modal__logo img {
    max-width: 230px;
  }

  .careers-modal__text {
    max-width: 320px;
  }

  .careers-modal__text p {
    font-size: 19px;
    line-height: 1.28;
    margin-bottom: 24px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .careers-modal {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    border-radius: 18px;
  }

  .careers-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .careers-modal__content {
    padding: 24px 20px 28px;
  }

  .careers-modal__logo {
    margin-bottom: 6px;
  }

  .careers-modal__logo img {
    max-width: 210px;
  }

  .careers-modal__text {
    max-width: 280px;
    margin-bottom: 24px;
  }

  .careers-modal__text p {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 22px;
  }

  .careers-modal__btn.pricing-card__btn {
    min-width: 200px;
    height: 42px;
    font-size: 14px;
    border-radius: 7px;
  }
}
/* Affiliates использует тот же стиль */
.affiliates-modal {
  /* ничего не нужно — наследует careers-modal */
}

.affiliates-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.affiliates-backdrop.show {
  opacity: 1;
  visibility: visible;
}
/* =========================
   COOKIE SETTINGS BLOCK
========================= */
.cookie-settings-block {
  max-width: 900px;
}

.cookie-settings-block__title {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  color: #111111;
}

.cookie-settings-block__text {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a3a;
}

.cookie-settings-block__text--secondary {
  margin-top: 32px;
}

.cookie-settings-block__text a {
  color: #111111;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-settings-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-settings-block__title {
    font-size: 28px;
  }

  .cookie-settings-block__text {
    font-size: 16px;
  }

  .cookie-settings-block__btn {
    height: 48px;
    font-size: 15px;
  }
}

.footer__subscribe-success {
  margin-top: 10px;
  color: #00b975;
  font-size: 14px;
}

.footer__subscribe-error {
  margin-top: 10px;
  color: #d93025;
  font-size: 14px;
}