@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap&subset=cyrillic");

.fl-landing {
  --fl-teal: #1f9c9e;
  --fl-teal-dark: #017474;
  --fl-teal-deep: #025353;
  --fl-teal-light: #e8f7f7;
  --fl-teal-soft: #d4f0f0;
  --fl-white: #ffffff;
  --fl-dark: #1a1a1a;
  --fl-gray: #5a5a5a;
  --fl-gray-light: #f5f8f8;
  --fl-shadow: 0 12px 40px rgba(31, 156, 158, 0.12);
  --fl-radius: 16px;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--fl-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.fl-landing img {
  max-width: 100%;
  height: auto;
  display: block;
}

.fl-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Banner */
.fl-banner {
  display: block;
  line-height: 0;
  text-decoration: none !important;
  background: var(--fl-teal-dark);
}

.fl-banner .header-banner-desktop {
  width: 100%;
  height: auto;
}

.fl-banner .header-banner-mobile {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: none;
}

@media only screen and (max-width: 576px) {
  .fl-banner .header-banner-desktop {
    display: none;
  }

  .fl-banner .header-banner-mobile {
    display: block;
  }
}

/* Hero CTA strip */
.fl-hero-cta {
  padding: 40px 0 48px;
  background: linear-gradient(180deg, var(--fl-teal-light) 0%, var(--fl-white) 100%);
}

.fl-hero-cta__inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  align-items: center;
}

.fl-hero-cta__lead {
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--fl-gray);
  max-width: 520px;
}

.fl-hero-cta__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.fl-btn:hover {
  transform: translateY(-2px);
}

.fl-btn--primary {
  background: var(--fl-white);
  color: var(--fl-teal-dark) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fl-btn--primary:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.fl-btn--outline-dark {
  background: transparent;
  color: var(--fl-teal-dark) !important;
  border: 2px solid var(--fl-teal);
}

.fl-btn--outline-dark:hover {
  background: var(--fl-teal-light);
}

.fl-hero__card {
  width: 100%;
  background: var(--fl-white);
  border: 1px solid rgba(31, 156, 158, 0.2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--fl-shadow);
  color: var(--fl-dark);
}

.fl-hero__card-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fl-teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.fl-hero__card-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--fl-dark);
}

.fl-hero__card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.fl-hero__card-price-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fl-teal-dark);
}

.fl-hero__card-price-note {
  font-size: 14px;
  color: var(--fl-gray);
}

.fl-hero__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fl-hero__card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--fl-gray);
}

.fl-hero__card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fl-teal);
  font-weight: 700;
}

.fl-hero-cta .fl-btn--primary {
  background: var(--fl-teal);
  color: var(--fl-white) !important;
}

.fl-hero-cta .fl-btn--primary:hover {
  background: var(--fl-teal-dark);
}

/* Intro */
.fl-intro {
  padding: 72px 0 88px;
  background: var(--fl-white);
}

.fl-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fl-intro__media {
  position: relative;
}

.fl-intro__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--fl-radius);
  box-shadow: var(--fl-shadow);
}

.fl-intro__quote-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -20px;
  margin: 0;
  padding: 20px 24px;
  background: var(--fl-teal);
  color: var(--fl-white);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  box-shadow: 0 12px 32px rgba(1, 116, 116, 0.25);
}

.fl-intro__content {
  padding-bottom: 20px;
}

.fl-section-label {
  display: inline-block;
  color: var(--fl-teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.fl-section-title {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fl-dark);
}

.fl-text {
  margin: 0;
  font-size: 17px;
  color: var(--fl-gray);
}

.fl-text + .fl-text {
  margin-top: 16px;
}


/* Package box */
.fl-package {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--fl-teal-light) 0%, var(--fl-white) 100%);
}

.fl-package__box {
  background: var(--fl-teal);
  color: var(--fl-white);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--fl-shadow);
}

.fl-package__header {
  text-align: center;
  margin-bottom: 36px;
}

.fl-package__header .fl-section-title {
  color: var(--fl-white);
}

.fl-package__header .fl-section-label {
  color: rgba(255, 255, 255, 0.85);
}

.fl-package__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fl-package__item {
  background: var(--fl-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 20px 18px;
  color: var(--fl-teal-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fl-package__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.fl-package__item--paid {
  background: var(--fl-white);
}

.fl-package__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--fl-teal-light);
  color: var(--fl-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.fl-package__item-icon svg,
.fl-access-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fl-access-card__icon svg {
  width: 28px;
  height: 28px;
}

.fl-package__item-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--fl-teal-dark);
}

.fl-package__item-text strong {
  color: var(--fl-teal-dark);
}

.fl-package__item-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fl-teal);
}

/* How it works */
.fl-steps {
  padding: 72px 0;
  background: var(--fl-white);
}

.fl-steps__panel {
  margin-top: 44px;
  padding: clamp(28px, 4vw, 36px) clamp(12px, 2.5vw, 24px);
  background: linear-gradient(135deg, var(--fl-teal-light) 0%, rgba(232, 247, 247, 0.4) 100%);
  border-radius: 20px;
  border: 1px solid rgba(31, 156, 158, 0.14);
}

.fl-steps__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.fl-step {
  flex: 1;
  min-width: 0;
  max-width: 220px;
  padding: 22px 18px;
  text-align: center;
  background: var(--fl-white);
  border-radius: 14px;
  border: 1px solid rgba(31, 156, 158, 0.1);
  box-shadow: 0 6px 20px rgba(31, 156, 158, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fl-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(31, 156, 158, 0.14);
}

.fl-step__lead {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fl-teal-dark);
}

.fl-step__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fl-gray);
}

.fl-step__em {
  font-weight: 700;
  color: var(--fl-teal-dark);
}

.fl-steps__arrow {
  flex-shrink: 0;
  width: clamp(20px, 3vw, 36px);
  height: 2px;
  margin: 0 2px;
  background: linear-gradient(90deg, var(--fl-teal) 30%, rgba(31, 156, 158, 0.25) 100%);
  position: relative;
}

.fl-steps__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left: 6px solid var(--fl-teal);
}

/* Activities / Professions */
.fl-activities {
  padding: 72px 0;
  background: var(--fl-gray-light);
  position: relative;
  overflow: hidden;
}

.fl-activities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(31, 156, 158, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(1, 116, 116, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.fl-activities .fl-container {
  position: relative;
  z-index: 1;
}

.fl-activities__intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

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

.fl-profession {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--fl-white);
  border: 1px solid #e0ecec;
  border-radius: var(--fl-radius);
  padding: 28px 24px 24px;
  box-shadow: 0 4px 24px rgba(31, 156, 158, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.fl-profession::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fl-teal-dark), var(--fl-teal), #2eb8ba);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fl-profession::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 156, 158, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.fl-profession:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 156, 158, 0.35);
  box-shadow: var(--fl-shadow);
}

.fl-profession:hover::before {
  opacity: 1;
}

.fl-profession__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fl-teal-light) 0%, var(--fl-teal-soft) 100%);
  color: var(--fl-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.fl-profession__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fl-profession__title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fl-dark);
  line-height: 1.3;
}

.fl-profession__desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fl-gray);
  flex: 1;
}

.fl-profession__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.fl-profession__tags span {
  display: inline-block;
  padding: 5px 12px;
  background: var(--fl-teal-light);
  border: 1px solid rgba(31, 156, 158, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fl-teal-dark);
  line-height: 1.3;
}

.fl-activities__note {
  margin: 32px auto 0;
  max-width: 900px;
  padding: 16px 20px;
  background: var(--fl-white);
  border-left: 4px solid var(--fl-teal);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--fl-gray);
}

/* Access */
.fl-access {
  padding: 72px 0;
  background: var(--fl-white);
}

.fl-access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.fl-access-card {
  padding: 36px 32px;
  border-radius: var(--fl-radius);
  border: 2px solid #e4ecec;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fl-access-card:hover {
  border-color: var(--fl-teal);
  box-shadow: var(--fl-shadow);
}

.fl-access-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--fl-teal-light);
  color: var(--fl-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-access-card .fl-btn--primary {
  background: var(--fl-teal);
  color: var(--fl-white) !important;
}

.fl-access-card .fl-btn--primary:hover {
  background: var(--fl-teal-dark);
}

.fl-access-card__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.fl-access-card__text {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--fl-gray);
}

/* Form section */
.fl-form-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--fl-teal-light) 0%, var(--fl-white) 100%);
}

.fl-form-section .fl-section-title {
  text-align: center;
}

.fl-form-section .news-feedback {
  max-width: 900px;
  margin: 32px auto 0;
  background: var(--fl-white);
  border-radius: var(--fl-radius);
  padding: 32px;
  box-shadow: var(--fl-shadow);
}

/* Why section */
.fl-why {
  padding: 72px 0 88px;
  background: var(--fl-teal-dark);
  color: var(--fl-white);
}

.fl-why__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}

.fl-why__media {
  position: relative;
  min-height: 100%;
}

.fl-why__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--fl-radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.fl-why__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fl-why__tagline {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-top: 8px;
}

.fl-why .fl-section-label {
  color: rgba(255, 255, 255, 0.75);
}

.fl-why .fl-section-title {
  color: var(--fl-white);
}

.fl-why .fl-text {
  color: rgba(255, 255, 255, 0.88);
}

.fl-why__cta-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  margin-top: 28px;
}

.fl-why__cta-quote {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fl-white);
}

.fl-why__cta-box .fl-btn--primary {
  width: 100%;
  background: var(--fl-white);
  color: var(--fl-teal-dark) !important;
}

.fl-why__cta-box .fl-btn--primary:hover {
  background: var(--fl-teal-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .fl-hero-cta__inner,
  .fl-intro__grid,
  .fl-why__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fl-hero__card {
    max-width: 100%;
  }

  .fl-intro__quote-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .fl-why__img {
    min-height: 320px;
  }

  .fl-package__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl-steps__panel {
    padding: 24px 20px;
  }

  .fl-steps__flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .fl-step {
    max-width: none;
    width: 100%;
    padding: 20px 22px;
  }

  .fl-steps__arrow {
    width: 2px;
    height: 28px;
    margin: 6px auto;
    background: linear-gradient(180deg, var(--fl-teal) 30%, rgba(31, 156, 158, 0.25) 100%);
  }

  .fl-steps__arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top: 6px solid var(--fl-teal);
    border-left-color: transparent;
  }

  .fl-professions {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl-access__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fl-hero-cta {
    padding: 32px 0 40px;
  }

  .fl-intro,
  .fl-package,
  .fl-steps,
  .fl-activities,
  .fl-access,
  .fl-form-section,
  .fl-why {
    padding: 48px 0;
  }

  .fl-hero__actions {
    flex-direction: column;
  }

  .fl-hero__actions .fl-btn {
    width: 100%;
  }

  .fl-intro__media {
    order: -1;
  }

  .fl-intro {
    padding-bottom: 48px;
  }

  .fl-why__img {
    min-height: 260px;
  }

  .fl-package__grid {
    grid-template-columns: 1fr;
  }

  .fl-professions {
    grid-template-columns: 1fr;
  }

  .fl-profession {
    padding: 24px 20px 20px;
  }

  .fl-form-section .news-feedback {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .fl-profession__tags span {
    font-size: 11px;
    padding: 4px 10px;
  }
}
