*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2563EB;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #1D4ED8;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0F172A;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 38px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
  color: #0F172A;
}
.fn-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .fn-container {
    padding: 0 16px;
  }
}
.fn-container--sm {
  max-width: 820px;
}
.fn-section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .fn-section {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .fn-section {
    padding: 64px 0;
  }
}
.fn-section--dark {
  background: #080E1A;
  color: #FFFFFF;
}
.fn-section--dark h1,
.fn-section--dark h2,
.fn-section--dark h3,
.fn-section--dark h4,
.fn-section--dark h5,
.fn-section--dark h6 {
  color: #FFFFFF;
}
.fn-section--dark p {
  color: #94A3B8;
}
.fn-section--light {
  background: #F8FAFC;
}
.fn-section--gradient {
  background: linear-gradient(160deg, #0A1628 0%, #12103A 50%, #0A1628 100%);
  color: #FFFFFF;
}
.fn-section--gradient h1,
.fn-section--gradient h2,
.fn-section--gradient h3,
.fn-section--gradient h4,
.fn-section--gradient h5,
.fn-section--gradient h6 {
  color: #FFFFFF;
}
.fn-section--gradient p {
  color: #94A3B8;
}
.fn-section-header {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .fn-section-header {
    margin-bottom: 32px;
  }
}
.fn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
}
.fn-eyebrow::before,
.fn-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #2563EB;
}
.fn-section--dark .fn-eyebrow,
.fn-section--gradient .fn-eyebrow {
  color: #93C5FD;
}
.fn-section--dark .fn-eyebrow::before,
.fn-section--gradient .fn-eyebrow::before,
.fn-section--dark .fn-eyebrow::after,
.fn-section--gradient .fn-eyebrow::after {
  background: #93C5FD;
}
.fn-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .fn-section-title {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .fn-section-title {
    font-size: 30px;
  }
}
.fn-section--dark .fn-section-title,
.fn-section--gradient .fn-section-title {
  color: #FFFFFF;
}
.fn-section-title span {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fn-section-subtitle {
  font-size: 18px;
  color: #64748B;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}
.fn-section--dark .fn-section-subtitle,
.fn-section--gradient .fn-section-subtitle {
  color: #94A3B8;
}
.fn-grid {
  display: grid;
  gap: 24px;
}
.fn-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.fn-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.fn-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .fn-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fn-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fn-grid--2,
  .fn-grid--3,
  .fn-grid--4 {
    grid-template-columns: 1fr;
  }
}
.fn-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  border-radius: 9999px;
  margin: 16px auto 0;
}
.fn-text-gradient {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wp-site-blocks {
  padding: 0 !important;
}
.fn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.fn-btn i,
.fn-btn svg {
  font-size: 1em;
}
.fn-btn--primary {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
}
.fn-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
  color: #FFFFFF;
}
.fn-btn--primary:active {
  transform: translateY(0);
}
.fn-btn--outline {
  background: transparent;
  color: #2563EB;
  border-color: #2563EB;
}
.fn-btn--outline:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.fn-btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.fn-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.fn-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: transparent;
  backdrop-filter: blur(8px);
}
.fn-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}
.fn-btn--sm {
  padding: 8px 20px;
  font-size: 12px;
}
.fn-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}
.fn-btn--store {
  background: #111827;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 14px;
  gap: 12px;
}
.fn-btn--store .fn-btn__icon {
  font-size: 22px;
  opacity: .9;
}
.fn-btn--store .fn-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.fn-btn--store .fn-btn__text small {
  font-size: 10px;
  font-weight: 400;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fn-btn--store .fn-btn__text span {
  font-size: 14px;
  font-weight: 600;
}
.fn-btn--store:hover {
  background: #1B2538;
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.fn-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
}
.fn-badge--blue {
  background: #DBEAFE;
  color: #1D4ED8;
}
.fn-badge--purple {
  background: #EDE9FE;
  color: #6D28D9;
}
.fn-badge--amber {
  background: #FEF3C7;
  color: #92400E;
}
.fn-badge--green {
  background: #D1FAE5;
  color: #065F46;
}
.fn-badge--dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.fn-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  padding: 32px;
  transition: all 0.2s ease;
}
.fn-card:hover {
  border-color: #DBEAFE;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}
.fn-card--dark {
  background: #1B2538;
  border-color: rgba(255, 255, 255, 0.1);
}
.fn-card--dark:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.fn-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: #2563EB;
}
.fn-card--dark .fn-card__icon {
  background: rgba(37, 99, 235, 0.15);
  color: #93C5FD;
}
.fn-card__title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}
.fn-card--dark .fn-card__title {
  color: #FFFFFF;
}
.fn-card__text {
  font-size: 14px;
  color: #64748B;
  line-height: 1.75;
}
.fn-card--dark .fn-card__text {
  color: #94A3B8;
}
.fn-app-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.fn-app-card:hover {
  border-color: #2563EB;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  color: inherit;
}
.fn-app-card--dark {
  background: #1B2538;
  border-color: rgba(255, 255, 255, 0.1);
}
.fn-app-card--dark:hover {
  border-color: #2563EB;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.fn-app-card--dark .fn-app-card__name {
  color: #FFFFFF;
}
.fn-app-card--dark .fn-app-card__desc {
  color: #94A3B8;
}
.fn-app-card--dark .fn-app-card__meta {
  color: #94A3B8;
}
.fn-app-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #2563EB;
}
.fn-app-card__icon img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}
.fn-app-card__body {
  flex: 1;
  min-width: 0;
}
.fn-app-card__name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fn-app-card__desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.375;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fn-app-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #94A3B8;
}
.fn-app-card__meta i {
  font-size: 11px;
}
.fn-app-card__meta .fn-rating {
  color: #F59E0B;
}
.fn-app-card__arrow {
  color: #94A3B8;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}
.fn-app-card:hover .fn-app-card__arrow {
  color: #2563EB;
  transform: translateX(3px);
}
.fn-stat {
  text-align: center;
  padding: 24px;
}
.fn-stat__number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .fn-stat__number {
    font-size: 38px;
  }
}
.fn-stat__label {
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fn-section--dark .fn-stat .fn-stat__label,
.fn-section--gradient .fn-stat .fn-stat__label {
  color: #94A3B8;
}
.fn-alert {
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.fn-alert--success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}
.fn-alert--error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}
.fn-alert.is-visible {
  display: block;
}
.fn-form__group {
  margin-bottom: 24px;
}
.fn-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}
.fn-form__input,
.fn-form__textarea,
.fn-form__select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0F172A;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
}
.fn-form__input::placeholder,
.fn-form__textarea::placeholder,
.fn-form__select::placeholder {
  color: #94A3B8;
}
.fn-form__input:focus,
.fn-form__textarea:focus,
.fn-form__select:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.fn-form__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.75;
}
.fn-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) {
  .fn-form__row {
    grid-template-columns: 1fr;
  }
}
.fn-tabs {
  display: flex;
  gap: 8px;
  background: #F8FAFC;
  border-radius: 9999px;
  padding: 4px;
  width: fit-content;
}
.fn-tabs__btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fn-tabs__btn.is-active {
  background: #FFFFFF;
  color: #2563EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fn-tabs__btn:hover:not(.is-active) {
  color: #0F172A;
}
.fn-tabs--dark {
  background: rgba(255, 255, 255, 0.08);
}
.fn-tabs--dark .fn-tabs__btn {
  color: #94A3B8;
}
.fn-tabs--dark .fn-tabs__btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
}
.fn-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fn-brand-pill--brasil {
  background: linear-gradient(135deg, #009B3A 0%, #FEDF00 100%);
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.fn-brand-pill--global {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  color: #FFFFFF;
}
.fn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.fn-header.is-scrolled {
  background: rgba(8, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.fn-header.is-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 #E2E8F0;
}
.fn-header.is-light .fn-nav__link {
  color: #334155;
}
.fn-header.is-light .fn-nav__link:hover {
  color: #2563EB;
}
.fn-header.is-light .fn-logo__text {
  color: #0F172A;
}
.fn-header.is-light .fn-logo__dot {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
}
.fn-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .fn-header__inner {
    padding: 0 16px;
  }
}
.fn-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.fn-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  flex-shrink: 0;
}
.fn-logo__text {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.fn-logo__text span {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fn-logo:hover {
  opacity: .85;
}
.fn-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 900px) {
  .fn-nav {
    display: none;
  }
}
.fn-nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.fn-nav__link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}
.fn-nav__link.is-active {
  color: #FFFFFF;
}
.fn-lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 3px;
  margin-left: 12px;
}
.fn-header.is-light .fn-lang-switch {
  background: #F8FAFC;
}
.fn-lang-switch__btn {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  letter-spacing: .04em;
}
.fn-header.is-light .fn-lang-switch__btn {
  color: #64748B;
}
.fn-lang-switch__btn.is-active {
  background: #FFFFFF;
  color: #2563EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fn-header.is-light .fn-lang-switch__btn.is-active {
  background: #2563EB;
  color: #FFFFFF;
}
.fn-lang-switch__btn:hover:not(.is-active) {
  color: #FFFFFF;
}
.fn-header.is-light .fn-lang-switch__btn:hover:not(.is-active) {
  color: #0F172A;
}
.fn-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 900px) {
  .fn-header__actions {
    gap: 8px;
  }
}
.fn-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px 4px;
  cursor: pointer;
  border: none;
  background: transparent;
}
@media (max-width: 900px) {
  .fn-mobile-toggle {
    display: flex;
  }
}
.fn-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.2s ease;
  transform-origin: center;
}
.fn-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fn-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.fn-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.fn-header.is-light .fn-mobile-toggle span {
  background: #0F172A;
}
.fn-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.fn-mobile-menu.is-open {
  display: flex;
}
.fn-mobile-menu .fn-nav__link {
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 10px;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}
.fn-mobile-menu .fn-nav__link:hover,
.fn-mobile-menu .fn-nav__link.is-active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}
.fn-mobile-menu .fn-lang-switch {
  margin: 16px 0 0;
  align-self: flex-start;
}
.fn-mobile-menu .fn-btn {
  margin-top: 16px;
  align-self: flex-start;
}
.fn-footer {
  background: #080E1A;
  color: #FFFFFF;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .fn-footer {
    padding-top: 80px;
  }
}
.fn-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .fn-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .fn-footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.fn-footer__brand .fn-logo {
  margin-bottom: 16px;
}
.fn-footer__brand p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.fn-footer__socials {
  display: flex;
  gap: 12px;
}
.fn-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.fn-social-btn:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.fn-footer__col-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.fn-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fn-footer__col a {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.fn-footer__col a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}
.fn-footer__col a i {
  font-size: 12px;
  opacity: .6;
}
.fn-footer__entities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 576px) {
  .fn-footer__entities {
    grid-template-columns: 1fr;
  }
}
.fn-entity-card {
  padding: 24px;
  background: #1B2538;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.fn-entity-card__flag {
  font-size: 24px;
  margin-bottom: 12px;
}
.fn-entity-card__name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.fn-entity-card__info {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.75;
  margin: 0;
}
.fn-entity-card__info a {
  color: #93C5FD;
}
.fn-entity-card__info a:hover {
  color: #FFFFFF;
}
.fn-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}
@media (max-width: 600px) {
  .fn-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.fn-footer__bottom-copy {
  font-size: 14px;
  color: #94A3B8;
}
.fn-footer__bottom-copy a {
  color: #94A3B8;
}
.fn-footer__bottom-copy a:hover {
  color: #FFFFFF;
}
.fn-footer__bottom-links {
  display: flex;
  gap: 24px;
}
.fn-footer__bottom-links a {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.2s ease;
}
.fn-footer__bottom-links a:hover {
  color: #FFFFFF;
}
.fn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0A1628 0%, #12103A 50%, #0A1628 100%);
  overflow: hidden;
  padding-top: 72px;
}
.fn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 10% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 70%), radial-gradient(ellipse 600px 500px at 90% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.fn-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 0 80px;
}
@media (max-width: 900px) {
  .fn-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}
@media (max-width: 576px) {
  .fn-hero__grid {
    padding: 64px 0;
  }
}
.fn-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.fn-hero__eyebrow span {
  padding: 3px 12px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 9999px;
}
.fn-hero__title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 1100px) {
  .fn-hero__title {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .fn-hero__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .fn-hero__title {
    font-size: 32px;
  }
}
.fn-hero__title .highlight {
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fn-hero__subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .fn-hero__subtitle {
    margin: 0 auto 48px;
  }
}
@media (max-width: 480px) {
  .fn-hero__subtitle {
    font-size: 16px;
  }
}
.fn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media (max-width: 900px) {
  .fn-hero__actions {
    justify-content: center;
  }
}
.fn-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
@media (max-width: 900px) {
  .fn-hero__visual {
    justify-content: center;
    max-width: 440px;
    margin: 0 auto;
  }
}
.fn-hero__phone {
  position: relative;
  width: 200px;
  flex-shrink: 0;
}
.fn-hero__phone--primary {
  z-index: 2;
}
.fn-hero__phone--secondary {
  transform: translateY(24px) scale(0.92);
  opacity: .7;
  z-index: 1;
}
@media (max-width: 480px) {
  .fn-hero__phone--secondary {
    display: none;
  }
}
.fn-hero__phone-frame {
  width: 100%;
  aspect-ratio: 9/19.5;
  background: #1B2538;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.fn-hero__phone-frame-header {
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fn-hero__phone-frame-header::after {
  content: '';
  width: 64px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
}
.fn-hero__phone-frame-screen {
  flex: 1;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.15) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 12px;
}
.fn-hero__phone-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.fn-hero__phone-icon {
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.fn-hero__phone-icon:nth-child(2) {
  background: linear-gradient(135deg, #7C3AED, #EC4899);
}
.fn-hero__phone-icon:nth-child(3) {
  background: linear-gradient(135deg, #059669, #0EA5E9);
}
.fn-hero__phone-icon:nth-child(4) {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
}
.fn-hero__phone-icon:nth-child(5) {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
}
.fn-hero__phone-icon:nth-child(6) {
  background: linear-gradient(135deg, #0EA5E9, #2563EB);
}
.fn-hero__phone-bar {
  width: 80%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.fn-hero__phone-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  border-radius: 3px;
}
.fn-hero__badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  animation: fn-float 4s ease-in-out infinite;
}
.fn-hero__badge--downloads {
  bottom: 10%;
  left: -20px;
  animation-delay: 0s;
}
.fn-hero__badge--rating {
  top: 12%;
  right: -10px;
  animation-delay: 2s;
}
.fn-hero__badge i {
  font-size: 14px;
}
.fn-hero__badge .fn-stars {
  color: #F59E0B;
}
.fn-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fn-bounce 2s ease-in-out infinite;
}
.fn-hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
}
@keyframes fn-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes fn-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.fn-stats-bar {
  background: #FFFFFF;
  padding: 48px 0;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.fn-stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .fn-stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .fn-stats-bar__inner {
    grid-template-columns: 1fr;
  }
}
.fn-stats-bar__item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
}
.fn-stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #E2E8F0;
}
@media (max-width: 768px) {
  .fn-stats-bar__item:not(:last-child)::after {
    display: none;
  }
}
.fn-stats-bar__number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.fn-stats-bar__label {
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
}
.fn-about__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .fn-about__header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.fn-about__content .fn-eyebrow {
  justify-content: flex-start;
}
.fn-about__content .fn-eyebrow::before,
.fn-about__content .fn-eyebrow::after {
  display: none;
}
.fn-about__content .fn-section-title {
  text-align: left;
  margin-bottom: 16px;
}
.fn-about__content .fn-section-subtitle {
  text-align: left;
  margin: 0;
}
.fn-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  padding-bottom: 4px;
}
.fn-about__entities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .fn-about__entities {
    grid-template-columns: 1fr;
  }
}
.fn-about__entity {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
}
.fn-about__entity:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}
.fn-about__entity--br {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
  border-color: #BBF7D0;
}
.fn-about__entity--us {
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  border-color: #BFDBFE;
}
.fn-about__entity-flag {
  font-size: 32px;
  margin-bottom: 12px;
}
.fn-about__entity-name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0F172A;
  margin-bottom: 4px;
}
.fn-about__entity-type {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.fn-about__entity-info {
  font-size: 14px;
  color: #64748B;
  line-height: 1.75;
  margin: 0;
}
.fn-about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .fn-about__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fn-about__features {
    grid-template-columns: 1fr;
  }
}
.fn-about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}
.fn-about__feature i {
  font-size: 18px;
  color: #2563EB;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.fn-about__feature span {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  line-height: 1.375;
}
.fn-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .fn-apps-grid {
    grid-template-columns: 1fr;
  }
}
.fn-apps-subsection + .fn-apps-subsection {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #E2E8F0;
}
.fn-section--gradient .fn-apps-subsection + .fn-apps-subsection {
  border-color: rgba(255, 255, 255, 0.1);
}
.fn-apps-subsection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .fn-apps-subsection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.fn-apps-subsection-meta {
  flex: 1;
}
.fn-apps-subsection-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}
.fn-section--gradient .fn-apps-subsection-title {
  color: #FFFFFF;
}
.fn-apps-subsection-desc {
  font-size: 14px;
  color: #64748B;
  margin: 0;
}
.fn-section--gradient .fn-apps-subsection-desc {
  color: #94A3B8;
}
.fn-downloads-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  color: #2563EB;
  white-space: nowrap;
}
.fn-downloads-badge i {
  color: #F59E0B;
}
.fn-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #E2E8F0;
}
.fn-section--gradient .fn-store-buttons {
  border-color: rgba(255, 255, 255, 0.1);
}
.fn-store-section {
  text-align: center;
  background: linear-gradient(160deg, #0A1628 0%, #12103A 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}
.fn-store-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 20% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 70%), radial-gradient(ellipse 500px 300px at 80% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.fn-store-section .fn-container {
  position: relative;
}
.fn-store-section .fn-section-title {
  color: #FFFFFF;
}
.fn-store-section .fn-section-subtitle {
  color: #94A3B8;
}
.fn-store-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.fn-contact-hero {
  background: linear-gradient(160deg, #0A1628 0%, #12103A 50%, #0A1628 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fn-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 60%, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.fn-contact-hero .fn-container {
  position: relative;
}
.fn-contact-hero .fn-section-title {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}
.fn-contact-hero p {
  color: #94A3B8;
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .fn-contact-hero {
    padding: 120px 0 64px;
  }
  .fn-contact-hero .fn-section-title {
    font-size: 38px;
  }
}
.fn-contact-body {
  padding: 80px 0 120px;
}
@media (max-width: 768px) {
  .fn-contact-body {
    padding: 64px 0;
  }
}
.fn-contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .fn-contact-channels {
    grid-template-columns: 1fr;
  }
}
.fn-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  color: inherit;
}
.fn-channel-card:hover {
  border-color: #2563EB;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
  color: inherit;
}
.fn-channel-card:hover .fn-channel-card__arrow {
  color: #2563EB;
  transform: translateX(4px);
}
.fn-channel-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.fn-channel-card__body {
  flex: 1;
  min-width: 0;
}
.fn-channel-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748B;
  margin-bottom: 3px;
}
.fn-channel-card__value {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fn-channel-card__note {
  font-size: 12px;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fn-channel-card__arrow {
  font-size: 14px;
  color: #E2E8F0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.fn-contact-offices__title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #64748B;
  margin-bottom: 16px;
}
.fn-offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .fn-offices-grid {
    grid-template-columns: 1fr;
  }
}
.fn-office-card {
  padding: 24px 32px;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  background: #F8FAFC;
}
.fn-office-card__flag {
  font-size: 24px;
  margin-bottom: 12px;
}
.fn-office-card__name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.375;
}
.fn-office-card__address {
  font-size: 14px;
  color: #64748B;
  line-height: 1.75;
  margin: 0 0 16px;
}
.fn-office-card__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fn-office-card__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2563EB;
  text-decoration: none;
  transition: all 0.2s ease;
}
.fn-office-card__links a i {
  font-size: 12px;
  width: 14px;
}
.fn-office-card__links a:hover {
  color: #1D4ED8;
}
.fn-contact-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
  flex-wrap: wrap;
}
.fn-contact-legal a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  transition: all 0.2s ease;
}
.fn-contact-legal a i {
  font-size: 12px;
  color: #2563EB;
}
.fn-contact-legal a:hover {
  color: #2563EB;
}
.fn-contact-legal__sep {
  color: #E2E8F0;
  font-size: 16px;
}
.fn-legal-hero {
  background: linear-gradient(160deg, #0A1628 0%, #12103A 50%, #0A1628 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fn-legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 350px at 50% 60%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.fn-legal-hero .fn-container {
  position: relative;
}
.fn-legal-hero .fn-section-title {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}
.fn-legal-hero p {
  color: #94A3B8;
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 32px;
}
@media (max-width: 768px) {
  .fn-legal-hero {
    padding: 120px 0 64px;
  }
  .fn-legal-hero .fn-section-title {
    font-size: 38px;
  }
}
.fn-legal-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fn-legal-body {
  padding: 80px 0 120px;
}
@media (max-width: 768px) {
  .fn-legal-body {
    padding: 64px 0;
  }
}
.fn-legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .fn-legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.fn-legal-toc {
  position: sticky;
  top: calc(96px);
  background: #F8FAFC;
  border-radius: 20px;
  padding: 24px;
}
@media (max-width: 900px) {
  .fn-legal-toc {
    position: static;
  }
}
.fn-legal-toc__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #64748B;
  margin-bottom: 12px;
}
.fn-legal-toc__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fn-legal-toc__link {
  display: block;
  padding: 7px 12px;
  font-size: 14px;
  color: #64748B;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.fn-legal-toc__link:hover,
.fn-legal-toc__link.is-active {
  background: #FFFFFF;
  color: #2563EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fn-legal-content {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  padding: 64px;
}
@media (max-width: 576px) {
  .fn-legal-content {
    padding: 24px;
    border-radius: 20px;
  }
}
.fn-legal-content__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #64748B;
  background: #F8FAFC;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 32px;
}
.fn-legal-content__updated i {
  color: #2563EB;
}
.fn-legal-content h1 {
  font-size: 38px;
  color: #0F172A;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .fn-legal-content h1 {
    font-size: 30px;
  }
}
.fn-legal-content h2 {
  font-size: 24px;
  color: #0F172A;
  margin-top: 64px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid #E2E8F0;
  scroll-margin-top: calc(96px);
}
.fn-legal-content h2:first-of-type {
  border-top: none;
  margin-top: 32px;
  padding-top: 0;
}
.fn-legal-content h3 {
  font-size: 20px;
  color: #0F172A;
  margin-top: 24px;
  margin-bottom: 12px;
}
.fn-legal-content p {
  font-size: 16px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 16px;
}
.fn-legal-content ul,
.fn-legal-content ol {
  list-style: initial;
  padding-left: 32px;
  margin-bottom: 16px;
}
.fn-legal-content ul li,
.fn-legal-content ol li {
  font-size: 16px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 8px;
}
.fn-legal-content ol {
  list-style: decimal;
}
.fn-legal-content strong {
  color: #0F172A;
  font-weight: 600;
}
.fn-legal-content a {
  color: #2563EB;
}
.fn-legal-content a:hover {
  color: #1D4ED8;
  text-decoration: underline;
}
.fn-legal-content blockquote {
  border-left: 3px solid #2563EB;
  padding: 12px 24px;
  background: #DBEAFE;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}
.fn-legal-content blockquote p {
  color: #0F172A;
  font-weight: 500;
  margin: 0;
}
.fn-legal-content .fn-legal-intro {
  font-size: 18px;
  color: #64748B;
  line-height: 1.75;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 32px;
}
.fn-legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
  flex-wrap: wrap;
}
.fn-legal-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fn-legal-nav__link:hover {
  color: #1D4ED8;
}
