/* ========================================
   Fonts
   ======================================== */
@font-face {
  font-family: 'Bebas Neue Cyrillic';
  src: url('bebas-neue-cyrillic/bebas-neue-cyrillic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #0b0b0b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ========================================
   Layout
   ======================================== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ========================================
   Typography
   ======================================== */
.display {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 148px;
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: #0b0b0b;
  line-height: 1;
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -14px;
  display: flex;
  gap: 27px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 100px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.35px;
  white-space: nowrap;
}

.nav__link {
  color: #000000;
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__lang-wrapper {
  display: block;
  margin-left: auto;
  position: relative;
}

.nav__lang {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav__lang:hover {
  opacity: 1;
}

/* Language Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 200px;
  z-index: 200;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

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

.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.15s ease;
}

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

.lang-dropdown__label {
  flex: 1;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.32px;
  color: #0b0b0b;
}

.lang-dropdown__radio {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #a2a4a7;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-dropdown__radio--active {
  background: #0b0b0b;
  border-color: #0b0b0b;
}

.lang-dropdown__radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 20px;
  background: #ffffff;
}

.mobile-nav__toggle {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__icon-close {
  display: none;
}

.mobile-nav--open .mobile-nav__icon-menu {
  display: none;
}

.mobile-nav--open .mobile-nav__icon-close {
  display: block;
}

.mobile-nav__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: none;
}

.mobile-nav--open .mobile-nav__dropdown {
  max-height: 500px;
}

.mobile-nav__items {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 32px;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 0;
  border-top: 1px solid #E9E9E9;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: #000000;
  white-space: nowrap;
}

.mobile-nav__lang-item {
  cursor: pointer;
}

.mobile-lang-dropdown {
  display: none;
  flex-direction: column;
  padding: 0 20px 32px;
}

.mobile-lang-dropdown--open {
  display: flex;
}

.mobile-lang-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #E9E9E9;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
}

/* Bottom Sheet */
.bottom-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 43, 43, 0.75);
  z-index: 300;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-sheet-overlay--visible {
  display: flex;
  opacity: 1;
}

.bottom-sheet {
  width: 100%;
  max-width: 393px;
  background: #ffffff;
  border-radius: 36px 36px 0 0;
  padding: 0 16px 32px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.bottom-sheet-overlay--visible .bottom-sheet {
  transform: translateY(0);
}

.bottom-sheet__handle {
  width: 36px;
  height: 5px;
  background: #D9D9D9;
  border-radius: 100px;
  margin: 8px auto;
}

.bottom-sheet__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.64px;
  color: #0B0B0B;
  padding: 12px 0 4px;
}

.bottom-sheet__item {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 16px;
}

.bottom-sheet__label {
  flex: 1;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.32px;
  color: #0B0B0B;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  display: flex;
  gap: 27px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-nav--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-nav__link {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: #000000;
  white-space: nowrap;
}

.floating-nav__link:hover {
  opacity: 0.7;
}

/* ========================================
   Header / Hero
   ======================================== */
.header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.header__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
  text-align: center;
  color: #000000;
}

.header__subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  text-align: center;
  color: #000000;
  max-width: 640px;
}

.header__hero {
  width: 100%;
  max-width: 1280px;
  margin: 80px auto 0;
  display: block;
}

/* Download Button (mobile/tablet) */
.btn-download {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 22px;
  background: #30A858;
  border-radius: 1000px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
}

.btn-download__arrow {
  width: 7px;
  height: 7px;
}

/* QR Block (shared between header and CTA) */
.qr-block {
  display: flex;
  align-items: center;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 16px;
}

.qr-block__image {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-block__image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.qr-block__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 16px;
}

.qr-block__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.66px;
  color: #000000;
  white-space: nowrap;
}

.qr-block__store {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: #000000;
  white-space: nowrap;
}

.qr-block__store-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  overflow-x: hidden;
  padding-top: 50px;
}

.hero-image {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-image__inner {
  height: 362px;
  background: #30A858;
  border-radius: 30px;
  position: relative;
}

.hero-image__stripes {
  position: absolute;
  top: 54px;
  left: -3px;
  right: -3px;
  width: calc(100% + 6px);
  height: auto;
  pointer-events: none;
}

.hero-image__phone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -310px;
  width: 300px;
  height: 610px;
  background: #000000;
  border: 1.534px solid #929292;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px -3.6px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hero-image__screen {
  position: absolute;
  top: 10px;
  left: 11px;
  right: 11px;
  bottom: 10px;
  width: calc(100% - 22px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 32px;
}

.hero-image__flag {
  position: absolute;
  left: 60px;
  top: -100px;
  width: 200px;
  height: auto;
  z-index: 1;
  transform: rotate(-37deg);
}

.hero-image__book {
  position: absolute;
  right: -20px;
  top: -130px;
  width: 340px;
  height: auto;
  z-index: 1;
  transform: rotate(8deg);
}

/* ========================================
   Section Headers
   ======================================== */
.section__header {
  display: flex;
  flex-direction: column;
}

.section__header--left {
  align-items: flex-start;
}

.section__eyebrow {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #268847;
  margin-bottom: 32px;
}

.section__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -1.8px;
  color: #000000;
  margin-bottom: 12px;
}

.section__description {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #6F6F6F;
  max-width: 800px;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 0.5px solid #E9E9E9;
  overflow: visible;
}

.features-section .section__eyebrow {
  margin-bottom: 21px;
}

.features-section .section__title {
  margin-bottom: 12px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 40px;
  margin-top: 50px;
}

.card {
  background: #ffffff;
  border: 1px solid #E9E9E9;
  border-radius: 24px;
  overflow: hidden;
}

.card__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 800 / 500;
  object-fit: cover;
  background: #F5F5F5;
  border-radius: 24px 24px 0 0;
}

.card__body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.66px;
  color: #000000;
}

.card__description {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #6F6F6F;
}


/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid #E9E9E9;
}

.pricing-table {
  display: flex;
  margin-top: 50px;
  border-radius: 20px;
}

.pricing-column {
  flex: 1;
  min-width: 200px;
}

.pricing-column--premium {
  border-radius: 20px;
  background: #ffffff;
  overflow: visible;
  position: relative;
}

.pricing-column--premium > .pricing-border-svg {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  pointer-events: none;
  z-index: 1;
}

.pricing-column--premium > .pricing-border-svg rect {
  fill: none;
  stroke: #30A858;
  stroke-width: 2;
  rx: 20;
  ry: 20;
  stroke-dasharray: var(--border-length);
  stroke-dashoffset: var(--border-length);
  transition: stroke-dashoffset 1.2s ease;
}

.pricing-column--premium.animate-border > .pricing-border-svg rect {
  stroke-dashoffset: 0;
}

.pricing-column__header {
  height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 30px;
  border-bottom: 1px solid #E9E9E9;
}

.pricing-column__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
  color: #000000;
}

.pricing-column__title--muted {
  color: #6F6F6F;
}

.pricing-column__price {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: normal;
  color: #6F6F6F;
  margin-left: 4px;
}

.pricing-column__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 32px 30px;
  border-bottom: 0.5px solid #E9E9E9;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #000000;
}

.pricing-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
  padding-top: 120px;
  padding-bottom: 100px;
  border-top: 1px solid #E9E9E9;
}

.steps {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.step {
  flex: 1;
  min-width: 240px;
  border-top: 1px solid #E9E9E9;
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step__number {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
  color: #30A858;
}

.step__text {
  display: flex;
  flex-direction: column;
}

.step__heading {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #000000;
}

.step__body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #000000;
}

/* ========================================
   Hero Image Section (placeholder)
   ======================================== */
.hero-image-section {
  padding-top: 0;
  padding-bottom: 40px;
}

.how-it-works-image {
  width: 100%;
  border-radius: 30px;
  max-width: 1200px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 0.5px solid #E9E9E9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-section__title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -1.8px;
  color: #000000;
  text-align: center;
}

.cta-section__description {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.075px;
  color: #6F6F6F;
  text-align: center;
  max-width: 600px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  border-top: 1px solid #E9E9E9;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 20px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.12px;
  white-space: nowrap;
}

.footer__left {
  display: flex;
  gap: 16px;
  color: #268847;
}

.footer__center {
  display: flex;
  gap: 32px;
  color: #6F6F6F;
}

.footer__center a:hover {
  color: #000000;
}

.footer__right {
  color: #268847;
}

/* ========================================
   Responsive: Tablet (800px)
   ======================================== */
@media (max-width: 960px) {
  .qr-block {
    display: none;
  }

  .btn-download {
    display: flex;
  }

  .nav__lang-wrapper {
    display: none;
  }

  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    padding-left: 20px;
    padding-right: 20px;
    gap: 200px;
  }

  .header__title {
    font-size: 80px;
  }

  .section__title {
    font-size: 48px;
  }


  .pricing-table {
    gap: 12px;
  }

  .steps {
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 100%;
  }

  .hero-image__flag {
    width: 180px;
    left: 20px;
    top: -60px;
  }

  .hero-image__book {
    width: 300px;
    top: -80px;
  }

  .hero-image__phone {
    width: 320px;
    top: -170px;
    border-radius: 42px;
  }

  .hero-image__screen {
    border-radius: 33px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ========================================
   Responsive: Mobile (375px)
   ======================================== */
@media (max-width: 600px) {
  .pricing-table {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-column--free {
    order: -1;
  }

  .pricing-column--premium {
    order: 0;
  }


  .nav--desktop {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .floating-nav {
    display: none !important;
  }

  .header {
    padding-top: 118px;
  }

  .nav__links {
    position: static;
    transform: none;
  }

  .nav__inner {
    justify-content: center;
  }

  .header {
    gap: 120px;
  }

  .header__title {
    font-size: 56px;
  }

  .header__subtitle {
    font-size: 14px;
  }

  .section__title {
    font-size: 40px;
  }

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

  .steps {
    flex-direction: column;
  }

  .step {
    padding-right: 0;
  }

  .step__number {
    font-size: 60px;
  }

  .hero-image {
    height: 250px;
    border-radius: 20px;
  }

  .hero-image__phone {
    width: 260px;
    top: -140px;
    border-radius: 36px;
  }

  .hero-image__screen {
    border-radius: 28px;
  }

  .hero-image__flag {
    width: 120px;
    left: 0;
    top: -40px;
  }

  .hero-image__book {
    width: 200px;
    top: -60px;
  }

  .cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-section__title {
    font-size: 40px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}

/* Cookie Consent theme */
#cc-main {
  --cc-font-family: 'Noto Sans', sans-serif;
  --cc-btn-primary-bg: #30A858;
  --cc-btn-primary-border-color: #30A858;
  --cc-btn-primary-hover-bg: #28924c;
  --cc-btn-primary-hover-border-color: #28924c;
  --cc-toggle-on-bg: #30A858;
  --cc-btn-border-radius: 12px;
  --cc-modal-border-radius: 16px;
}
