@charset "UTF-8";
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(10px, 2vw, 30px);
}

@layer reset, lazy, ratios;
@layer reset {
  img[src$=".svg"],
  picture img[src$=".svg"],
  .mfo-card__logo,
  img[data-mfo-logo],
  img[data-mfo-logo-mobile] {
    opacity: 1 !important;
    -webkit-filter: none !important;
            filter: none !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  img:not(.logo):not(.mfo-card__logo):not([data-mfo-logo]):not([data-mfo-logo-mobile]),
  picture img:not(.logo):not(.mfo-card__logo):not([data-mfo-logo]):not([data-mfo-logo-mobile]) {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    will-change: opacity, filter, transform;
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-transition: opacity 0.5s ease, -webkit-filter 0.5s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.5s ease, -webkit-filter 0.5s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.4s ease;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.4s ease, -webkit-filter 0.5s ease, -webkit-transform 0.4s ease;
  }
  img.logo {
    max-width: none !important;
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: none;
            transform: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@layer lazy {
  img.loading:not(.logo):not(.mfo-card__logo):not([data-mfo-logo]):not([data-mfo-logo-mobile]),
  picture img.loading:not(.logo):not(.mfo-card__logo):not([data-mfo-logo]):not([data-mfo-logo-mobile]) {
    opacity: 0.4;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
  }
  img.loaded:not(.logo):not(.mfo-card__logo):not([data-mfo-logo]):not([data-mfo-logo-mobile]),
  picture img.loaded:not(.logo):not(.mfo-card__logo):not([data-mfo-logo]):not([data-mfo-logo-mobile]) {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@layer ratios {}
h1, h2, h3, h4, h5, h6,
.section-title,
.page-title,
.hero__title,
.mfo-header__title,
.faq-item__question-text,
.review-card__author-name,
.exit-popup__title,
.bottom-cta__title,
.mfo-comparison__param-title {
  font-family: "Merriweather", Georgia, serif;
}

.observe {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.observe.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

img.lazy.loading {
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

img.lazy.loaded {
  -webkit-filter: none;
          filter: none;
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: #0A2A43;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.scroll-top:hover {
  background-color: rgb(19.8, 90.9, 194.4);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.menu-open {
    overflow: auto;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in {
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}

/* Reset the default margin, padding, and box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Set default font and line-height */
html {
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
  scroll-behavior: smooth; /* Smooth scrolling */
}

/* Remove default body margin and set height to 100% */
body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed; /* Speed up text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improve media elements default styles */
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
  background-color: transparent;
  border: none;
}

/* Remove built-in form element styles */
button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/* Remove additional space for inputs on iOS */
textarea {
  overflow: auto;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Make links consistent across browsers */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Table border collapse */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset for iframe */
iframe {
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.header.scrolled {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.header__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  gap: 32px;
}
@media (max-width: 1023px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
  }
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #0A2A43;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__logo:hover {
  color: #1665D8;
}
@media (max-width: 1023px) {
  .header__logo {
    font-size: 20px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1023px) {
  .header__nav {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 24px 0;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
}
@media (max-width: 1023px) {
  .header__nav--open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (max-width: 1023px) {
  .header__nav-item {
    border-bottom: 1px solid #F3F4F6;
  }
  .header__nav-item:last-child {
    border-bottom: none;
  }
}
.header__nav-link {
  position: relative;
  display: block;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1C1C1C;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 1023px) {
  .header__nav-link {
    padding: 16px 24px;
  }
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1665D8;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (max-width: 1023px) {
  .header__nav-link::after {
    display: none;
  }
}
.header__nav-link:hover {
  color: #1665D8;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link--active {
  color: #1665D8;
}
.header__nav-link--active::after {
  width: 100%;
}
@media (max-width: 1023px) {
  .header__nav-link--active {
    background: #EEF3F8;
    color: #1665D8;
  }
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  position: relative;
  z-index: 1001;
}
.header__lang-wrapper {
  position: relative;
}
.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3c3c3c;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__lang:hover {
  border-color: #1665D8;
  color: #1665D8;
  background: rgba(22, 101, 216, 0.05);
}
.header__lang--active {
  border-color: #1665D8;
}
.header__lang--active .header__lang-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header__lang-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__lang-text {
  font-weight: 600;
}
.header__lang-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.6;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__lang:hover .header__lang-arrow {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1023px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #1C1C1C;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
.header__burger--active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1001;
}
.lang-dropdown--open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lang-dropdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3c3c3c;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lang-dropdown__item:hover {
  background: rgba(22, 101, 216, 0.08);
  color: #1665D8;
}
.lang-dropdown__item--active {
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
}
.lang-dropdown__item--active::after {
  content: "✓";
  margin-left: auto;
  font-size: 12px;
}
.lang-dropdown__flag {
  font-size: 18px;
  line-height: 1;
}
.lang-dropdown__label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

.lang-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  padding: 12px 24px;
  background: #3c3c3c;
  color: #fff;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999;
}
.lang-notification--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0A2A43 0%, #0D3558 100%);
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero {
    padding: 60px 0 48px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 48px 0 40px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 101, 216, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
}
.hero__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .hero__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    margin-bottom: 32px;
  }
}
.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero__title {
  margin: 0 0 24px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 28px;
  }
}
.hero__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__subtitle + .hero__subtitle {
  margin-top: 16px;
}
.hero__calculator {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero__features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .hero__features {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.hero__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.hero__feature svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.calculator {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .calculator {
    padding: 24px 20px;
  }
}
.calculator__heading {
  margin-bottom: 24px;
  text-align: center;
}
.calculator__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .calculator__title {
    font-size: 19px;
  }
}
.calculator__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.calculator__matches-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 32px;
  height: 26px;
  padding: 0 8px;
  background: #27AE60;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}
.calculator__matches-count--updated {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  background: rgb(54.0422535211, 209.9577464789, 119.8732394366);
}
.calculator__field {
  margin-bottom: 24px;
}
.calculator__field:last-of-type {
  margin-bottom: 28px;
}
.calculator__field-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.calculator__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.calculator__value-display {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.calculator__value-input {
  width: 110px;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: right;
}
.calculator__value-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.calculator__value-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.calculator__value-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.calculator__value-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.calculator__value-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.calculator__value-input::-webkit-outer-spin-button, .calculator__value-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calculator__value-input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.calculator__value-input--small {
  width: 64px;
}
.calculator__currency {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.calculator__slider-wrapper {
  margin-bottom: 8px;
}
.calculator__range {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.calculator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.calculator__range::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.calculator__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -moz-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}
.calculator__range::-moz-range-thumb:hover {
  transform: scale(1.1);
}
.calculator__slider-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.calculator__quick-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 12px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.calculator__quick-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 60px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.calculator__quick-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.calculator__quick-btn--active {
  background: #27AE60;
  border-color: #27AE60;
  color: #fff;
}
.calculator__submit {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 32px;
}
.calculator__submit--loading {
  pointer-events: none;
}
.calculator__submit--loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-animation: shimmer 1.5s infinite;
          animation: shimmer 1.5s infinite;
}
.calculator__note {
  margin-top: 10px;
  display: -ms-grid;
  display: grid;
  gap: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@-webkit-keyframes shimmer {
  100% {
    left: 100%;
  }
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}
.btn--pulse {
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 25px rgba(39, 174, 96, 0.7);
            box-shadow: 0 4px 25px rgba(39, 174, 96, 0.7);
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 25px rgba(39, 174, 96, 0.7);
            box-shadow: 0 4px 25px rgba(39, 174, 96, 0.7);
  }
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}
.btn--primary {
  background: #27AE60;
  color: #fff;
}
.btn--primary:hover {
  background: rgb(37.05, 165.3, 91.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(39, 174, 96, 0.3);
          box-shadow: 0 8px 16px rgba(39, 174, 96, 0.3);
}
.btn--primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.stats {
  padding: 60px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .stats {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .stats {
    padding: 40px 0;
  }
}
.stats__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1023px) {
  .stats__grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .stats__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-card {
  padding: 32px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stat-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
}
@media (max-width: 767px) {
  .stat-card {
    padding: 24px;
  }
}
.stat-card__value {
  font-size: 48px;
  font-weight: 700;
  color: #0A2A43;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .stat-card__value {
    font-size: 36px;
  }
}
.stat-card__label {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .stat-card__label {
    font-size: 14px;
  }
}
.stat-card--accent {
  background: linear-gradient(135deg, #1665D8 0%, #1976d2 100%);
}
.stat-card--accent .stat-card__value {
  color: #fff;
}
.stat-card--accent .stat-card__label {
  color: rgba(255, 255, 255, 0.9);
}

.why-us {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 1023px) {
  .why-us {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .why-us {
    padding: 48px 0;
  }
}
.why-us__header {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 1023px) {
  .why-us__header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .why-us__header {
    margin-bottom: 40px;
  }
}
.why-us__title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .why-us__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .why-us__title {
    font-size: 28px;
  }
}
.why-us__subtitle {
  margin: 0 auto;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
}
@media (max-width: 767px) {
  .why-us__subtitle {
    font-size: 16px;
  }
}
.why-us__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 1023px) {
  .why-us__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .why-us__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.why-us__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.05) 0%, rgba(10, 42, 67, 0.05) 100%);
  border-radius: 16px;
}
@media (max-width: 1023px) {
  .why-us__stats {
    gap: 24px;
    padding: 40px 32px;
  }
}
@media (max-width: 767px) {
  .why-us__stats {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
}

.why-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .why-card {
    padding: 24px;
  }
}
.why-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #1665D8;
}
.why-card:hover .why-card__icon svg circle:first-child {
  fill: rgba(22, 101, 216, 0.15);
}
.why-card__icon {
  margin-bottom: 24px;
}
.why-card__icon svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.why-card:hover .why-card__icon svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.why-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .why-card__title {
    font-size: 18px;
  }
}
.why-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
}

.trust-stat {
  text-align: center;
}
.trust-stat__value {
  margin-bottom: 8px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1665D8;
}
@media (max-width: 1023px) {
  .trust-stat__value {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .trust-stat__value {
    font-size: 36px;
  }
}
.trust-stat__label {
  font-size: 16px;
  line-height: 1.4;
  color: #3c3c3c;
}
@media (max-width: 767px) {
  .trust-stat__label {
    font-size: 14px;
  }
}

.mfo-list {
  padding: 80px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .mfo-list {
    padding: 60px 0;
  }
}
.mfo-list__header {
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 1023px) {
  .mfo-list__header {
    margin-bottom: 40px;
  }
}
.mfo-list__title {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .mfo-list__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .mfo-list__title {
    font-size: 28px;
  }
}
.mfo-list__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .mfo-list__subtitle {
    font-size: 16px;
  }
}
.mfo-list__actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .mfo-list__actions {
    gap: 10px;
  }
}
.mfo-list__filters {
  margin-bottom: 40px;
}
.mfo-list__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .mfo-list__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.mfo-list__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filters__btn {
  padding: 12px 24px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3c3c3c;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filters__btn:hover {
  border-color: #1665D8;
  color: #1665D8;
}
.filters__btn--active {
  background: #1665D8;
  color: #ffffff;
  border-color: #1665D8;
}

.mfo-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mfo-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #1665D8;
}
.mfo-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
}
.mfo-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F4F6;
}
.mfo-card__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F9FAFB;
  border-radius: 12px;
  overflow: hidden;
}
.mfo-card__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}
.mfo-card__rating {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mfo-card__reviews {
  margin-top: 4px;
  font-size: 13px;
  color: #6B7280;
}
.mfo-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 24px;
}
.mfo-card__features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.mfo-card__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.mfo-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.mfo-card__btn {
  width: 100%;
}
.mfo-card__link {
  text-align: center;
  font-size: 14px;
  color: #1665D8;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.mfo-card__link:hover {
  color: #0A2A43;
  text-decoration: underline;
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge--top {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1C1C1C;
}
.badge--popular {
  background: #1665D8;
  color: #ffffff;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.rating__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.rating__star {
  font-size: 18px;
  color: #E5E7EB;
}
.rating__star--filled {
  color: #FFD700;
}
.rating__star--half {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFD700), color-stop(50%, #E5E7EB));
  background: linear-gradient(90deg, #FFD700 50%, #E5E7EB 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating__value {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
}

.feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.feature__label {
  font-size: 13px;
  color: #6B7280;
}
.feature__value {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1C1C1C;
}

.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3c3c3c;
}
.benefit svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn--secondary {
  background: #ffffff;
  color: #3c3c3c;
  border: 1px solid #E5E7EB;
}
.btn--secondary:hover {
  background: #F9FAFB;
  border-color: #1665D8;
  color: #1665D8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mfo-list__loading,
.mfo-list__error,
.mfo-list__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
  text-align: center;
  min-height: 400px;
}
.mfo-list__loading p,
.mfo-list__error p,
.mfo-list__empty p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.mfo-page .mfo-list__loading,
.mfo-page .mfo-list__error,
.mfo-page .mfo-list__empty {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  min-height: 0;
  padding: 20px 0;
}

.mfo-list__loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(22, 101, 216, 0.1);
  border-top-color: #1665D8;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.mfo-list__error p {
  color: #e74c3c;
}

.mfo-list__empty p {
  color: var(--text-secondary);
}

.mfo-card {
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mfo-card__btn {
  position: relative;
}
.mfo-card__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mfo-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.mfo-card:hover {
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.15);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.15);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.mfo-card[data-priority="100"], .mfo-card[data-priority^="9"] {
  border: 2px solid #1665D8;
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.2);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.2);
}
.mfo-card[data-priority="100"]::before, .mfo-card[data-priority^="9"]::before {
  content: "⭐ Лучшее предложение";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1665D8 0%, #1976d2 100%);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}
.mfo-card[data-priority="100"] .mfo-card__header, .mfo-card[data-priority^="9"] .mfo-card__header {
  padding-top: 48px;
}

.mfo-card__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(10, 42, 67, 0.08);
  position: relative;
}

.mfo-card--has-badges .mfo-card__header {
  padding-top: 60px;
}

.mfo-card[data-priority="100"] .mfo-card__badge,
.mfo-card[data-priority^="9"] .mfo-card__badge {
  top: 44px;
}

.mfo-card__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 70px;
  max-height: 70px;
  height: 70px;
  margin-bottom: 16px;
  overflow: hidden;
}

.mfo-card__logo {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}

.mfo-card__logo-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e5a8e 0%, #2d7ab8 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
  letter-spacing: 1px;
}

.mfo-card__logo-placeholder[hidden] {
  display: none !important;
}

.mfo-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  max-width: calc(100% - 24px);
}

.mfo-card__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 28px;
}
.badge--success {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
}
.badge--primary {
  background: rgba(10, 42, 67, 0.1);
  color: #0A2A43;
}
.badge--accent {
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
}
.badge--warning {
  background: rgba(243, 156, 18, 0.1);
  color: #F39C12;
}
.badge--info {
  background: rgba(52, 152, 219, 0.1);
  color: #3498DB;
}
.badge--top {
  background: rgba(243, 156, 18, 0.12);
  color: #F39C12;
}
.badge--popular {
  background: rgba(22, 101, 216, 0.12);
  color: #1665D8;
}

.mfo-card__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  min-height: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.rating__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.rating__star {
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: rgba(10, 42, 67, 0.1);
  fill: rgba(10, 42, 67, 0.1);
}
.rating__star--full {
  color: #F39C12;
  fill: #F39C12;
}
.rating__star--half {
  color: #F39C12;
  fill: url(#star-half-gradient);
}
.rating__star--empty {
  color: rgba(10, 42, 67, 0.1);
  fill: rgba(10, 42, 67, 0.1);
}

.rating__value {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mfo-card__reviews {
  font-size: 12px;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.mfo-card__body {
  padding: 20px 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.mfo-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mfo-card__title-link {
  color: #1C1C1C;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.mfo-card__title-link:hover {
  color: #1665D8;
}

.conditions-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.conditions-table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 110px 1fr;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.conditions-table__label {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.conditions-table__value {
  font-size: 15px;
  color: #1C1C1C;
  font-weight: 600;
}
.conditions-table__value--highlight {
  font-size: 18px;
  color: #1665D8;
}

.mfo-card__features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mfo-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.mfo-feature__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: #1665D8;
}

.mfo-feature__text {
  font-size: 13px;
  color: #1C1C1C;
  line-height: 1.4;
}

.mfo-card__metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 16px;
  background: rgba(10, 42, 67, 0.03);
  border-radius: 12px;
}

.mfo-card__metric {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.mfo-card__metric-icon {
  fill: #1665D8;
}

.mfo-card__metric-value {
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1C;
}

.mfo-card__metric-label {
  font-size: 12px;
  color: #6B7280;
}

.mfo-card__footer {
  padding: 20px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(10, 42, 67, 0.08);
}

.mfo-card__cta {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mfo-card__cta.btn--loading {
  pointer-events: none;
}
.mfo-card__cta.btn--loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  -webkit-animation: loading 1.5s infinite;
          animation: loading 1.5s infinite;
}
.mfo-card__cta.btn--success {
  background: #27AE60;
  border-color: #27AE60;
}
.mfo-card__cta.btn--error {
  background: #E74C3C;
  border-color: #E74C3C;
  -webkit-animation: shake 0.5s;
          animation: shake 0.5s;
}

@-webkit-keyframes loading {
  to {
    left: 100%;
  }
}

@keyframes loading {
  to {
    left: 100%;
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.mfo-card__details-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #1665D8;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.mfo-card__details-link:hover {
  color: #0A2A43;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .mfo-card__header,
  .mfo-card__body,
  .mfo-card__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .mfo-card__features {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .conditions-table__row {
    -ms-grid-columns: 90px 1fr;
    grid-template-columns: 90px 1fr;
    gap: 8px;
  }
  .mfo-card__metrics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.notification--show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.notification--error {
  background: #E74C3C;
  color: white;
}
.notification--success {
  background: #27AE60;
  color: white;
}
.notification--info {
  background: #1665D8;
  color: white;
}

.mfo-skeleton {
  position: relative;
  overflow: hidden;
  background: #F3F4F6;
  border-radius: 12px;
  color: #6B7280;
}

body.is-loading .mfo-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.65)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  -webkit-animation: mfo-skeleton 1.2s ease-in-out infinite;
          animation: mfo-skeleton 1.2s ease-in-out infinite;
}

body.is-loading .rating__value,
body.is-loading .mfo-header__reviews-count a,
body.is-loading .mfo-header__stat-value,
body.is-loading .terms-grid__value,
body.is-loading .cta-card__promo-text,
body.is-loading .cta-card__note,
body.is-loading .cta-card__feature {
  color: transparent !important;
  background: #F3F4F6;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
body.is-loading .rating__value,
body.is-loading .mfo-header__stat-value {
  display: inline-block;
  min-width: 56px;
}
body.is-loading .mfo-header__reviews-count a {
  display: inline-block;
  min-width: 140px;
}
body.is-loading .terms-grid__value {
  display: block;
  min-height: 20px;
}
body.is-loading .cta-card__promo-text {
  display: inline-block;
  min-width: 220px;
}
body.is-loading .cta-card__note {
  min-height: 18px;
}
body.is-loading .cta-card__feature {
  min-height: 18px;
}
body.is-loading .rating__value::after,
body.is-loading .mfo-header__reviews-count a::after,
body.is-loading .mfo-header__stat-value::after,
body.is-loading .terms-grid__value::after,
body.is-loading .cta-card__promo-text::after,
body.is-loading .cta-card__note::after,
body.is-loading .cta-card__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.65)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  -webkit-animation: mfo-skeleton 1.2s ease-in-out infinite;
          animation: mfo-skeleton 1.2s ease-in-out infinite;
}

@-webkit-keyframes mfo-skeleton {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes mfo-skeleton {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.mfo-loading {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

body.is-loading-overlay .mfo-loading {
  opacity: 1;
  pointer-events: auto;
}

.mfo-loading__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px 18px;
  -webkit-box-shadow: 0 10px 28px rgba(10, 42, 67, 0.12);
          box-shadow: 0 10px 28px rgba(10, 42, 67, 0.12);
}

.mfo-loading__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(22, 101, 216, 0.25);
  border-top-color: #1665D8;
  -webkit-animation: mfo-spin 0.8s linear infinite;
          animation: mfo-spin 0.8s linear infinite;
}

.mfo-loading__text {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
}

@-webkit-keyframes mfo-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes mfo-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.is-loading .mfo-skeleton::after,
  body.is-loading .rating__value::after,
  body.is-loading .mfo-header__reviews-count a::after,
  body.is-loading .mfo-header__stat-value::after,
  body.is-loading .terms-grid__value::after,
  body.is-loading .cta-card__promo-text::after,
  body.is-loading .cta-card__note::after,
  body.is-loading .cta-card__feature::after,
  body.is-loading .trust-badge__text::after {
    -webkit-animation: none;
            animation: none;
  }
  .mfo-loading {
    -webkit-transition: none;
    transition: none;
  }
  .mfo-loading__spinner {
    -webkit-animation: none;
            animation: none;
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #6B7280;
}
.breadcrumbs__item--active {
  color: #1C1C1C;
  font-weight: 600;
}

.breadcrumbs__link {
  color: #6B7280;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.breadcrumbs__link:hover {
  color: #1665D8;
}

.mfo-header {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 42, 67, 0.08);
}

.mfo-header__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mfo-header__logo-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.mfo-header__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}

.mfo-header__logo {
  position: relative;
  width: 180px;
  height: 90px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.mfo-header__logo .mfo-header__logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}
.mfo-header__logo .mfo-header__logo-placeholder {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px dashed #E5E7EB;
  background: #EEF3F8;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mfo-header__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.mfo-header__rating-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.mfo-header__reviews-count {
  font-size: 14px;
  color: #6B7280;
}
.mfo-header__reviews-count a {
  color: #1665D8;
  text-decoration: none;
}
.mfo-header__reviews-count a:hover {
  text-decoration: underline;
}

.mfo-header__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.mfo-header__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.mfo-header__stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1665D8;
  line-height: 1;
}

.mfo-header__stat-label {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
}

@media (max-width: 1023px) {
  .mfo-header__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mfo-header__rating-section {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .mfo-header__stats {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .mfo-header__stat {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.quick-terms {
  padding: 60px 0;
  background: #EEF3F8;
}

.quick-terms__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.quick-terms__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1C1C1C;
}

.terms-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.06);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.06);
}

.terms-grid__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 160px 1fr;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 42, 67, 0.06);
}
.terms-grid__row:last-child {
  border-bottom: none;
}

.terms-grid__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
}

.terms-grid__icon {
  fill: #1665D8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.terms-grid__value {
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
}
.terms-grid__value--highlight {
  font-size: 20px;
  color: #1665D8;
}

.terms-grid__value-line {
  display: block;
}

.terms-grid__note {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
}

.cta-card {
  background: linear-gradient(135deg, #0A2A43 0%, #0D3558 100%);
  padding: 32px;
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.2);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.2);
  position: sticky;
  top: 24px;
}

.cta-card__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.cta-card__promo-icon {
  fill: #FFD700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta-card__promo-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.cta-card__button {
  width: 100%;
  margin-bottom: 16px;
  background: white;
  color: #0A2A43;
}
.cta-card__button:hover {
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.cta-card__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.cta-card__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: white;
}

.cta-card__feature-icon {
  fill: #27AE60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1023px) {
  .quick-terms__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .cta-card {
    position: static;
  }
  .terms-grid__row {
    -ms-grid-columns: 140px 1fr;
    grid-template-columns: 140px 1fr;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .terms-grid {
    padding: 20px;
  }
  .terms-grid__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cta-card {
    padding: 24px;
  }
}
.section-padding {
  padding: 60px 0;
}

.section-bg-light {
  background: #EEF3F8;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1C1C1C;
  text-align: center;
}

.conditions-tabs {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
}

.conditions-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 24px 24px 0;
  border-bottom: 2px solid rgba(10, 42, 67, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.conditions-tabs__nav::-webkit-scrollbar {
  height: 4px;
}
.conditions-tabs__nav::-webkit-scrollbar-track {
  background: rgba(10, 42, 67, 0.05);
}
.conditions-tabs__nav::-webkit-scrollbar-thumb {
  background: #1665D8;
  border-radius: 2px;
}

.conditions-tabs__button {
  padding: 12px 24px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.conditions-tabs__button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1665D8;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.conditions-tabs__button:hover {
  color: #1665D8;
}
.conditions-tabs__button--active {
  color: #1665D8;
}
.conditions-tabs__button--active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.conditions-tabs__content {
  padding: 32px 24px;
}

.conditions-tabs__panel {
  display: none;
}
.conditions-tabs__panel--active {
  display: block;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table tr {
  border-bottom: 1px solid rgba(10, 42, 67, 0.08);
}
.table tr:last-child {
  border-bottom: none;
}
.table th {
  text-align: left;
  padding: 16px 0;
  font-weight: 600;
  color: #6B7280;
  font-size: 15px;
  width: 280px;
}
.table td {
  padding: 16px 0;
  color: #1C1C1C;
  font-size: 15px;
  line-height: 1.6;
}

.info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  margin-top: 24px;
}
.info-block--warning {
  background: rgba(243, 156, 18, 0.1);
  border-left: 4px solid #F39C12;
}
.info-block--success {
  background: rgba(39, 174, 96, 0.1);
  border-left: 4px solid #27AE60;
}

.info-block__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: currentColor;
}

.info-block__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C1C1C;
}

.info-block__content p {
  font-size: 14px;
  line-height: 1.6;
  color: #1C1C1C;
  margin: 0;
}

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

.requirement-card {
  padding: 24px;
  background: #EEF3F8;
  border-radius: 12px;
  text-align: center;
}

.requirement-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  border-radius: 50%;
}
.requirement-card__icon svg {
  fill: #1665D8;
}

.requirement-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C1C1C;
}

.requirement-card__text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .requirements-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .requirements-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .table th {
    width: 140px;
  }
}
.documents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.document-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 20px;
  background: #EEF3F8;
  border-radius: 12px;
}

.document-item__number {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1665D8;
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.document-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C1C1C;
}

.document-item__text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .document-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .document-item__status {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
.process-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1665D8), to(rgba(22, 101, 216, 0.2)));
  background: linear-gradient(to bottom, #1665D8, rgba(22, 101, 216, 0.2));
}

.process-step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 20px;
  position: relative;
}

.process-step__number {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1665D8;
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C1C1C;
}

.process-step__text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 8px;
}

.process-step__time {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
}

.process-step__time:empty {
  display: none;
}

@media (max-width: 767px) {
  .process-steps::before {
    left: 19px;
  }
}
@-webkit-keyframes mfo-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mfo-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mfo-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes mfo-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@-webkit-keyframes mfo-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes mfo-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@-webkit-keyframes mfo-bounce-subtle {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes mfo-bounce-subtle {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@-webkit-keyframes mfo-count-up {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mfo-count-up {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.mfo-skeleton-v2, body.is-loading .mfo-page-v2 .mfo-skeleton-target {
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f0f0f0), color-stop(50%, #e0e0e0), color-stop(75%, #f0f0f0));
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: mfo-shimmer 1.5s ease-in-out infinite;
          animation: mfo-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

body.is-loading .mfo-page-v2 .mfo-skeleton-target {
  color: transparent !important;
}
body.is-loading .mfo-page-v2 .mfo-skeleton-target * {
  visibility: hidden;
}

.mfo-page-v2 {
  --mfo-container-padding: 24px;
}
@media (max-width: 767px) {
  .mfo-page-v2 {
    --mfo-container-padding: 16px;
  }
}

.mfo-page-v2 .btn--outline {
  border-color: #1665D8;
  color: #1665D8;
}
.mfo-page-v2 .btn--outline:hover {
  background: rgba(22, 101, 216, 0.08);
  border-color: #1665D8;
}

.mfo-hero-v2 {
  position: relative;
  padding: 0;
  background: #EEF3F8;
  overflow: hidden;
}
.mfo-hero-v2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 101, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mfo-hero-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px var(--mfo-container-padding);
  position: relative;
  z-index: 1;
}

.mfo-hero-v2__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 380px;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1023px) {
  .mfo-hero-v2__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.mfo-hero-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  -webkit-box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
  -webkit-animation: mfo-fade-in 0.5s ease-out;
          animation: mfo-fade-in 0.5s ease-out;
}

.mfo-hero-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.mfo-hero-card__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 16px;
  padding: 12px;
  -webkit-box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.mfo-hero-card__logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
}
.mfo-hero-card__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mfo-hero-card__logo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f0f0f0), color-stop(50%, #e8e8e8), color-stop(75%, #f0f0f0));
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: mfo-shimmer 1.5s ease-in-out infinite;
          animation: mfo-shimmer 1.5s ease-in-out infinite;
}

.mfo-hero-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.mfo-hero-card__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 8px;
  line-height: 1.2;
}

.mfo-hero-card__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mfo-badge-v2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mfo-badge-v2--promo {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1C1C1C;
}
.mfo-badge-v2--promo svg {
  fill: #1C1C1C;
}
.mfo-badge-v2--top {
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
  color: white;
}
.mfo-badge-v2--top svg {
  fill: white;
}
.mfo-badge-v2--verified {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: white;
}
.mfo-badge-v2--verified svg {
  fill: white;
}
.mfo-badge-v2--fast {
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
  color: white;
}
.mfo-badge-v2:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mfo-rating-v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.mfo-rating-v2__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}

.mfo-rating-v2__star {
  width: 24px;
  height: 24px;
}
.mfo-rating-v2__star--full {
  fill: #FFD700;
  -webkit-filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.4));
          filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.4));
}
.mfo-rating-v2__star--half {
  fill: url(#star-half-gradient);
}
.mfo-rating-v2__star--empty {
  fill: #E5E7EB;
}

.mfo-rating-v2__score {
  font-size: 24px;
  font-weight: 800;
  color: #0A2A43;
  -webkit-animation: mfo-count-up 0.5s ease-out;
          animation: mfo-count-up 0.5s ease-out;
}

.mfo-rating-v2__count {
  font-size: 14px;
  color: #6B7280;
}
.mfo-rating-v2__count a {
  color: #1665D8;
  text-decoration: none;
}
.mfo-rating-v2__count a:hover {
  text-decoration: underline;
}

.mfo-hero-stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 42, 67, 0.08);
}
@media (max-width: 767px) {
  .mfo-hero-stats {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.mfo-hero-stat {
  text-align: center;
}
.mfo-hero-stat__value {
  font-size: 20px;
  font-weight: 700;
  color: #1665D8;
  display: block;
  -webkit-animation: mfo-count-up 0.6s ease-out;
          animation: mfo-count-up 0.6s ease-out;
}
.mfo-hero-stat__label {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mfo-cta-card-v2 {
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
  border-radius: 20px;
  padding: 32px;
  color: white;
  position: sticky;
  top: 100px;
  -webkit-animation: mfo-fade-in 0.5s ease-out 0.2s both;
          animation: mfo-fade-in 0.5s ease-out 0.2s both;
}
@media (max-width: 1023px) {
  .mfo-cta-card-v2 {
    position: static;
  }
}

.mfo-cta-card-v2__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  -webkit-animation: mfo-pulse 2s ease-in-out infinite;
          animation: mfo-pulse 2s ease-in-out infinite;
}
.mfo-cta-card-v2__promo svg {
  width: 32px;
  height: 32px;
  fill: #FFD700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mfo-cta-card-v2__promo span {
  font-size: 18px;
  font-weight: 700;
}

.mfo-cta-card-v2__button {
  width: 100%;
  padding: 18px 32px;
  background: white;
  color: #0A2A43;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.mfo-cta-card-v2__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: mfo-shine 3s ease-in-out infinite;
          animation: mfo-shine 3s ease-in-out infinite;
}
.mfo-cta-card-v2__button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.mfo-cta-card-v2__button:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.mfo-cta-card-v2__button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mfo-cta-card-v2__button:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@-webkit-keyframes mfo-shine {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

@keyframes mfo-shine {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}
.mfo-cta-card-v2__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 16px 0 24px;
  line-height: 1.5;
}

.mfo-cta-card-v2__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.mfo-cta-card-v2__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 15px;
}
.mfo-cta-card-v2__feature svg {
  width: 20px;
  height: 20px;
  fill: #34D399;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mfo-live-activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.mfo-live-activity__dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
}
.mfo-live-activity__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #34D399;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: mfo-live-pulse 2s ease-out infinite;
          animation: mfo-live-pulse 2s ease-out infinite;
}
.mfo-live-activity__count {
  font-weight: 700;
  color: white;
  font-size: 15px;
}
.mfo-live-activity__count.updating {
  -webkit-animation: mfo-count-bump 0.3s ease-out;
          animation: mfo-count-bump 0.3s ease-out;
}

@-webkit-keyframes mfo-live-pulse {
  0% {
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5);
  }
}

@keyframes mfo-live-pulse {
  0% {
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5);
  }
}
@-webkit-keyframes mfo-count-bump {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes mfo-count-bump {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.mfo-trust-v2 {
  background: white;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 42, 67, 0.06);
}

.mfo-trust-v2__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .mfo-trust-v2__grid {
    gap: 16px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.mfo-trust-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6B7280;
  padding: 8px 16px;
  border-radius: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mfo-trust-item svg {
  width: 20px;
  height: 20px;
  fill: #27AE60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mfo-trust-item:hover {
  background: rgba(16, 185, 129, 0.08);
  color: #1C1C1C;
}
.mfo-trust-item:hover svg {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
@media (max-width: 767px) {
  .mfo-trust-item {
    font-size: 12px;
    padding: 6px 12px;
  }
  .mfo-trust-item svg {
    width: 16px;
    height: 16px;
  }
}

.mfo-terms-v2 {
  padding: 60px 0;
  background: #EEF3F8;
  position: relative;
}
.mfo-terms-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 42, 67, 0.02)), to(transparent));
  background: linear-gradient(180deg, rgba(10, 42, 67, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.mfo-terms-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
  position: relative;
}

.mfo-terms-v2__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mfo-terms-v2__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.mfo-terms-v2__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 12px;
  line-height: 1.25;
}
@media (max-width: 1023px) {
  .mfo-terms-v2__title {
    font-size: 36px;
  }
}

.mfo-terms-v2__subtitle {
  font-size: 17px;
  color: #6B7280;
  margin: 0;
  line-height: 1.7;
}

.mfo-terms-v2__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .mfo-terms-v2__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .mfo-terms-v2__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.mfo-term-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.mfo-term-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1665D8 0%, #3B82F6 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mfo-term-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 40px rgba(10, 42, 67, 0.12);
          box-shadow: 0 16px 40px rgba(10, 42, 67, 0.12);
}
.mfo-term-card:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.mfo-term-card:hover .mfo-term-card__icon {
  -webkit-transform: scale(1.1) rotate(-5deg);
          transform: scale(1.1) rotate(-5deg);
}
.mfo-term-card--highlight {
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.03) 0%, rgba(59, 130, 246, 0.06) 100%);
  border: 2px solid rgba(22, 101, 216, 0.2);
}
.mfo-term-card--highlight::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}
.mfo-term-card--highlight .mfo-term-card__icon {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}
.mfo-term-card--highlight .mfo-term-card__icon svg {
  fill: white;
}
.mfo-term-card--success .mfo-term-card__icon {
  background: rgba(39, 174, 96, 0.1);
}
.mfo-term-card--success .mfo-term-card__icon svg {
  fill: #27AE60;
}
.mfo-term-card--success .mfo-term-card__icon:hover {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}
.mfo-term-card--success .mfo-term-card__icon:hover svg {
  fill: white;
}
.mfo-term-card--warning .mfo-term-card__icon {
  background: rgba(245, 158, 11, 0.1);
}
.mfo-term-card--warning .mfo-term-card__icon svg {
  fill: #F59E0B;
}
.mfo-term-card--info .mfo-term-card__icon {
  background: rgba(59, 130, 246, 0.1);
}
.mfo-term-card--info .mfo-term-card__icon svg {
  fill: #3B82F6;
}

.mfo-term-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(22, 101, 216, 0.1);
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: background 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mfo-term-card__icon svg {
  width: 28px;
  height: 28px;
  fill: #1665D8;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.mfo-term-card__label {
  display: block;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.mfo-term-card__value {
  font-size: 26px;
  font-weight: 700;
  color: #0A2A43;
  margin-bottom: 10px;
  line-height: 1.2;
}
.mfo-term-card__value--accent {
  background: linear-gradient(135deg, #1665D8 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mfo-term-card__value--success {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mfo-term-card__note {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.mfo-calculator-v2 {
  background: white;
  border-radius: 20px;
  padding: 40px;
  -webkit-box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
  margin-top: 40px;
}

.mfo-calculator-v2__header {
  text-align: center;
  margin-bottom: 32px;
}

.mfo-calculator-v2__title {
  font-size: 24px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 8px;
}

.mfo-calculator-v2__subtitle {
  font-size: 14px;
  color: #6B7280;
}

.mfo-calculator-v2__controls {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .mfo-calculator-v2__controls {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.mfo-calc-control__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 16px;
}
.mfo-calc-control__label {
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
}
.mfo-calc-control__value {
  font-size: 28px;
  font-weight: 800;
  color: #1665D8;
}
.mfo-calc-control__unit {
  font-size: 16px;
  font-weight: 600;
  color: #6B7280;
  margin-left: 4px;
}

.mfo-range-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#1665D8), to(#E5E7EB));
  background: linear-gradient(to right, #1665D8 var(--value-percent, 50%), #E5E7EB var(--value-percent, 50%));
  outline: none;
  cursor: pointer;
}
.mfo-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid #1665D8;
  -webkit-box-shadow: 0 2px 8px rgba(22, 101, 216, 0.3);
          box-shadow: 0 2px 8px rgba(22, 101, 216, 0.3);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.mfo-range-slider::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.4);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.4);
}
.mfo-range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid #1665D8;
  box-shadow: 0 2px 8px rgba(22, 101, 216, 0.3);
  cursor: pointer;
}

.mfo-calc-control__range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: #6B7280;
  margin-top: 12px;
}

.mfo-calculator-v2__result {
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.mfo-calculator-v2__result::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mfo-calc-result__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mfo-calc-result__value {
  font-size: 42px;
  font-weight: 800;
  -webkit-animation: mfo-count-up 0.4s ease-out;
          animation: mfo-count-up 0.4s ease-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.mfo-calc-result__value.updating {
  -webkit-animation: mfo-value-update 0.3s ease-out;
          animation: mfo-value-update 0.3s ease-out;
}
.mfo-calc-result__promo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  -webkit-animation: mfo-bounce-subtle 2s ease-in-out infinite;
          animation: mfo-bounce-subtle 2s ease-in-out infinite;
}
.mfo-calc-result__promo svg {
  width: 18px;
  height: 18px;
  fill: #FFD700;
}

@-webkit-keyframes mfo-value-update {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes mfo-value-update {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.mfo-conditions-v2 {
  padding: 60px 0;
  background: white;
}

.mfo-conditions-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
}

.mfo-section-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #EEF3F8;
  border-radius: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
}
.mfo-section-nav::-webkit-scrollbar {
  display: none;
}

.mfo-section-nav__link {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mfo-section-nav__link:hover {
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
}
.mfo-section-nav__link--active {
  background: white;
  color: #1665D8;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
}

.mfo-conditions-table {
  background: #EEF3F8;
  border-radius: 16px;
  overflow: hidden;
}

.mfo-conditions-table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 1fr;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid rgba(10, 42, 67, 0.06);
}
.mfo-conditions-table__row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .mfo-conditions-table__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.mfo-conditions-table__label {
  padding: 20px 24px;
  font-weight: 600;
  color: #6B7280;
  background: rgba(10, 42, 67, 0.02);
}
@media (max-width: 767px) {
  .mfo-conditions-table__label {
    padding: 16px 20px 8px;
    font-size: 13px;
  }
}

.mfo-conditions-table__value {
  padding: 20px 24px;
  color: #1C1C1C;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .mfo-conditions-table__value {
    padding: 8px 20px 16px;
  }
}

.mfo-alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 24px;
}
.mfo-alert--warning {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #F59E0B;
}
.mfo-alert--success {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10B981;
}
.mfo-alert--info {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3B82F6;
}
.mfo-alert svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mfo-alert__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mfo-alert__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1C1C1C;
}
.mfo-alert__text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.mfo-requirements-v2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .mfo-requirements-v2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .mfo-requirements-v2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.mfo-requirement-card {
  background: white;
  border: 1px solid rgba(10, 42, 67, 0.08);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mfo-requirement-card:hover {
  border-color: #1665D8;
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.1);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.mfo-requirement-card:hover .mfo-requirement-card__icon {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
.mfo-requirement-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1665D8 0%, #3B82F6 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mfo-requirement-card__icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.mfo-requirement-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0A2A43;
  margin-bottom: 8px;
}
.mfo-requirement-card__text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.mfo-process-v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
}
.mfo-process-v2::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 56px;
  width: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1665D8), to(rgba(22, 101, 216, 0.2)));
  background: linear-gradient(180deg, #1665D8 0%, rgba(22, 101, 216, 0.2) 100%);
  border-radius: 2px;
}
@media (max-width: 767px) {
  .mfo-process-v2::before {
    left: 23px;
  }
}

.mfo-process-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mfo-process-step:hover {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.mfo-process-step:hover .mfo-process-step__number {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.4);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.4);
}
.mfo-process-step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1665D8 0%, #3B82F6 100%);
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 800;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .mfo-process-step__number {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
.mfo-process-step__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 8px;
}
.mfo-process-step__title {
  font-size: 18px;
  font-weight: 700;
  color: #0A2A43;
  margin-bottom: 8px;
}
.mfo-process-step__text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}
.mfo-process-step__time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(22, 101, 216, 0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1665D8;
}
.mfo-process-step__time svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.mfo-process-step__time:empty {
  display: none;
}

.mfo-pros-cons-v2 {
  padding: 60px 0;
  background: #EEF3F8;
}

.mfo-pros-cons-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
}

.mfo-pros-cons-v2__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 767px) {
  .mfo-pros-cons-v2__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.mfo-pros-card,
.mfo-cons-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
}

.mfo-pros-card__header,
.mfo-cons-card__header {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.mfo-pros-card__header svg,
.mfo-cons-card__header svg {
  width: 28px;
  height: 28px;
}
.mfo-pros-card__header h3,
.mfo-cons-card__header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.mfo-pros-card__header {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}
.mfo-pros-card__header svg {
  fill: white;
}

.mfo-cons-card__header {
  background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}
.mfo-cons-card__header svg {
  fill: white;
}

.mfo-pros-card__list,
.mfo-cons-card__list {
  list-style: none;
  padding: 24px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.mfo-pros-item,
.mfo-cons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #1C1C1C;
  line-height: 1.5;
}
.mfo-pros-item svg,
.mfo-cons-item svg {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.mfo-pros-item svg {
  fill: #10B981;
}

.mfo-cons-item svg {
  fill: #EF4444;
}

.mfo-summary-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  -webkit-box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
  border-left: 4px solid #1665D8;
}
.mfo-summary-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 16px;
}
.mfo-summary-card__text {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

.mfo-reviews-v2 {
  padding: 60px 0;
  background: white;
}

.mfo-reviews-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
}

.mfo-reviews-v2__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.mfo-reviews-v2__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0;
}

.mfo-rating-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: #EEF3F8;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .mfo-rating-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

.mfo-rating-summary__score {
  font-size: 56px;
  font-weight: 800;
  color: #0A2A43;
  line-height: 1;
}

.mfo-rating-summary__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.mfo-rating-summary__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.mfo-rating-summary__stars svg {
  width: 24px;
  height: 24px;
  fill: #FFD700;
}

.mfo-rating-summary__count {
  font-size: 14px;
  color: #6B7280;
}

.mfo-reviews-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mfo-review-filter {
  padding: 10px 20px;
  border: 1px solid rgba(10, 42, 67, 0.1);
  border-radius: 20px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.mfo-review-filter svg {
  width: 14px;
  height: 14px;
  fill: #FFD700;
}
.mfo-review-filter:hover {
  border-color: #1665D8;
  color: #1665D8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.15);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.15);
}
.mfo-review-filter--active {
  background: #1665D8;
  border-color: #1665D8;
  color: white;
}
.mfo-review-filter--active svg {
  fill: white;
}

.mfo-reviews-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.mfo-review-card {
  background: #EEF3F8;
  border-radius: 16px;
  padding: 28px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.mfo-review-card[data-rating="5"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  border-radius: 16px 16px 0 0;
}
.mfo-review-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
}

.mfo-review-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.mfo-review-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.mfo-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1665D8 0%, #3B82F6 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.mfo-review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0A2A43;
}

.mfo-review-card__date {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
}

.mfo-review-card__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.mfo-review-card__rating svg {
  width: 18px;
  height: 18px;
  fill: #FFD700;
}
.mfo-review-card__rating svg.empty {
  fill: #E5E7EB;
}

.mfo-review-card__text {
  font-size: 15px;
  color: #1C1C1C;
  line-height: 1.7;
  margin: 0;
}

.mfo-review-card__verified {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #27AE60;
}
.mfo-review-card__verified svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mfo-reviews-load-more {
  text-align: center;
  margin-top: 32px;
}

.mfo-reviews-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.mfo-reviews-loading__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(22, 101, 216, 0.1);
  border-top-color: #1665D8;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.mfo-reviews-loading p {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
}

.mfo-reviews-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: #EEF3F8;
  border-radius: 16px;
}
.mfo-reviews-empty svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
  margin-bottom: 20px;
}
.mfo-reviews-empty__title {
  font-size: 18px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 8px;
}
.mfo-reviews-empty__text {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
}

.mfo-faq-v2 {
  padding: 60px 0;
  background: #EEF3F8;
  position: relative;
  overflow: hidden;
}
.mfo-faq-v2::before, .mfo-faq-v2::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mfo-faq-v2::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(22, 101, 216, 0.05) 0%, transparent 70%);
}
.mfo-faq-v2::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.mfo-faq-v2__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
}

.mfo-faq-v2__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #0A2A43;
  text-align: center;
  margin: 0 0 40px;
}

.mfo-faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.mfo-faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.04);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.04);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.mfo-faq-item:hover {
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.08);
}
.mfo-faq-item--open {
  -webkit-box-shadow: 0 4px 20px rgba(10, 42, 67, 0.1);
          box-shadow: 0 4px 20px rgba(10, 42, 67, 0.1);
}
.mfo-faq-item--open .mfo-faq-item__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mfo-faq-item--open .mfo-faq-item__question {
  color: #1665D8;
}

.mfo-faq-item__button {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.mfo-faq-item__question {
  font-size: 17px;
  font-weight: 600;
  color: #0A2A43;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin: 0;
}

.mfo-faq-item__icon {
  width: 24px;
  height: 24px;
  fill: #6B7280;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mfo-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.mfo-faq-item--open .mfo-faq-item__answer {
  max-height: 500px;
}

.mfo-faq-item__answer-content {
  padding: 0 24px 24px;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
}
.mfo-faq-item__answer-content p {
  margin: 0;
}

.mfo-faq-contact {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 24px rgba(10, 42, 67, 0.08);
}
.mfo-faq-contact__title {
  font-size: 20px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 12px;
}
.mfo-faq-contact__text {
  font-size: 15px;
  color: #6B7280;
  margin: 0 0 20px;
}

.mfo-seo-v2 {
  padding: 60px 0;
}

.mfo-seo-v2__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
}

.mfo-seo-content {
  color: #1C1C1C;
  font-size: 16px;
  line-height: 1.7;
}
.mfo-seo-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 0 0 24px;
  line-height: 1.3;
}
.mfo-seo-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 32px 0 16px;
  line-height: 1.4;
}
.mfo-seo-content p {
  margin: 0 0 16px;
}
.mfo-seo-content p:last-child {
  margin-bottom: 0;
}
.mfo-seo-content ul, .mfo-seo-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.mfo-seo-content ul li, .mfo-seo-content ol li {
  margin-bottom: 8px;
}
.mfo-seo-content ul li strong, .mfo-seo-content ol li strong {
  color: #1C1C1C;
}
.mfo-seo-content ul {
  list-style-type: disc;
}
.mfo-seo-content ol {
  list-style-type: decimal;
}
.mfo-seo-content a {
  color: #0A2A43;
  text-decoration: underline;
}
.mfo-seo-content a:hover {
  text-decoration: none;
}

.mfo-bottom-cta-v2 {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
  position: relative;
  overflow: hidden;
}
.mfo-bottom-cta-v2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mfo-bottom-cta-v2__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
  text-align: center;
  position: relative;
  z-index: 1;
}

.mfo-bottom-cta-v2__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
}
@media (max-width: 767px) {
  .mfo-bottom-cta-v2__title {
    font-size: 28px;
  }
}

.mfo-bottom-cta-v2__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  line-height: 1.6;
}

.mfo-bottom-cta-v2__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: white;
  color: #0A2A43;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mfo-bottom-cta-v2__button:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.mfo-bottom-cta-v2__button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mfo-bottom-cta-v2__button:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.mfo-mobile-cta-v2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 16px;
  -webkit-box-shadow: 0 -4px 24px rgba(10, 42, 67, 0.18);
          box-shadow: 0 -4px 24px rgba(10, 42, 67, 0.18);
  z-index: 1000;
  display: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 1023px) {
  .mfo-mobile-cta-v2 {
    display: block;
  }
}
.mfo-mobile-cta-v2.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mfo-mobile-cta-v2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.mfo-mobile-cta-v2__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.mfo-mobile-cta-v2__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #EEF3F8;
}
.mfo-mobile-cta-v2__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mfo-mobile-cta-v2__text {
  min-width: 0;
}

.mfo-mobile-cta-v2__name {
  font-size: 15px;
  font-weight: 700;
  color: #0A2A43;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mfo-mobile-cta-v2__rate {
  font-size: 12px;
  color: #6B7280;
}

.mfo-mobile-cta-v2__button {
  padding: 14px 24px;
  background: linear-gradient(135deg, #1665D8 0%, #3B82F6 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mfo-mobile-cta-v2__button:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.4);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.4);
}

.mfo-comparison-v2 {
  padding: 60px 0;
  background: white;
}

.mfo-comparison-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--mfo-container-padding);
}

.mfo-comparison-v2__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #0A2A43;
  text-align: center;
  margin: 0 0 40px;
}

.mfo-comparison-table {
  background: #EEF3F8;
  border-radius: 16px;
  overflow: hidden;
}

.mfo-comparison-table__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px (1fr)[3];
  grid-template-columns: 200px repeat(3, 1fr);
  background: #0A2A43;
  color: white;
}
@media (max-width: 1023px) {
  .mfo-comparison-table__header {
    display: none;
  }
}

.mfo-comparison-table__header-cell {
  padding: 20px;
  font-weight: 600;
  text-align: center;
}
.mfo-comparison-table__header-cell:first-child {
  text-align: left;
}

.mfo-comparison-table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px (1fr)[3];
  grid-template-columns: 200px repeat(3, 1fr);
  border-bottom: 1px solid rgba(10, 42, 67, 0.06);
}
.mfo-comparison-table__row:last-child {
  border-bottom: none;
}
@media (max-width: 1023px) {
  .mfo-comparison-table__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }
}

.mfo-comparison-table__label {
  padding: 20px;
  font-weight: 600;
  color: #6B7280;
  background: rgba(10, 42, 67, 0.02);
}
@media (max-width: 1023px) {
  .mfo-comparison-table__label {
    padding: 0;
    background: none;
    font-size: 14px;
  }
}

.mfo-comparison-table__value {
  padding: 20px;
  text-align: center;
  color: #1C1C1C;
}
.mfo-comparison-table__value--highlight {
  background: rgba(22, 101, 216, 0.05);
  font-weight: 600;
  color: #1665D8;
}
@media (max-width: 1023px) {
  .mfo-comparison-table__value {
    padding: 0;
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .mfo-hero-card__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .mfo-hero-card__badges {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mfo-rating-v2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .mfo-hero-card {
    padding: 24px;
  }
  .mfo-hero-card__logo {
    width: 80px;
    height: 80px;
  }
  .mfo-hero-card__title {
    font-size: 24px;
  }
  .mfo-cta-card-v2 {
    padding: 24px;
  }
  .mfo-calculator-v2 {
    padding: 24px;
  }
  .mfo-calc-control__value {
    font-size: 24px;
  }
  .mfo-calc-result__value {
    font-size: 32px;
  }
}
@media print {
  .mfo-cta-card-v2,
  .mfo-mobile-cta-v2,
  .mfo-bottom-cta-v2 {
    display: none !important;
  }
  .mfo-hero-v2::before {
    display: none;
  }
}
.terms-grid__icon {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.terms-grid__icon--accent {
  fill: #1665D8;
}
.terms-grid__icon--purple {
  fill: #8B5CF6;
}
.terms-grid__icon--green {
  fill: #10B981;
}
.terms-grid__icon--orange {
  fill: #F59E0B;
}
.terms-grid__icon--blue {
  fill: #3B82F6;
}
.terms-grid__icon--teal {
  fill: #14B8A6;
}

.terms-grid__row:hover .terms-grid__icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.pros-cons__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.04);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.04);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pros-cons__item:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-box-shadow: 0 4px 12px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 12px rgba(10, 42, 67, 0.08);
}
.pros-cons__item--pro .pros-cons__icon {
  fill: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  padding: 4px;
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pros-cons__item--con .pros-cons__icon {
  fill: #EF4444;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  padding: 4px;
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pros-cons__item span {
  color: #1C1C1C;
  line-height: 1.5;
}

.pros-cons__summary {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid rgba(22, 101, 216, 0.1);
  border-radius: 16px;
  padding: 28px;
  margin-top: 32px;
}
.pros-cons__summary-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 16px;
}
.pros-cons__summary-title::before {
  content: "📊";
  font-size: 24px;
}
.pros-cons__summary-text {
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.reviews__loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
}
.reviews__loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(22, 101, 216, 0.2);
  border-top-color: #1665D8;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
}
.reviews__loading p {
  margin-top: 16px;
  color: #6B7280;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.reviews__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 20px;
  text-align: center;
}
.reviews__empty-icon {
  fill: #CBD5E1;
  margin-bottom: 20px;
}
.reviews__empty-text {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 8px;
}
.reviews__empty-subtext {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.mfo-page-v2 .reviews__add {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  margin-top: 32px;
}
.mfo-page-v2 .reviews__add-title {
  font-size: 20px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 8px;
}
.mfo-page-v2 .reviews__add-text {
  color: #6B7280;
  margin: 0 0 20px;
}

.faq__contact {
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.faq__contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #0A2A43;
  margin: 0 0 8px;
}
.faq__contact-text {
  color: #6B7280;
  margin: 0 0 24px;
}
.faq__contact-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #1665D8;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__contact-btn svg {
  fill: currentColor;
}
.faq__contact-btn:hover {
  background: rgb(18.2285714286, 83.6857142857, 178.9714285714);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(22, 101, 216, 0.3);
          box-shadow: 0 8px 20px rgba(22, 101, 216, 0.3);
}

.bottom-cta--sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
  padding: 16px 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 -4px 20px rgba(10, 42, 67, 0.2);
          box-shadow: 0 -4px 20px rgba(10, 42, 67, 0.2);
}
.bottom-cta--sticky.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.bottom-cta--sticky .bottom-cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .bottom-cta--sticky .bottom-cta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.bottom-cta--sticky .bottom-cta__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bottom-cta--sticky .bottom-cta__title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 0 4px;
}
@media (max-width: 767px) {
  .bottom-cta--sticky .bottom-cta__title {
    font-size: 16px;
  }
}
.bottom-cta--sticky .bottom-cta__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.bottom-cta--sticky .bottom-cta__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: white;
  color: #0A2A43;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-cta--sticky .bottom-cta__button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.bottom-cta--sticky .bottom-cta__button svg {
  fill: currentColor;
}

body.sticky-cta-visible {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  body.sticky-cta-visible {
    padding-bottom: 120px;
  }
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: white;
  padding: 12px 16px;
  -webkit-box-shadow: 0 -4px 20px rgba(10, 42, 67, 0.12);
          box-shadow: 0 -4px 20px rgba(10, 42, 67, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mobile-sticky-cta.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mobile-sticky-cta__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.mobile-sticky-cta__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-sticky-cta__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-sticky-cta__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.mobile-sticky-cta__title {
  font-weight: 700;
  color: #0A2A43;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.mobile-sticky-cta__rate {
  font-size: 12px;
  color: #6B7280;
}

@media (min-width: 1024px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .bottom-cta--sticky {
    display: none !important;
  }
}
.trust-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f9fa));
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  padding: 24px 0;
  border-bottom: 1px solid #E5E7EB;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .trust-badges {
    gap: 12px;
  }
}

.trust-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border: 1px solid rgba(22, 101, 216, 0.15);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1C1C1C;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.trust-badge svg {
  width: 22px;
  height: 22px;
  color: #1665D8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.trust-badge:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.15);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.15);
  border-color: #1665D8;
}
.trust-badge:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 767px) {
  .trust-badge {
    font-size: 13px;
    padding: 10px 16px;
    gap: 8px;
  }
  .trust-badge svg {
    width: 18px;
    height: 18px;
  }
}

body.is-loading .trust-badge__text {
  color: transparent;
  background: #F3F4F6;
  border-radius: 10px;
  display: inline-block;
  min-width: 160px;
  min-height: 16px;
  position: relative;
  overflow: hidden;
}

body.is-loading .trust-badge__text::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.65)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  -webkit-animation: mfo-skeleton 1.2s ease-in-out infinite;
          animation: mfo-skeleton 1.2s ease-in-out infinite;
}

.live-activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.08), rgba(22, 101, 216, 0.12));
  border: 1px solid rgba(22, 101, 216, 0.2);
  border-radius: 16px;
  font-size: 15px;
  color: #1C1C1C;
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.1);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.1);
}
.live-activity__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
          box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}
.live-activity__pulse::before, .live-activity__pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #22c55e;
  border-radius: 50%;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.live-activity__pulse::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.live-activity__text strong {
  color: #1665D8;
  font-weight: 600;
}
@media (max-width: 767px) {
  .live-activity {
    padding: 12px 16px;
    font-size: 14px;
    gap: 10px;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.quick-terms {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f9fa));
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}
.quick-terms__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 400px;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1023px) {
  .quick-terms__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.quick-terms__table {
  background: white;
  padding: 32px;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.quick-terms__title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .quick-terms__title {
    font-size: 24px;
  }
}
.quick-terms__cta {
  position: sticky;
  top: 100px;
}
@media (max-width: 1023px) {
  .quick-terms__cta {
    position: static;
  }
}

.terms-grid {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin: 0;
}
.terms-grid__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#f8f9fa), to(#ffffff));
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  border-radius: 12px;
  border-left: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.terms-grid__row:hover {
  border-left-color: #1665D8;
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 101, 216, 0.05)), to(#ffffff));
  background: linear-gradient(to right, rgba(22, 101, 216, 0.05), #ffffff);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 767px) {
  .terms-grid__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.terms-grid__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  color: #6B7280;
  font-size: 15px;
}
.terms-grid__icon {
  width: 20px;
  height: 20px;
  color: #1665D8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.terms-grid__value {
  margin: 0;
  font-weight: 600;
  color: #1C1C1C;
  font-size: 16px;
}
.terms-grid__value--highlight {
  color: #1665D8;
  font-size: 18px;
}

.mfo-calculator {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #E5E7EB;
}
.mfo-calculator__title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 600;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .mfo-calculator__title {
    font-size: 20px;
  }
}

.calculator-widget__control {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}
.calculator-widget__label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #1C1C1C;
}
.calculator-widget__value {
  color: #1665D8;
  font-size: 20px;
  font-weight: 700;
}
.calculator-widget__slider {
  width: 100%;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#1665D8), to(rgba(22, 101, 216, 0.3)));
  background: linear-gradient(to right, #1665D8, rgba(22, 101, 216, 0.3));
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 16px 0;
}
.calculator-widget__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  background: white;
  border: 3px solid #1665D8;
  border-radius: 50%;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.calculator-widget__slider::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
}
.calculator-widget__slider::-webkit-slider-thumb:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.calculator-widget__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: white;
  border: 3px solid #1665D8;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.calculator-widget__slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
}
.calculator-widget__slider::-moz-range-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}
.calculator-widget__range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 13px;
  color: #6B7280;
  margin-top: 8px;
}
.calculator-widget__result {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.85));
  border-radius: 16px;
  text-align: center;
  color: white;
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.3);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.3);
}
.calculator-widget__total {
  margin: 0 0 12px;
  font-size: 16px;
}
.calculator-widget__total strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .calculator-widget__total strong {
    font-size: 32px;
  }
}
.calculator-widget__promo {
  margin: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.cta-card {
  padding: 32px;
  background: linear-gradient(135deg, white, #f8f9fa);
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 101, 216, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cta-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 40px rgba(22, 101, 216, 0.15);
          box-shadow: 0 12px 40px rgba(22, 101, 216, 0.15);
}
@media (max-width: 767px) {
  .cta-card {
    padding: 24px;
  }
}
.cta-card__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(39, 174, 96, 0.2);
}
.cta-card__promo-icon {
  width: 28px;
  height: 28px;
  color: #27AE60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cta-card__promo-text {
  font-size: 18px;
  font-weight: 700;
  color: #27AE60;
}
@media (max-width: 767px) {
  .cta-card__promo-text {
    font-size: 16px;
  }
}
.cta-card__button {
  width: 100%;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.9));
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.3);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card__button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.4);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.4);
}
.cta-card__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 767px) {
  .cta-card__button {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.cta-card__note {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  color: #6B7280;
}
.cta-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta-card__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 15px;
  color: #1C1C1C;
  border-bottom: 1px solid #E5E7EB;
}
.cta-card__feature:last-child {
  border-bottom: none;
}
.cta-card__feature-icon {
  width: 18px;
  height: 18px;
  color: #27AE60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.comparison {
  background: #f8f9fa;
  padding: 60px 0;
}
.comparison .section-title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .comparison .section-title {
    font-size: 28px;
  }
}
.comparison .section-subtitle {
  text-align: center;
  color: #6B7280;
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .comparison .section-subtitle {
    font-size: 16px;
  }
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.comparison-table thead {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f9fa), to(#ffffff));
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}
.comparison-table thead tr {
  border-bottom: 2px solid #E5E7EB;
}
.comparison-table thead th {
  padding: 24px 16px;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
}
.comparison-table thead th:first-child {
  text-align: left;
  width: 25%;
  min-width: 180px;
}
.comparison-table thead th img {
  max-width: 120px;
  height: auto;
  margin-bottom: 8px;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.comparison-table tbody tr:hover {
  background: rgba(22, 101, 216, 0.02);
}
.comparison-table tbody td {
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1C1C1C;
}
.comparison-table__highlight {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 101, 216, 0.04)), to(rgba(22, 101, 216, 0.02))) !important;
  background: linear-gradient(to bottom, rgba(22, 101, 216, 0.04), rgba(22, 101, 216, 0.02)) !important;
  position: relative;
  font-weight: 600;
  color: #1C1C1C;
}
.comparison-table__mfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.comparison-table__mfo .badge {
  font-size: 11px;
  padding: 4px 12px;
}
.comparison-table__check {
  color: #27AE60;
  margin-right: 4px;
}
.comparison-table__cross {
  color: #E74C3C;
}
.comparison-table__cta-row {
  background: #f8f9fa !important;
}
.comparison-table__cta-row td {
  padding: 24px 16px !important;
}

.recent-activity {
  padding: 40px 0;
}
.recent-activity__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .recent-activity__title {
    font-size: 20px;
  }
}
.recent-activity__icon {
  width: 24px;
  height: 24px;
  color: #1665D8;
}
.recent-activity__list {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-activity__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recent-activity__item:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.1);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.1);
  border-color: #1665D8;
}
.recent-activity__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.8));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(22, 101, 216, 0.3);
          box-shadow: 0 2px 8px rgba(22, 101, 216, 0.3);
}
.recent-activity__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  color: #1C1C1C;
}
.recent-activity__content strong {
  font-weight: 600;
}
.recent-activity__content strong:last-of-type {
  color: #27AE60;
}
.recent-activity__time {
  font-size: 13px;
  color: #6B7280;
  white-space: nowrap;
  font-weight: 500;
}
@media (max-width: 767px) {
  .recent-activity__time {
    font-size: 12px;
  }
}

.detailed-conditions {
  background: white;
  padding: 60px 0;
}
.detailed-conditions .section-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .detailed-conditions .section-title {
    font-size: 28px;
  }
}

.conditions-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 0 0 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid #E5E7EB;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.conditions-nav::-webkit-scrollbar {
  height: 4px;
}
.conditions-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.conditions-nav::-webkit-scrollbar-thumb {
  background: #1665D8;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .conditions-nav {
    gap: 8px;
  }
}
.conditions-nav__link {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #6B7280;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 2px solid transparent;
  background: #f8f9fa;
}
.conditions-nav__link:hover {
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
  border-color: rgba(22, 101, 216, 0.3);
}
.conditions-nav__link.active, .conditions-nav__link:active {
  background: #1665D8;
  color: white;
  border-color: #1665D8;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
}
@media (max-width: 767px) {
  .conditions-nav__link {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.conditions-section {
  margin-bottom: 48px;
}
.conditions-section:last-child {
  margin-bottom: 0;
}
.conditions-section h3 {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .conditions-section h3 {
    font-size: 22px;
  }
}

.conditions-table-detailed .table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.conditions-table-detailed .table tbody tr {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.conditions-table-detailed .table tbody tr:last-child {
  border-bottom: none;
}
.conditions-table-detailed .table tbody tr:hover {
  background: rgba(22, 101, 216, 0.02);
}
.conditions-table-detailed .table tbody th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  color: #1C1C1C;
  background: #f8f9fa;
  width: 35%;
}
@media (max-width: 767px) {
  .conditions-table-detailed .table tbody th {
    width: 40%;
    padding: 14px 16px;
  }
}
.conditions-table-detailed .table tbody td {
  padding: 16px 20px;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .conditions-table-detailed .table tbody td {
    padding: 14px 16px;
  }
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.exit-popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out;
}
.exit-popup__content {
  position: relative;
  max-width: 540px;
  width: calc(100% - 32px);
  padding: 48px 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#f8f9fa));
  background: linear-gradient(to bottom, white, #f8f9fa);
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  -webkit-animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
          animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 767px) {
  .exit-popup__content {
    padding: 40px 24px;
    width: calc(100% - 48px);
  }
}
.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(107, 114, 128, 0.1);
  border-radius: 50%;
  font-size: 20px;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.exit-popup__close:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.exit-popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1), rgba(22, 101, 216, 0.2));
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.exit-popup__icon svg {
  width: 32px;
  height: 32px;
  color: #1665D8;
}
.exit-popup h3 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .exit-popup h3 {
    font-size: 26px;
  }
}
.exit-popup__subtitle {
  margin: 0 0 24px;
  font-size: 18px;
  color: #27AE60;
  font-weight: 600;
}
.exit-popup p {
  margin: 0 0 32px;
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}
.exit-popup__benefits {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 12px;
  text-align: left;
}
.exit-popup__benefits li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.exit-popup__benefits li svg {
  width: 20px;
  height: 20px;
  color: #27AE60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.exit-popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.exit-popup__form input {
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.exit-popup__form input:focus {
  outline: none;
  border-color: #1665D8;
  -webkit-box-shadow: 0 0 0 3px rgba(22, 101, 216, 0.1);
          box-shadow: 0 0 0 3px rgba(22, 101, 216, 0.1);
}
.exit-popup__form input::-webkit-input-placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.exit-popup__form input::-moz-placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.exit-popup__form input:-ms-input-placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.exit-popup__form input::-ms-input-placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.exit-popup__form input::placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.exit-popup__form .btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.3);
}
.exit-popup__form .btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(22, 101, 216, 0.4);
          box-shadow: 0 6px 20px rgba(22, 101, 216, 0.4);
}
.exit-popup__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: #6B7280;
}
.exit-popup__note a {
  color: #1665D8;
  text-decoration: none;
}
.exit-popup__note a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes popupSlideIn {
  from {
    -webkit-transform: translateY(-40px) scale(0.95);
            transform: translateY(-40px) scale(0.95);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes popupSlideIn {
  from {
    -webkit-transform: translateY(-40px) scale(0.95);
            transform: translateY(-40px) scale(0.95);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0.98)));
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.mobile-sticky-cta.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mobile-sticky-cta__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.mobile-sticky-cta__info .mobile-sticky-cta__logo {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-sticky-cta__info .mobile-sticky-cta__logo-img {
  height: 36px;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.mobile-sticky-cta__info .mobile-sticky-cta__logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px dashed rgba(229, 231, 235, 0.8);
  background: #EEF3F8;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6B7280;
}
.mobile-sticky-cta__text {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mobile-sticky-cta__title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #1C1C1C;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-sticky-cta__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #27AE60;
  font-weight: 600;
}
.mobile-sticky-cta__rate svg {
  width: 14px;
  height: 14px;
}
.mobile-sticky-cta .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
}
.mobile-sticky-cta .btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.requirements-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .requirements-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.requirement-card {
  padding: 28px 24px;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.requirement-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.12);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.12);
  border-color: #1665D8;
}
.requirement-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1), rgba(22, 101, 216, 0.15));
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.requirement-card__icon svg {
  width: 28px;
  height: 28px;
  color: #1665D8;
}
.requirement-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
}
.requirement-card__text {
  margin: 0;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.5;
}

.documents-list {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.document-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 24px;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.document-item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 767px) {
  .document-item {
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
}
.document-item__number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.8));
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.document-item__content {
  min-width: 0;
}
.document-item__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1C;
}
.document-item__text {
  margin: 0;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .document-item__status {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}

.process-steps {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1665D8), to(rgba(22, 101, 216, 0.3)));
  background: linear-gradient(to bottom, #1665D8, rgba(22, 101, 216, 0.3));
}
@media (max-width: 767px) {
  .process-steps::before {
    display: none;
  }
}

.process-step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
@media (max-width: 767px) {
  .process-step {
    gap: 16px;
  }
}
.process-step__number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.85));
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
  position: relative;
  z-index: 1;
}
.process-step__content {
  padding: 8px 24px 24px 0;
  background: white;
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .process-step__content {
    padding: 20px;
  }
}
.process-step__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .process-step__title {
    font-size: 18px;
  }
}
.process-step__text {
  margin: 0 0 12px;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}
.process-step__time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.process-step__time::before {
  content: "⏱";
  font-size: 16px;
}

.info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 24px;
}
.info-block__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.info-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.info-block__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.info-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.info-block--warning {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
}
.info-block--warning .info-block__icon {
  color: #f59e0b;
}
.info-block--warning .info-block__title {
  color: #f59e0b;
}
.info-block--success {
  background: rgba(39, 174, 96, 0.1);
  border-left: 4px solid #27AE60;
}
.info-block--success .info-block__icon {
  color: #27AE60;
}
.info-block--success .info-block__title {
  color: #27AE60;
}
.info-block--info {
  background: rgba(10, 42, 67, 0.1);
  border-left: 4px solid #0A2A43;
}
.info-block--info .info-block__icon {
  color: #0A2A43;
}
.info-block--info .info-block__title {
  color: #0A2A43;
}

.section-padding {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .section-padding {
    padding: 40px 0;
  }
}

.section-bg-light {
  background: #f8f9fa;
}

.section-title {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

.section-subtitle {
  color: #6B7280;
  font-size: 18px;
}
@media (max-width: 767px) {
  .section-subtitle {
    font-size: 16px;
  }
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.badge--success {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  border: 1px solid rgba(39, 174, 96, 0.2);
}
.badge--primary {
  background: rgba(10, 42, 67, 0.1);
  color: #0A2A43;
  border: 1px solid rgba(10, 42, 67, 0.2);
}
.badge--accent {
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
  border: 1px solid rgba(22, 101, 216, 0.2);
}

.faq__all-link {
  text-align: center;
  padding: 24px 0;
}
.faq__all-link .btn--link {
  color: #1665D8;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.faq__all-link .btn--link:hover {
  color: rgba(22, 101, 216, 0.8);
}

.faq__contact {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.05) 0%, rgba(22, 101, 216, 0.02) 100%);
  border-radius: 16px;
  margin-top: 48px;
}
@media (max-width: 1023px) {
  .faq__contact {
    padding: 40px 24px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .faq__contact {
    padding: 32px 20px;
    margin-top: 32px;
  }
}

.faq__contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .faq__contact-title {
    font-size: 24px;
  }
}

.faq__contact-text {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .faq__contact-text {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.faq__contact-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faq__contact-methods .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.faq__contact-methods .btn svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .faq__contact-methods {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .faq__contact-methods .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@-webkit-keyframes assistant-pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@keyframes assistant-pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@-webkit-keyframes assistant-pulse-ring {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes assistant-pulse-ring {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@-webkit-keyframes assistant-slide-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
            transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes assistant-slide-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
            transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes assistant-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes assistant-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes assistant-typing-dot {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    -webkit-transform: translateY(-8px) scale(1.2);
            transform: translateY(-8px) scale(1.2);
    opacity: 1;
  }
}
@keyframes assistant-typing-dot {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    -webkit-transform: translateY(-8px) scale(1.2);
            transform: translateY(-8px) scale(1.2);
    opacity: 1;
  }
}
@-webkit-keyframes assistant-status-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes assistant-status-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes assistant-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes assistant-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@-webkit-keyframes assistant-bounce-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes assistant-bounce-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.assistant-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 100px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.assistant-widget__launcher {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.assistant-widget__launcher:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.assistant-widget__launcher:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.assistant-widget__launcher-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  -webkit-box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
          box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
  z-index: 2;
  -webkit-animation: assistant-bounce-in 0.4s ease-out 0.5s both;
          animation: assistant-bounce-in 0.4s ease-out 0.5s both;
}
.assistant-widget__launcher-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 20px rgba(22, 101, 216, 0.35), 0 0 0 4px rgba(22, 101, 216, 0.1);
          box-shadow: 0 4px 20px rgba(22, 101, 216, 0.35), 0 0 0 4px rgba(22, 101, 216, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.assistant-widget__launcher-icon svg {
  width: 28px;
  height: 28px;
  -webkit-animation: assistant-pulse 2s ease-in-out infinite;
          animation: assistant-pulse 2s ease-in-out infinite;
}
.assistant-widget__launcher-pulse {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(22, 101, 216, 0.3);
  -webkit-animation: assistant-pulse-ring 2s ease-out infinite;
          animation: assistant-pulse-ring 2s ease-out infinite;
  z-index: 0;
}
.assistant-widget__launcher:hover .assistant-widget__launcher-icon {
  -webkit-box-shadow: 0 8px 32px rgba(22, 101, 216, 0.45), 0 0 0 6px rgba(22, 101, 216, 0.15);
          box-shadow: 0 8px 32px rgba(22, 101, 216, 0.45), 0 0 0 6px rgba(22, 101, 216, 0.15);
}
.assistant-widget__launcher:hover .assistant-widget__launcher-pulse {
  -webkit-animation: none;
          animation: none;
  opacity: 0;
}
.assistant-widget__panel {
  position: absolute;
  right: 0;
  bottom: 84px;
  width: 400px;
  max-width: calc(100vw - 1.5rem);
  height: 580px;
  max-height: calc(100vh - 180px);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  -webkit-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.assistant-widget--open .assistant-widget__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: assistant-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
          animation: assistant-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.assistant-widget--expanded .assistant-widget__panel {
  width: 520px;
  height: calc(100vh - 200px);
  max-height: 720px;
}
.assistant-widget--open .assistant-widget__launcher-icon {
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
}
.assistant-widget--open .assistant-widget__launcher-pulse {
  display: none;
}
.assistant-widget__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.assistant-widget__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.assistant-widget__avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
.assistant-widget__avatar svg {
  width: 24px;
  height: 24px;
}
.assistant-widget__avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-animation: assistant-pulse 3s ease-in-out infinite;
          animation: assistant-pulse 3s ease-in-out infinite;
}
.assistant-widget__header-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  z-index: 1;
}
.assistant-widget__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 2px;
  letter-spacing: -0.3px;
}
.assistant-widget__subtitle {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.assistant-widget__status {
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  opacity: 0.9;
}
.assistant-widget__status-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
          box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.assistant-widget__status--typing .assistant-widget__status-dot {
  -webkit-animation: assistant-status-pulse 1s ease-in-out infinite;
          animation: assistant-status-pulse 1s ease-in-out infinite;
}
.assistant-widget__status--typing .assistant-widget__status-text {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #fff), color-stop(50%, rgba(255, 255, 255, 0.5)), color-stop(70%, #fff));
  background: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0.5) 50%, #fff 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: assistant-shimmer 1.5s linear infinite;
          animation: assistant-shimmer 1.5s linear infinite;
}
.assistant-widget__header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  z-index: 1;
}
.assistant-widget__expand, .assistant-widget__clear {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.assistant-widget__expand svg, .assistant-widget__clear svg {
  width: 16px;
  height: 16px;
}
.assistant-widget__expand:hover, .assistant-widget__clear:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.assistant-widget__close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.assistant-widget__close:hover {
  background: rgba(239, 68, 68, 0.8);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.assistant-widget__welcome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px 24px;
  text-align: center;
  color: #6B7280;
}
.assistant-widget__welcome-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1) 0%, rgba(22, 101, 216, 0.05) 100%);
  color: #1665D8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.assistant-widget__welcome-icon svg {
  width: 28px;
  height: 28px;
}
.assistant-widget__welcome-title {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
}
.assistant-widget__suggestions {
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.assistant-widget__suggestions-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6B7280;
  margin-bottom: 10px;
}
.assistant-widget__quick-replies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.assistant-widget__quick-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1665D8;
  background: rgba(22, 101, 216, 0.06);
  border: 1px solid rgba(22, 101, 216, 0.15);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.assistant-widget__quick-btn:hover {
  background: #1665D8;
  color: #fff;
  border-color: #1665D8;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.25);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.25);
}
.assistant-widget__quick-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.assistant-widget__messages {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#EEF3F8), to(#fff));
  background: linear-gradient(to bottom, #EEF3F8 0%, #fff 100%);
  scroll-behavior: smooth;
}
.assistant-widget__messages::-webkit-scrollbar {
  width: 5px;
}
.assistant-widget__messages::-webkit-scrollbar-track {
  background: transparent;
}
.assistant-widget__messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
.assistant-widget__messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.assistant-widget__msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  margin-bottom: 16px;
  -webkit-animation: assistant-fade-in 0.35s ease;
          animation: assistant-fade-in 0.35s ease;
}
.assistant-widget__msg--user {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.assistant-widget__msg--user .assistant-widget__bubble {
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  border-radius: 20px 20px 4px 20px;
  border: none;
  -webkit-box-shadow: 0 2px 12px rgba(22, 101, 216, 0.2);
          box-shadow: 0 2px 12px rgba(22, 101, 216, 0.2);
  margin-left: auto;
}
.assistant-widget__msg--assistant .assistant-widget__bubble {
  background: #fff;
  color: #1C1C1C;
  border-radius: 20px 20px 20px 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}
.assistant-widget__msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.assistant-widget__msg-avatar svg {
  width: 16px;
  height: 16px;
}
.assistant-widget__msg-avatar--bot {
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(22, 101, 216, 0.2);
          box-shadow: 0 2px 8px rgba(22, 101, 216, 0.2);
}
.assistant-widget__msg-avatar--user {
  background: #F9FAFB;
  color: #6B7280;
}
.assistant-widget__msg:hover .assistant-widget__msg-avatar {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.assistant-widget__bubble {
  max-width: 85%;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}
.assistant-widget__bubble a {
  color: #1665D8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.assistant-widget__bubble a:hover {
  text-decoration: none;
}
.assistant-widget__bubble strong, .assistant-widget__bubble b {
  font-weight: 600;
}
.assistant-widget__bubble ul, .assistant-widget__bubble ol {
  margin: 8px 0;
  padding-left: 20px;
}
.assistant-widget__bubble li {
  margin: 4px 0;
}
.assistant-widget__bubble code {
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "SF Mono", Monaco, monospace;
  font-size: 13px;
}
.assistant-widget__msg-content {
  min-width: 0;
}
.assistant-widget__typing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 10px 6px;
}
.assistant-widget__typing span {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  border-radius: 50%;
  -webkit-animation: assistant-typing-dot 1.4s ease-in-out infinite;
          animation: assistant-typing-dot 1.4s ease-in-out infinite;
}
.assistant-widget__typing span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.assistant-widget__typing span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.assistant-widget__typing span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.assistant-widget__actions {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.assistant-widget__feedback {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.assistant-widget__feedback svg {
  width: 14px;
  height: 14px;
}
.assistant-widget__feedback:hover {
  background: rgba(22, 101, 216, 0.08);
  color: #1665D8;
  border-color: rgba(22, 101, 216, 0.2);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.assistant-widget__feedback:disabled {
  opacity: 0.5;
  cursor: default;
  -webkit-transform: none;
          transform: none;
}
.assistant-widget__feedback--active {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  border-color: rgba(39, 174, 96, 0.25);
}
.assistant-widget__feedback--active svg {
  fill: currentColor;
}
.assistant-widget__mfo-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.assistant-widget__mfo-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.assistant-widget__mfo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.assistant-widget__mfo-card:hover {
  background: #fff;
  border-color: rgba(22, 101, 216, 0.2);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(22, 101, 216, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(22, 101, 216, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.assistant-widget__mfo-card:hover::before {
  left: 100%;
}
.assistant-widget__mfo-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #1665D8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.assistant-widget__mfo-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}
.assistant-widget__mfo-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.assistant-widget__mfo-name {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 4px;
  line-height: 1.3;
}
.assistant-widget__mfo-terms {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
}
.assistant-widget__mfo-terms strong {
  color: #27AE60;
  font-weight: 600;
}
.assistant-widget__mfo-cta {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 2px 8px rgba(22, 101, 216, 0.2);
          box-shadow: 0 2px 8px rgba(22, 101, 216, 0.2);
}
.assistant-widget__mfo-cta:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
}
.assistant-widget__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.assistant-widget__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: #1C1C1C;
  background: #EEF3F8;
  border: 2px solid transparent;
  border-radius: 24px;
  outline: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.assistant-widget__input::-webkit-input-placeholder {
  color: #6B7280;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.assistant-widget__input::-moz-placeholder {
  color: #6B7280;
  -moz-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.assistant-widget__input:-ms-input-placeholder {
  color: #6B7280;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.assistant-widget__input::-ms-input-placeholder {
  color: #6B7280;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.assistant-widget__input::placeholder {
  color: #6B7280;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.assistant-widget__input:hover {
  background: rgba(248, 250, 252, 0.8);
}
.assistant-widget__input:focus {
  background: #fff;
  border-color: #1665D8;
  -webkit-box-shadow: 0 0 0 4px rgba(22, 101, 216, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 0 4px rgba(22, 101, 216, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.assistant-widget__input:focus::-webkit-input-placeholder {
  color: transparent;
}
.assistant-widget__input:focus::-moz-placeholder {
  color: transparent;
}
.assistant-widget__input:focus:-ms-input-placeholder {
  color: transparent;
}
.assistant-widget__input:focus::-ms-input-placeholder {
  color: transparent;
}
.assistant-widget__input:focus::placeholder {
  color: transparent;
}
.assistant-widget__send {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.25);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.25);
  position: relative;
  overflow: hidden;
}
.assistant-widget__send svg {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.assistant-widget__send::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.3s ease, height 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease;
}
.assistant-widget__send:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-box-shadow: 0 6px 20px rgba(22, 101, 216, 0.35);
          box-shadow: 0 6px 20px rgba(22, 101, 216, 0.35);
}
.assistant-widget__send:hover svg {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.assistant-widget__send:hover::before {
  width: 100%;
  height: 100%;
}
.assistant-widget__send:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.assistant-widget__send:disabled {
  opacity: 0.4;
  cursor: default;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.assistant-widget__footer {
  padding: 12px 16px;
  background: #EEF3F8;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}
.assistant-widget__disclaimer {
  font-size: 11px;
  line-height: 1.5;
  color: #6B7280;
  margin-bottom: 6px;
}
.assistant-widget__disclaimer a {
  color: #1665D8;
  text-decoration: none;
}
.assistant-widget__disclaimer a:hover {
  text-decoration: underline;
}
.assistant-widget__powered {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.assistant-widget__powered svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .assistant-widget {
    right: 1rem;
    bottom: 90px;
  }
  .assistant-widget__launcher-icon {
    width: 54px;
    height: 54px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .assistant-widget__launcher-icon svg {
    width: 24px;
    height: 24px;
  }
  .assistant-widget__launcher-pulse {
    width: 54px;
    height: 54px;
  }
  .assistant-widget__launcher-badge {
    top: -4px;
    right: -4px;
    padding: 2px 6px;
    font-size: 9px;
    font-size: 10px;
  }
  .assistant-widget__expand {
    display: none;
  }
  .assistant-widget__panel {
    width: calc(100vw - 2rem);
    height: calc(100vh - 140px);
    max-height: 580px;
    bottom: 74px;
    border-radius: 20px;
  }
  .assistant-widget--expanded .assistant-widget__panel {
    width: calc(100vw - 2rem);
    height: calc(100vh - 140px);
  }
  .assistant-widget__header {
    padding: 14px 16px;
  }
  .assistant-widget__header-title {
    font-size: 15px;
  }
  .assistant-widget__header-subtitle {
    font-size: 11px;
  }
  .assistant-widget__suggestions {
    padding: 12px 14px 14px;
  }
  .assistant-widget__suggestion-label {
    font-size: 10px;
  }
  .assistant-widget__quick-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .assistant-widget__messages {
    padding: 14px;
  }
  .assistant-widget__msg-avatar {
    width: 28px;
    height: 28px;
  }
  .assistant-widget__msg-avatar svg {
    width: 14px;
    height: 14px;
  }
  .assistant-widget__bubble {
    max-width: 88%;
    padding: 12px 14px;
    font-size: 13px;
  }
  .assistant-widget__form {
    padding: 12px 14px;
    gap: 10px;
  }
  .assistant-widget__input {
    padding: 12px 16px;
    font-size: 14px;
  }
  .assistant-widget__send {
    width: 44px;
    height: 44px;
  }
  .assistant-widget__footer {
    padding: 10px 14px;
  }
  .assistant-widget__mfo-card {
    padding: 12px;
    gap: 10px;
  }
  .assistant-widget__mfo-logo {
    width: 38px;
    height: 38px;
  }
  .assistant-widget__mfo-cta {
    padding: 6px 10px;
    font-size: 11px;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .assistant-widget__panel {
    height: calc(100vh - 20px);
    max-height: none;
    bottom: 10px;
  }
  .assistant-widget__welcome {
    padding: 12px 16px;
  }
  .assistant-widget__header {
    min-height: 50px;
  }
}
@media (max-height: 600px) {
  .assistant-widget__panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  .assistant-widget__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mfo-comparison {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1023px) {
  .mfo-comparison {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .mfo-comparison {
    border-radius: 12px;
  }
}

.mfo-comparison__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px (1fr)[4];
  grid-template-columns: 250px repeat(4, 1fr);
  gap: 16px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.05) 0%, rgba(22, 101, 216, 0.01) 100%);
  border-bottom: 2px solid #E5E7EB;
}
@media (max-width: 1023px) {
  .mfo-comparison__header {
    -ms-grid-columns: 200px (1fr)[4];
    grid-template-columns: 200px repeat(4, 1fr);
    padding: 24px;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .mfo-comparison__header {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
}

.mfo-comparison__param-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #1C1C1C;
  padding: 12px 0;
}
@media (max-width: 767px) {
  .mfo-comparison__param-col {
    display: none;
  }
}

.mfo-comparison__mfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #E5E7EB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mfo-comparison__mfo--featured {
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.08) 0%, rgba(22, 101, 216, 0.02) 100%);
  border-color: #1665D8;
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.15);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.15);
  position: relative;
}
.mfo-comparison__mfo--featured::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.6));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
@media (max-width: 767px) {
  .mfo-comparison__mfo {
    padding: 20px;
    border-width: 3px;
  }
}

.mfo-comparison__logo {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mfo-comparison__logo img {
  max-width: 120px;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .mfo-comparison__logo {
    height: 60px;
  }
  .mfo-comparison__logo img {
    max-width: 140px;
    max-height: 50px;
  }
}

.mfo-comparison__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #1665D8, rgba(22, 101, 216, 0.8));
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
}
.mfo-comparison__badge svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  .mfo-comparison__badge {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.mfo-comparison__rating .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.mfo-comparison__rating .rating__value {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
}

@media (max-width: 767px) {
  .mfo-comparison__body {
    padding: 0;
  }
}

.mfo-comparison__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px (1fr)[4];
  grid-template-columns: 250px repeat(4, 1fr);
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid #E5E7EB;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.mfo-comparison__row:hover {
  background: rgba(22, 101, 216, 0.02);
}
@media (max-width: 1023px) {
  .mfo-comparison__row {
    -ms-grid-columns: 200px (1fr)[4];
    grid-template-columns: 200px repeat(4, 1fr);
    padding: 20px 24px;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .mfo-comparison__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    margin: 12px;
    border: 2px solid #E5E7EB;
  }
  .mfo-comparison__row:hover {
    background: #ffffff;
  }
}

.mfo-comparison__param {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .mfo-comparison__param {
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
    margin-bottom: 12px;
  }
}

.mfo-comparison__param-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1) 0%, rgba(22, 101, 216, 0.05) 100%);
  border-radius: 12px;
  color: #1665D8;
}
@media (max-width: 767px) {
  .mfo-comparison__param-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }
}

.mfo-comparison__param-title {
  font-weight: 600;
  font-size: 15px;
  color: #1C1C1C;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .mfo-comparison__param-title {
    font-size: 16px;
  }
}

.mfo-comparison__param-desc {
  font-size: 13px;
  color: #6B7280;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .mfo-comparison__param-desc {
    font-size: 14px;
  }
}

.mfo-comparison__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 15px;
  color: #3c3c3c;
  text-align: center;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mfo-comparison__value--featured {
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.08) 0%, rgba(22, 101, 216, 0.02) 100%);
  border: 2px solid rgba(22, 101, 216, 0.2);
  font-weight: 600;
  color: #1665D8;
}
.mfo-comparison__value--no {
  opacity: 0.4;
}
@media (max-width: 767px) {
  .mfo-comparison__value {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 16px;
    background: rgba(22, 101, 216, 0.03);
    border: 1px solid #E5E7EB;
    font-size: 15px;
  }
  .mfo-comparison__value:not(:last-child) {
    margin-bottom: 8px;
  }
  .mfo-comparison__value--featured {
    border-width: 2px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .mfo-comparison__value::before {
    content: attr(data-mfo);
    font-weight: 600;
    color: #1C1C1C;
    margin-right: auto;
  }
}

.mfo-comparison__highlight {
  font-weight: 700;
  font-size: 16px;
  color: #1665D8;
}
@media (max-width: 767px) {
  .mfo-comparison__highlight {
    font-size: 17px;
  }
}

.mfo-comparison__icon-yes {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #10b981;
}

.mfo-comparison__icon-no {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #ef4444;
}

.mfo-comparison__footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px (1fr)[4];
  grid-template-columns: 250px repeat(4, 1fr);
  gap: 16px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.03) 0%, transparent 100%);
  border-top: 2px solid #E5E7EB;
}
@media (max-width: 1023px) {
  .mfo-comparison__footer {
    -ms-grid-columns: 200px (1fr)[4];
    grid-template-columns: 200px repeat(4, 1fr);
    padding: 24px;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .mfo-comparison__footer {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .mfo-comparison__cta-label {
    display: none;
  }
}

.mfo-comparison__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.mfo-comparison__cta--featured .btn {
  width: 100%;
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.25);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.25);
}
.mfo-comparison__cta--featured .btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(22, 101, 216, 0.35);
          box-shadow: 0 12px 32px rgba(22, 101, 216, 0.35);
}
.mfo-comparison__cta .btn {
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .mfo-comparison__cta {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .mfo-comparison__cta--featured {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.mfo-comparison__promo {
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .mfo-comparison__promo {
    font-size: 14px;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .mfo-comparison__value[data-mfo]::before {
    display: block;
  }
  .mfo-comparison__header .mfo-comparison__mfo:not(.mfo-comparison__mfo--featured) {
    display: none;
  }
}
.pros-cons__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.pros-cons__column {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
}

.pros-cons__header {
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.pros-cons__header--pros {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
}
.pros-cons__header--cons {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
}

.pros-cons__header-icon {
  fill: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pros-cons__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.pros-cons__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-cons__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(10, 42, 67, 0.06);
}
.pros-cons__item:last-child {
  border-bottom: none;
}
.pros-cons__item span {
  font-size: 15px;
  line-height: 1.6;
  color: #1C1C1C;
}

.pros-cons__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.pros-cons__item--pro .pros-cons__icon {
  fill: #27AE60;
}
.pros-cons__item--con .pros-cons__icon {
  fill: #E74C3C;
}

.pros-cons__summary {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 12px rgba(10, 42, 67, 0.08);
}

.pros-cons__summary-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1C1C1C;
}

.pros-cons__summary-text {
  font-size: 15px;
  line-height: 1.8;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 1023px) {
  .pros-cons__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .pros-cons__header,
  .pros-cons__item {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pros-cons__summary {
    padding: 24px 16px;
  }
}
.reviews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  gap: 32px;
}

.reviews__rating-summary {
  text-align: right;
}

.reviews__count {
  font-size: 14px;
  color: #6B7280;
  margin-top: 8px;
}

.reviews__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.reviews__filter::-webkit-scrollbar {
  height: 6px;
}
.reviews__filter::-webkit-scrollbar-track {
  background: rgba(10, 42, 67, 0.05);
  border-radius: 3px;
}
.reviews__filter::-webkit-scrollbar-thumb {
  background: #1665D8;
  border-radius: 3px;
}

.reviews__filter-btn {
  padding: 10px 20px;
  background: #ffffff;
  border: 2px solid rgba(10, 42, 67, 0.1);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.reviews__filter-btn:hover {
  border-color: #1665D8;
  color: #1665D8;
}
.reviews__filter-btn--active {
  background: #1665D8;
  border-color: #1665D8;
  color: white;
}

.reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.06);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.06);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.review-card:hover {
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.1);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.1);
}

.review-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.review-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1665D8 0%, #1976d2 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.review-card__author-name {
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 0 0 4px 0;
}

.review-card__date {
  font-size: 13px;
  color: #6B7280;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #1C1C1C;
  margin-bottom: 16px;
}

.review-card__helpful {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.review-card__helpful-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(10, 42, 67, 0.15);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.review-card__helpful-btn svg {
  fill: currentColor;
}
.review-card__helpful-btn:hover {
  border-color: #1665D8;
  color: #1665D8;
  background: rgba(22, 101, 216, 0.05);
}
.review-card__helpful-btn[data-voted=true] {
  border-color: #1665D8;
  color: #1665D8;
  background: rgba(22, 101, 216, 0.1);
}

.reviews__load-more {
  text-align: center;
  margin-bottom: 40px;
}

.reviews__add {
  background: linear-gradient(135deg, #0A2A43 0%, #0D3558 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
}

.reviews__add-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.reviews__add-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.reviews__add > button {
  background: white;
  color: #0A2A43;
}
.reviews__add > button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.reviews-form {
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  color: #1C1C1C;
}

.reviews-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 160px;
  grid-template-columns: 1fr 160px;
  gap: 12px;
  margin-bottom: 12px;
}

.reviews-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
}

.reviews-form__input,
.reviews-form__textarea {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #1C1C1C;
  background: #ffffff;
}

.reviews-form__textarea {
  resize: vertical;
  min-height: 110px;
}

.reviews-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.reviews-form__note {
  margin: 0;
  font-size: 13px;
  color: #6B7280;
}

.reviews-form__status {
  margin: 10px 0 0;
  font-size: 13px;
  color: #6B7280;
}

.reviews-form__turnstile {
  margin: 16px 0;
}
.reviews-form__turnstile .cf-turnstile {
  margin: 0 auto;
}
.reviews-form__turnstile iframe {
  max-width: 100% !important;
}

.reviews-form__turnstile-note {
  margin: 8px 0 0;
  font-size: 13px;
  color: #6B7280;
  text-align: center;
}

@media (max-width: 1023px) {
  .reviews__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .reviews__rating-summary {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .review-card {
    padding: 16px;
  }
  .review-card__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .reviews__add {
    padding: 32px 20px;
  }
  .reviews-form__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1023px) {
  .hero--reviews .hero__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.reviews-stats-widget {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}
@media (max-width: 1023px) {
  .reviews-stats-widget {
    max-width: 100%;
  }
}
.reviews-stats-widget__inner {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.reviews-stats-widget__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.reviews-stats-widget__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.reviews-stats-widget__item {
  text-align: center;
}
.reviews-stats-widget__number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #27AE60;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .reviews-stats-widget__number {
    font-size: 24px;
  }
}
.reviews-stats-widget__number--loading {
  opacity: 0.5;
  -webkit-animation: pulse-loading 1.5s ease-in-out infinite;
          animation: pulse-loading 1.5s ease-in-out infinite;
}
.reviews-stats-widget__label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.reviews-stats-widget__cta {
  text-align: center;
}
.reviews-stats-widget__cta .btn {
  width: 100%;
}

.mfo-selector {
  padding: 60px 0;
  background: #EEF3F8;
}
@media (max-width: 767px) {
  .mfo-selector {
    padding: 40px 0;
  }
}
.mfo-selector__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1C;
  text-align: center;
}
@media (max-width: 767px) {
  .mfo-selector__title {
    font-size: 22px;
  }
}
.mfo-selector__subtitle {
  margin: 0 0 32px;
  font-size: 16px;
  color: #6B7280;
  text-align: center;
}
.mfo-selector__search {
  position: relative;
  max-width: 400px;
  margin: 0 auto 32px;
}
.mfo-selector__input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: #ffffff;
  border: 2px solid rgba(10, 42, 67, 0.1);
  border-radius: 12px;
  font-size: 15px;
  color: #1C1C1C;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.mfo-selector__input::-webkit-input-placeholder {
  color: #6B7280;
}
.mfo-selector__input::-moz-placeholder {
  color: #6B7280;
}
.mfo-selector__input:-ms-input-placeholder {
  color: #6B7280;
}
.mfo-selector__input::-ms-input-placeholder {
  color: #6B7280;
}
.mfo-selector__input::placeholder {
  color: #6B7280;
}
.mfo-selector__input:focus {
  outline: none;
  border-color: #1665D8;
  -webkit-box-shadow: 0 0 0 4px rgba(22, 101, 216, 0.1);
          box-shadow: 0 0 0 4px rgba(22, 101, 216, 0.1);
}
.mfo-selector__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #6B7280;
  pointer-events: none;
}
.mfo-selector__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .mfo-selector__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.mfo-selector__loading {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 40px;
  color: #6B7280;
}
.mfo-selector__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.mfo-selector__card:hover {
  border-color: #1665D8;
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.1);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.mfo-selector__card--active {
  border-color: #1665D8;
  background: rgba(22, 101, 216, 0.05);
}
.mfo-selector__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
}
.mfo-selector__card-logo {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mfo-selector__card-logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}
.mfo-selector__card-placeholder {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #1665D8 0%, #1976d2 100%);
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.mfo-selector__card-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  text-align: left;
}
.mfo-selector__card-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mfo-selector__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.mfo-selector__card-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
}
.mfo-selector__card-reviews svg {
  color: #ffc107;
}
.mfo-selector__card-count {
  font-size: 11px;
  color: #6B7280;
}
.mfo-selector__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mfo-selector__empty {
  grid-column: 1/-1;
  padding: 40px;
  text-align: center;
  color: #6B7280;
}
.mfo-selector__pagination {
  margin-top: 32px;
  text-align: center;
}

.reviews-all {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .reviews-all {
    padding: 40px 0;
  }
}
.reviews-all .btn--outline {
  border-color: #1665D8;
  color: #1665D8;
  background: transparent;
}
.reviews-all .btn--outline:hover {
  background: rgba(22, 101, 216, 0.08);
  border-color: #1665D8;
}
.reviews-all__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .reviews-all__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reviews-all__title-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reviews-all__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .reviews-all__title {
    font-size: 20px;
  }
}
.reviews-all__count {
  margin: 0;
  font-size: 14px;
  color: #6B7280;
}
.reviews-all__actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reviews-all__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.reviews-all__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .reviews-all__filters {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.reviews-all__filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .reviews-all__filter-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.reviews-all__filter-label {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  white-space: nowrap;
}
.reviews-all__select {
  padding: 10px 36px 10px 14px;
  background: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A2A43' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 2px solid rgba(10, 42, 67, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: #1C1C1C;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.reviews-all__select:focus {
  outline: none;
  border-color: #1665D8;
}
.reviews-all__rating-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.reviews-all__rating-btn {
  padding: 8px 12px;
  background: #ffffff;
  border: 2px solid rgba(10, 42, 67, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.reviews-all__rating-btn:hover {
  border-color: #1665D8;
  color: #1665D8;
}
.reviews-all__rating-btn--active {
  background: #1665D8;
  border-color: #1665D8;
  color: #fff;
}
.reviews-all__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  max-width: 100%;
  overflow: hidden;
}
.reviews-all__list > * {
  max-width: 100%;
  min-width: 0;
}
.reviews-all__loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 60px 20px;
  color: #6B7280;
}
.reviews-all__pagination {
  text-align: center;
}

.review-card-all {
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.06);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.06);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .review-card-all {
    padding: 20px;
  }
}
.review-card-all:hover {
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.1);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.1);
}
.review-card-all__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .review-card-all__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.review-card-all__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.review-card-all__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1665D8 0%, #1976d2 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.review-card-all__author-info {
  min-width: 0;
}
.review-card-all__author-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1C1C1C;
}
.review-card-all__date {
  font-size: 13px;
  color: #6B7280;
}
.review-card-all__mfo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid rgba(10, 42, 67, 0.12);
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.review-card-all__mfo:hover {
  background: rgba(22, 101, 216, 0.08);
  border-color: #1665D8;
}
.review-card-all__mfo-logo {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.review-card-all__mfo-name {
  font-size: 13px;
  font-weight: 600;
  color: #1665D8;
  white-space: nowrap;
}
.review-card-all__rating {
  margin-bottom: 16px;
}
.review-card-all__rating .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.review-card-all__rating .rating__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.review-card-all__rating .rating__star {
  width: 18px;
  height: 18px;
}
.review-card-all__rating .rating__star--full {
  color: #ffc107;
}
.review-card-all__rating .rating__star--empty {
  color: rgba(10, 42, 67, 0.15);
}
.review-card-all__rating .rating__value {
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
}
.review-card-all__body {
  margin-bottom: 16px;
}
.review-card-all__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #1C1C1C;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.review-card-all__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 42, 67, 0.08);
}
.review-card-all__helpful-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(10, 42, 67, 0.15);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.review-card-all__helpful-btn:hover:not(:disabled) {
  border-color: #1665D8;
  color: #1665D8;
}
.review-card-all__helpful-btn--active, .review-card-all__helpful-btn:disabled {
  background: rgba(22, 101, 216, 0.1);
  border-color: #1665D8;
  color: #1665D8;
  cursor: default;
}
.review-card-all__helpful-btn svg {
  width: 16px;
  height: 16px;
}

.reviews-all__empty,
.reviews-all__error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}
.reviews-all__empty svg,
.reviews-all__error svg {
  color: #6B7280;
}
.reviews-all__empty p,
.reviews-all__error p {
  margin: 0;
  font-size: 16px;
  color: #6B7280;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(10, 42, 67, 0.1);
  border-top-color: #1665D8;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.faq {
  padding: 60px 0;
  background: #EEF3F8;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}
.faq .faq__title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: #1C1C1C;
  text-align: center;
}
@media (max-width: 767px) {
  .faq .faq__title {
    font-size: 24px;
  }
}
.faq .faq__subtitle {
  margin: 0 0 40px;
  font-size: 16px;
  color: #6B7280;
  text-align: center;
}
@media (max-width: 767px) {
  .faq .faq__subtitle {
    margin-bottom: 24px;
  }
}
.faq .faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.faq .faq__item {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.faq .faq__item:hover {
  border-color: #1665D8;
}
.faq .faq__item.active {
  border-color: #1665D8;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.08);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.08);
}
.faq .faq__item.active .faq__question {
  color: #1665D8;
}
.faq .faq__item.active .faq__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq .faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 20px 20px;
  opacity: 1;
}
.faq .faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.faq .faq__question span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq .faq__question:hover {
  color: #1665D8;
}
.faq .faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #6B7280;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .faq__answer {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.faq .faq__answer p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
}
.faq .faq__answer p:last-child {
  margin-bottom: 0;
}
.faq .faq__answer a {
  color: #1665D8;
  text-decoration: underline;
}
.faq .faq__answer a:hover {
  text-decoration: none;
}
.faq .faq__cta {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.05), rgba(10, 42, 67, 0.03));
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq .faq__cta p {
  margin: 0 0 16px;
  font-size: 16px;
  color: #6B7280;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.review-modal--visible {
  opacity: 1;
  visibility: visible;
}
.review-modal--visible .review-modal__content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 42, 67, 0.7);
  backdrop-filter: blur(4px);
}
.review-modal__content {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 60px rgba(10, 42, 67, 0.2);
          box-shadow: 0 20px 60px rgba(10, 42, 67, 0.2);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 767px) {
  .review-modal__content {
    padding: 24px 20px;
  }
}
.review-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.review-modal__close:hover {
  background: rgba(10, 42, 67, 0.05);
  color: #1C1C1C;
}
.review-modal__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1C;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .review-modal__title {
    font-size: 20px;
  }
}
.review-modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.review-modal__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .review-modal__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.review-modal__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.review-modal__label {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
}
.review-modal__label .required {
  color: #ef4444;
}
.review-modal__input, .review-modal__textarea {
  padding: 12px 16px;
  background: #EEF3F8;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  color: #1C1C1C;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.review-modal__input::-webkit-input-placeholder, .review-modal__textarea::-webkit-input-placeholder {
  color: #6B7280;
}
.review-modal__input::-moz-placeholder, .review-modal__textarea::-moz-placeholder {
  color: #6B7280;
}
.review-modal__input:-ms-input-placeholder, .review-modal__textarea:-ms-input-placeholder {
  color: #6B7280;
}
.review-modal__input::-ms-input-placeholder, .review-modal__textarea::-ms-input-placeholder {
  color: #6B7280;
}
.review-modal__input::placeholder, .review-modal__textarea::placeholder {
  color: #6B7280;
}
.review-modal__input:focus, .review-modal__textarea:focus {
  outline: none;
  border-color: #1665D8;
  background: #ffffff;
}
.review-modal__textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.review-modal__mfo-search {
  position: relative;
}
.review-modal__mfo-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(10, 42, 67, 0.1);
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.15);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.15);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.review-modal__mfo-list--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.review-modal__mfo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 14px;
  color: #1C1C1C;
  cursor: pointer;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
}
.review-modal__mfo-item:hover {
  background: rgba(22, 101, 216, 0.05);
}
.review-modal__mfo-logo {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.review-modal__mfo-empty {
  padding: 16px;
  text-align: center;
  color: #6B7280;
  font-size: 14px;
}
.review-modal__selected-mfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(22, 101, 216, 0.08);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1C1C1C;
}
.review-modal__selected-logo {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.review-modal__mfo-remove {
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.review-modal__mfo-remove:hover {
  background: rgba(10, 42, 67, 0.1);
  color: #ef4444;
}
.review-modal__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4px;
}
.review-modal__star {
  padding: 4px;
  background: transparent;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.review-modal__star:hover, .review-modal__star:hover ~ .review-modal__star {
  color: #fbbf24;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.review-modal__star--active {
  color: #fbbf24;
}
.review-modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.review-modal__footer .btn {
  width: 100%;
}
.review-modal__note {
  margin: 0;
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}
.review-modal__status {
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.review-modal__status--success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.review-modal__status--error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

@-webkit-keyframes pulse-loading {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse-loading {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.bottom-cta {
  background: linear-gradient(135deg, #1665D8 0%, #1976d2 100%);
  color: white;
}

.bottom-cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.bottom-cta__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.bottom-cta__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.bottom-cta button {
  background: white;
  color: #1665D8;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.bottom-cta button:hover {
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 1023px) {
  .bottom-cta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .bottom-cta__title {
    font-size: 26px;
  }
  .bottom-cta button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .bottom-cta__title {
    font-size: 22px;
  }
  .bottom-cta__text {
    font-size: 15px;
  }
}
.rating--large .rating__stars {
  gap: 4px;
}
.rating--large .rating__value {
  font-size: 28px;
  font-weight: 700;
  margin-left: 12px;
}

.faq-page {
  background: #EEF3F8;
}
.faq-page .faq-hero__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.faq-page .faq-hero__badge {
  margin-left: auto;
  margin-right: auto;
}
.faq-page .faq-search {
  margin-left: auto;
  margin-right: auto;
}
.faq-page .faq-search__count {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.faq-page .faq-topics {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq-page .faq__grid {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero {
  position: relative;
  padding: 84px 0 36px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .faq-hero {
    padding: 72px 0 28px;
  }
}
@media (max-width: 767px) {
  .faq-hero {
    padding: 56px 0 20px;
  }
}
.faq-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.faq-hero__gradient {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  background: radial-gradient(closest-side at 20% 30%, rgba(22, 101, 216, 0.22), transparent 70%), radial-gradient(closest-side at 70% 20%, rgba(10, 42, 67, 0.18), transparent 75%), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(80%, rgb(255, 255, 255)));
  background: radial-gradient(closest-side at 20% 30%, rgba(22, 101, 216, 0.22), transparent 70%), radial-gradient(closest-side at 70% 20%, rgba(10, 42, 67, 0.18), transparent 75%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%);
}
.faq-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(22, 101, 216, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #000), to(transparent));
          mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
}
.faq-hero__container {
  position: relative;
}
.faq-hero__content {
  padding-top: 22px;
}
.faq-hero__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  color: #6B7280;
}
.faq-hero__badge svg {
  color: #1665D8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-hero__title {
  margin: 16px 0 12px;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .faq-hero__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .faq-hero__title {
    font-size: 30px;
  }
}
.faq-hero__brand {
  color: #1665D8;
}
.faq-hero__subtitle {
  margin: 0;
  max-width: 860px;
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
}
@media (max-width: 767px) {
  .faq-hero__subtitle {
    font-size: 16px;
  }
}

.faq-search {
  margin-top: 22px;
  max-width: 820px;
}
.faq-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.faq-search__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
}
.faq-search__icon {
  color: #6B7280;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-search__input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 16px;
  color: #1C1C1C;
}
.faq-search__input::-webkit-input-placeholder {
  color: rgba(107, 114, 128, 0.75);
}
.faq-search__input::-moz-placeholder {
  color: rgba(107, 114, 128, 0.75);
}
.faq-search__input:-ms-input-placeholder {
  color: rgba(107, 114, 128, 0.75);
}
.faq-search__input::-ms-input-placeholder {
  color: rgba(107, 114, 128, 0.75);
}
.faq-search__input::placeholder {
  color: rgba(107, 114, 128, 0.75);
}
.faq-search__clear {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  color: #6B7280;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.faq-search__clear:hover {
  color: #1665D8;
  border-color: rgba(22, 101, 216, 0.25);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.faq-search__meta {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(107, 114, 128, 0.9);
}

.faq-topics {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.faq-topics__chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  color: #6B7280;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.faq-topics__chip:hover {
  color: #1665D8;
  border-color: rgba(22, 101, 216, 0.25);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.faq-section-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(107, 114, 128, 0.95);
}

.faq-cta-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.faq-links {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .faq-links {
    margin-bottom: 40px;
  }
}
.faq-links__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .faq-links__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.faq-links__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1023px) {
  .faq-links__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .faq-links__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.faq-links__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.faq-links__card:hover {
  border-color: rgba(22, 101, 216, 0.3);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.faq-links__card:hover svg {
  color: #1665D8;
}
.faq-links__card svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
@media (max-width: 767px) {
  .faq-links__card {
    padding: 16px;
    gap: 12px;
  }
}
.faq-links__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.faq-links__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
  line-height: 1.3;
}
.faq-links__card-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

.faq-search__count {
  margin-top: 8px;
  padding: 6px 12px;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #1665D8;
  background: rgba(22, 101, 216, 0.08);
  border-radius: 8px;
}

.faq-empty {
  margin-top: 18px;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px dashed #E5E7EB;
  text-align: center;
}
.faq-empty__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
}
.faq-empty__text {
  margin: 0;
  color: #6B7280;
}

.faq {
  padding: 80px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .faq {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 48px 0;
  }
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .faq__list {
    gap: 12px;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 1023px) {
  .faq__header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .faq__header {
    margin-bottom: 40px;
  }
}
.faq__title {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .faq__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 28px;
  }
}
.faq__subtitle {
  margin: 0 auto;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
}
@media (max-width: 767px) {
  .faq__subtitle {
    font-size: 16px;
  }
}
.faq__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 1023px) {
  .faq__grid {
    gap: 24px;
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .faq__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 48px;
  }
}
.faq__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .faq__column {
    gap: 12px;
  }
}
.faq__cta {
  text-align: center;
  padding: 48px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px dashed #E5E7EB;
}
@media (max-width: 1023px) {
  .faq__cta {
    padding: 40px 32px;
  }
}
@media (max-width: 767px) {
  .faq__cta {
    padding: 32px 24px;
  }
}
.faq__cta-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .faq__cta-title {
    font-size: 24px;
  }
}
.faq__cta-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: rgba(22, 101, 216, 0.3);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.faq-item.active {
  border-color: #1665D8;
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.15);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.15);
}
.faq-item.active .faq-item__question {
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.05) 0%, rgba(22, 101, 216, 0.02) 100%);
}
.faq-item.active .faq-item__question h3 {
  color: #1665D8;
}
.faq-item.active .faq-item__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #1665D8;
}
.faq-item.active .faq-item__answer {
  max-height: 1000px;
  padding: 0 28px 28px;
  opacity: 1;
}
.faq-item__question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .faq-item__question {
    padding: 20px 24px;
    gap: 16px;
  }
}
.faq-item__question h3 {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #1C1C1C;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .faq-item__question h3 {
    font-size: 16px;
  }
}
.faq-item__question:hover {
  background: rgba(22, 101, 216, 0.03);
}
.faq-item__question-text {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #1C1C1C;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .faq-item__question-text {
    font-size: 16px;
  }
}
.faq-item__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .faq-item__title {
    font-size: 16px;
  }
}
.faq-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6B7280;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .faq-item__icon {
    width: 24px;
    height: 24px;
  }
}
.faq-item__answer {
  max-height: 0;
  padding: 0 28px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .faq-item__answer {
    padding: 0 24px;
  }
}
.faq-item__answer-text {
  padding-top: 8px;
}
.faq-item__answer-text p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #3c3c3c;
}
.faq-item__answer-text p:last-child {
  margin-bottom: 0;
}
.faq-item__answer-text ul {
  margin: 12px 0 16px;
  padding-left: 24px;
}
.faq-item__answer-text ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #3c3c3c;
}
.faq-item__answer-text ul li:last-child {
  margin-bottom: 0;
}
.faq-item__answer-text ul li strong {
  color: #1C1C1C;
  font-weight: 600;
}

.seo-text {
  padding: 80px 0;
  background: #EEF3F8;
}
@media (max-width: 767px) {
  .seo-text {
    padding: 48px 0;
  }
}
.seo-text__container {
  max-width: 920px;
  margin: 0 auto;
}
.seo-text__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #0A2A43;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .seo-text__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.seo-text__content {
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.08);
}
@media (max-width: 767px) {
  .seo-text__content {
    padding: 24px;
  }
}
.seo-text__content p {
  font-size: 16px;
  line-height: 1.7;
  color: #3c3c3c;
  margin-bottom: 20px;
}
.seo-text__content p:last-child {
  margin-bottom: 0;
}
.seo-text__content .seo-links {
  margin-top: 16px;
}
.seo-text__content .seo-links__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 1023px) {
  .seo-text__content .seo-links__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .seo-text__content .seo-links__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.seo-text__content .seo-links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  color: #3c3c3c;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  -webkit-transition: border-color 0.2s, background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.seo-text__content .seo-links__item:hover {
  border-color: #1665D8;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.seo-text__content .seo-links__item:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 2px;
}
.seo-text__subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #0A2A43;
  margin-top: 32px;
  margin-bottom: 16px;
}
.seo-text__subtitle:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .seo-text__subtitle {
    font-size: 20px;
    margin-top: 24px;
  }
}

.about-hero {
  position: relative;
  padding: 0 0 48px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .about-hero {
    padding: 0 0 72px;
  }
}
@media (min-width: 1024px) {
  .about-hero {
    padding: 0 0 96px;
  }
}
.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  min-height: 400px;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .about-hero__bg {
    min-height: 480px;
  }
}
.about-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A2A43 0%, rgb(15.2987012987, 64.2545454545, 102.5012987013) 35%, #1665D8 100%);
}
.about-hero__gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: -webkit-gradient(linear, left bottom, left top, from(#EEF3F8), to(transparent));
  background: linear-gradient(to top, #EEF3F8 0%, transparent 100%);
}
.about-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.about-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 24px;
}
@media (max-width: 1023px) {
  .about-hero__container {
    padding-top: 32px;
  }
}
.about-hero__content {
  max-width: 720px;
  padding-top: 32px;
}
@media (max-width: 1023px) {
  .about-hero__content {
    padding-top: 48px;
  }
}
@media (min-width: 1024px) {
  .about-hero__content {
    padding-top: 64px;
  }
}
.about-hero__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.about-hero__badge svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-hero__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 1023px) {
  .about-hero__title {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .about-hero__title {
    font-size: 52px;
  }
}
.about-hero__brand {
  display: inline;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero__subtitle {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1023px) {
  .about-hero__subtitle {
    font-size: 19px;
    margin-bottom: 40px;
  }
}
.about-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .about-hero__stats {
    gap: 48px;
    margin-bottom: 40px;
  }
}
.about-hero__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.about-hero__stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media (max-width: 1023px) {
  .about-hero__stat-value {
    font-size: 40px;
  }
}
.about-hero__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1023px) {
  .about-hero__stat-label {
    font-size: 15px;
  }
}
.about-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.about-hero__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.about-hero__actions .btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.about-hero .breadcrumbs {
  margin-bottom: 0;
}
.about-hero .breadcrumbs__link {
  color: rgba(255, 255, 255, 0.7);
}
.about-hero .breadcrumbs__link:hover {
  color: #fff;
}
.about-hero .breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.5);
}
.about-hero .breadcrumbs__current {
  color: rgba(255, 255, 255, 0.9);
}

.about-mission {
  padding: 48px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .about-mission {
    padding: 72px 0;
  }
}
@media (min-width: 1024px) {
  .about-mission {
    padding: 96px 0;
  }
}
.about-mission__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
@media (max-width: 1023px) {
  .about-mission__header {
    margin-bottom: 56px;
  }
}
.about-mission__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.about-mission__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-mission__title {
    font-size: 36px;
  }
}
.about-mission__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #6B7280;
}
.about-mission__grid {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media (max-width: 1023px) {
  .about-mission__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .about-mission__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-mission__card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.about-mission__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.about-mission__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(22, 101, 216, 0.1);
  color: #1665D8;
  border-radius: 14px;
  margin-bottom: 20px;
}
.about-mission__icon--success {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
}
.about-mission__icon--warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.about-mission__icon--info {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.about-mission__card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
}
.about-mission__card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
}

.about-process {
  padding: 48px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  .about-process {
    padding: 72px 0;
  }
}
@media (min-width: 1024px) {
  .about-process {
    padding: 96px 0;
  }
}
.about-process__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
@media (max-width: 1023px) {
  .about-process__header {
    margin-bottom: 56px;
  }
}
.about-process__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.about-process__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-process__title {
    font-size: 36px;
  }
}
.about-process__timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.about-process__timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1665D8), to(#27AE60));
  background: linear-gradient(to bottom, #1665D8 0%, #27AE60 100%);
  border-radius: 1px;
}
@media (max-width: 1023px) {
  .about-process__timeline::before {
    left: 31px;
  }
}
.about-process__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 24px 0;
}
@media (max-width: 1023px) {
  .about-process__step {
    gap: 28px;
  }
}
.about-process__step:first-child {
  padding-top: 0;
}
.about-process__step:last-child {
  padding-bottom: 0;
}
.about-process__step-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .about-process__step-number {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
}
.about-process__step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 4px;
}
@media (max-width: 1023px) {
  .about-process__step-content {
    padding-top: 12px;
  }
}
.about-process__step-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-process__step-title {
    font-size: 20px;
  }
}
.about-process__step-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
}
@media (max-width: 1023px) {
  .about-process__step-text {
    font-size: 16px;
  }
}

.about-trust {
  padding: 48px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .about-trust {
    padding: 72px 0;
  }
}
@media (min-width: 1024px) {
  .about-trust {
    padding: 96px 0;
  }
}
.about-trust__content {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .about-trust__content {
    -ms-grid-columns: 1fr 400px;
    grid-template-columns: 1fr 400px;
    gap: 64px;
  }
}
.about-trust__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(10, 42, 67, 0.1);
  color: #0A2A43;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.about-trust__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-trust__title {
    font-size: 36px;
  }
}
.about-trust__desc {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  color: #6B7280;
}
.about-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.about-trust__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #1C1C1C;
}
.about-trust__item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #27AE60;
}
@media (min-width: 1024px) {
  .about-trust__visual {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.about-trust__card {
  padding: 32px;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
  border-radius: 20px;
  color: #fff;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-trust__card {
    max-width: 360px;
  }
}
.about-trust__card-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.about-trust__card-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
}
.about-trust__card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.about-sources {
  padding: 48px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  .about-sources {
    padding: 72px 0;
  }
}
@media (min-width: 1024px) {
  .about-sources {
    padding: 96px 0;
  }
}
.about-sources__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
@media (max-width: 1023px) {
  .about-sources__header {
    margin-bottom: 56px;
  }
}
.about-sources__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.about-sources__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-sources__title {
    font-size: 36px;
  }
}
.about-sources__grid {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media (max-width: 1023px) {
  .about-sources__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .about-sources__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-sources__item {
  padding: 24px;
  background: #EEF3F8;
  border-radius: 14px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.about-sources__item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.about-sources__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  color: #1665D8;
  border-radius: 12px;
  margin: 0 auto 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.about-sources__item-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
}
.about-sources__item-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6B7280;
}

.about-disclosure {
  padding: 48px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .about-disclosure {
    padding: 56px 0;
  }
}
.about-disclosure__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
}
@media (max-width: 1023px) {
  .about-disclosure__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
    padding: 28px;
  }
}
.about-disclosure__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 12px;
}
.about-disclosure__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
}
.about-disclosure__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
}

.about-faq {
  padding: 48px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  .about-faq {
    padding: 72px 0;
  }
}
@media (min-width: 1024px) {
  .about-faq {
    padding: 96px 0;
  }
}
.about-faq__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
@media (max-width: 1023px) {
  .about-faq__header {
    margin-bottom: 48px;
  }
}
.about-faq__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.about-faq__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-faq__title {
    font-size: 36px;
  }
}
.about-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.about-faq__item {
  background: #EEF3F8;
  border-radius: 14px;
  overflow: hidden;
}
.about-faq__item[open] .about-faq__question svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.about-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
  cursor: pointer;
  list-style: none;
}
.about-faq__question::-webkit-details-marker {
  display: none;
}
.about-faq__question::marker {
  display: none;
}
.about-faq__question svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.about-faq__question:hover {
  color: #1665D8;
}
@media (max-width: 1023px) {
  .about-faq__question {
    font-size: 17px;
  }
}
.about-faq__answer {
  padding: 0 24px 20px;
}
.about-faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
}
@media (max-width: 1023px) {
  .about-faq__answer p {
    font-size: 16px;
  }
}

.about-contact {
  padding: 48px 0;
  background: #EEF3F8;
}
@media (max-width: 1023px) {
  .about-contact {
    padding: 56px 0;
  }
}
.about-contact__card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1023px) {
  .about-contact__card {
    padding: 48px 40px;
  }
}
.about-contact__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1C;
}
@media (max-width: 1023px) {
  .about-contact__title {
    font-size: 28px;
  }
}
.about-contact__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
}
.about-contact__email {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #EEF3F8;
  color: #1665D8;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.about-contact__email svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-contact__email:hover {
  background: #1665D8;
  color: #fff;
}

.about-cta {
  padding: 56px 0;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
}
@media (max-width: 1023px) {
  .about-cta {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .about-cta {
    padding: 100px 0;
  }
}
.about-cta__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-cta__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
@media (max-width: 1023px) {
  .about-cta__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .about-cta__title {
    font-size: 42px;
  }
}
.about-cta__text {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1023px) {
  .about-cta__text {
    font-size: 19px;
  }
}
.about-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media (max-width: 1023px) {
  .about-cta__buttons {
    gap: 16px;
  }
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.blog {
  padding: 0 0 80px;
  background: #EEF3F8;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .blog {
    padding: 0 0 64px;
  }
}
@media (max-width: 767px) {
  .blog {
    padding: 0 0 52px;
  }
}
.blog__container {
  display: block;
}
.blog__hero {
  position: relative;
  padding: 64px 0 56px;
  margin: 0 0 40px;
  text-align: center;
  background: linear-gradient(165deg, #0A2A43 0%, rgb(16.7480519481, 70.3418181818, 112.2119480519) 50%, rgb(18.7, 85.85, 183.6) 100%);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}
.blog__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(22, 101, 216, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.blog__hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  -webkit-filter: blur(40px);
          filter: blur(40px);
  pointer-events: none;
}
@media (max-width: 767px) {
  .blog__hero::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .blog__hero {
    padding: 52px 0 48px;
    margin-bottom: 32px;
    border-radius: 0 0 24px 24px;
  }
}
@media (max-width: 767px) {
  .blog__hero {
    padding: 44px 0 40px;
    margin-bottom: 24px;
    text-align: left;
    border-radius: 0 0 20px 20px;
  }
}
.blog__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .blog__hero-inner {
    padding: 0 16px;
  }
}
.blog__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.blog__badge-icon {
  font-size: 16px;
}
.blog__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.025em;
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.blog__lead {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .blog__lead {
    margin: 0;
  }
}
.blog__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
  .blog__stats {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }
}
.blog__stat {
  text-align: center;
}
@media (max-width: 767px) {
  .blog__stat {
    text-align: left;
  }
}
.blog__stat-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.blog__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.blog__actions {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .blog__actions {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.blog__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.blog__btn--primary {
  background: #fff;
  color: #0A2A43;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 12px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 12px 32px rgba(0, 0, 0, 0.1);
}
.blog__btn--primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 16px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 16px 40px rgba(0, 0, 0, 0.15);
}
.blog__btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.blog__btn--secondary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.blog__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.blog__filters::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .blog__filters {
    margin: 0 -16px 24px;
    padding: 0 16px;
  }
}
.blog__filter {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog__filter:hover {
  border-color: #1665D8;
  color: #1665D8;
}
.blog__filter--active {
  background: #1665D8;
  border-color: #1665D8;
  color: #fff;
}
.blog__filter--active:hover {
  background: rgb(20.24, 92.92, 198.72);
  color: #fff;
}
.blog__filter-count {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(10, 42, 67, 0.08);
  font-size: 12px;
  font-weight: 700;
}
.blog__filter--active .blog__filter-count {
  background: rgba(255, 255, 255, 0.2);
}
.blog__featured {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .blog__featured {
    margin-bottom: 24px;
  }
}
.blog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1023px) {
  .blog__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .blog__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.blog__section-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
  color: #0A2A43;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.blog__section-title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#E5E7EB), to(transparent));
  background: linear-gradient(90deg, #E5E7EB 0%, transparent 100%);
}

.blog-links {
  margin-top: 32px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(22, 101, 216, 0.03) 100%);
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
}
@media (max-width: 767px) {
  .blog-links {
    padding: 22px 18px;
    border-radius: 16px;
    margin-top: 24px;
  }
}
.blog-links__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .blog-links__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.blog-links__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #0A2A43;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-links__title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.12) 0%, rgba(22, 101, 216, 0.05) 100%);
  color: #1665D8;
  font-size: 18px;
}
.blog-links__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #6B7280;
  max-width: 600px;
}
.blog-links__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .blog-links__list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .blog-links__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.blog-links__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  color: #3c3c3c;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-links__list a::after {
  content: "→";
  color: #1665D8;
  font-weight: 800;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.blog-links__list a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: #1665D8;
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.1), 0 8px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.1), 0 8px 24px rgba(10, 42, 67, 0.08);
}
.blog-links__list a:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.blog-links__list a:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 2px;
}

.blog-popular {
  margin-top: 32px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
}
@media (max-width: 767px) {
  .blog-popular {
    padding: 22px 18px;
    border-radius: 16px;
    margin-top: 24px;
  }
}
.blog-popular__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.blog-popular__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #0A2A43;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-popular__title::before {
  content: "🔥";
  font-size: 18px;
}
.blog-popular__subtitle {
  font-size: 13px;
  color: #6B7280;
  font-weight: 600;
}
.blog-popular__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1023px) {
  .blog-popular__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .blog-popular__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.blog-popular__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #F9FAFB 100%);
  border: 1px solid #E5E7EB;
  text-decoration: none;
  color: #3c3c3c;
  -webkit-box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
          box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.blog-popular__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1665D8), to(rgb(57.5142857143, 129.7428571429, 234.8857142857)));
  background: linear-gradient(180deg, #1665D8 0%, rgb(57.5142857143, 129.7428571429, 234.8857142857) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.blog-popular__link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: #1665D8;
  -webkit-box-shadow: 0 8px 20px rgba(22, 101, 216, 0.12), 0 16px 40px rgba(10, 42, 67, 0.1);
          box-shadow: 0 8px 20px rgba(22, 101, 216, 0.12), 0 16px 40px rgba(10, 42, 67, 0.1);
}
.blog-popular__link:hover::before {
  opacity: 1;
}
.blog-popular__link:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 2px;
}
.blog-popular__name {
  font-weight: 800;
  color: #0A2A43;
  line-height: 1.3;
  font-size: 15px;
}
.blog-popular__arrow {
  color: #1665D8;
  font-weight: 900;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.blog-popular__link:hover .blog-popular__arrow {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.blog-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(22, 101, 216, 0.2);
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.08) 0%, rgba(22, 101, 216, 0.03) 100%);
  color: #1665D8;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-chip:hover {
  background: rgba(22, 101, 216, 0.12);
  border-color: rgba(22, 101, 216, 0.3);
}

.blog-card {
  height: 100%;
}
.blog-card--featured .blog-card__link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
  padding: 28px;
}
@media (max-width: 1023px) {
  .blog-card--featured .blog-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .blog-card--featured .blog-card__link {
    padding: 20px;
    gap: 16px;
  }
}
.blog-card--featured .blog-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 320px;
  height: 200px;
  border-radius: 16px;
}
@media (max-width: 1023px) {
  .blog-card--featured .blog-card__image {
    width: 100%;
    height: 180px;
  }
}
.blog-card--featured .blog-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.blog-card--featured .blog-card__title {
  font-size: 26px;
  margin-bottom: 12px;
}
@media (max-width: 1023px) {
  .blog-card--featured .blog-card__title {
    font-size: 22px;
  }
}
.blog-card--featured .blog-card__excerpt {
  -webkit-line-clamp: 4;
  font-size: 15px;
}
.blog-card__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  text-decoration: none;
  color: #3c3c3c;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(10, 42, 67, 0.04), 0 8px 24px rgba(10, 42, 67, 0.06);
          box-shadow: 0 2px 8px rgba(10, 42, 67, 0.04), 0 8px 24px rgba(10, 42, 67, 0.06);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card__link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(22, 101, 216, 0.3);
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.1), 0 20px 48px rgba(10, 42, 67, 0.12);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.1), 0 20px 48px rgba(10, 42, 67, 0.12);
}
.blog-card__link:hover .blog-card__image {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.blog-card__link:hover .blog-card__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.blog-card__link:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 3px;
}
.blog-card__image {
  position: relative;
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.15) 0%, rgba(10, 42, 67, 0.1) 100%);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(22, 101, 216, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}
.blog-card__image::after {
  content: "📄";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 32px;
  opacity: 0.6;
}
.blog-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  gap: 12px;
}
@media (max-width: 767px) {
  .blog-card__body {
    padding: 16px;
  }
}
.blog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #0A2A43;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #E5E7EB;
}
.blog-card__meta-left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}
.blog-card__date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #6B7280;
  font-weight: 600;
}
.blog-card__date::before {
  content: "📅";
  font-size: 14px;
}
.blog-card__read-time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6B7280;
  font-weight: 600;
}
.blog-card__read-time::before {
  content: "⏱️";
  font-size: 13px;
}
.blog-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-card__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1) 0%, rgba(22, 101, 216, 0.05) 100%);
  color: #1665D8;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.blog-post {
  padding: 0 0 80px;
  background: #EEF3F8;
  position: relative;
}
.blog-post__progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E5E7EB;
  z-index: 100;
}
.blog-post__progress-bar {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#1665D8), to(rgb(45.1714285714, 121.9142857143, 233.6285714286)));
  background: linear-gradient(90deg, #1665D8 0%, rgb(45.1714285714, 121.9142857143, 233.6285714286) 100%);
  width: 0%;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.blog-post {
  /* Unified premium surfaces (article page) */
}
.blog-post .blog-post__header,
.blog-post .blog-post__content,
.blog-post .blog-toc,
.blog-post .blog-cta,
.blog-post .blog-related,
.blog-post .blog-post-nav__link {
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
}
@media (max-width: 1023px) {
  .blog-post {
    padding: 0 0 64px;
  }
}
@media (max-width: 767px) {
  .blog-post {
    padding: 0 0 52px;
  }
  .blog-post .blog-post__header,
  .blog-post .blog-post__content,
  .blog-post .blog-toc,
  .blog-post .blog-cta,
  .blog-post .blog-related,
  .blog-post .blog-post-nav__link {
    border-radius: 16px;
  }
}
.blog-post__container {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 32px;
}
@media (max-width: 767px) {
  .blog-post__container {
    padding-top: 24px;
  }
}
.blog-post .blog-breadcrumbs {
  margin: 0 0 16px;
  padding: 0 4px;
}
.blog-post .blog-breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #6B7280;
  font-size: 13px;
  line-height: 1.4;
}
.blog-post .blog-breadcrumbs li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.blog-post .blog-breadcrumbs li:not(:last-child)::after {
  content: "›";
  opacity: 0.6;
  font-weight: 600;
}
.blog-post .blog-breadcrumbs a {
  color: #6B7280;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-post .blog-breadcrumbs a:hover {
  background: rgba(22, 101, 216, 0.08);
  color: #1665D8;
}
.blog-post .blog-breadcrumbs a:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 2px;
}
.blog-post .blog-breadcrumbs span {
  color: #3c3c3c;
  font-weight: 600;
}
.blog-post__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  color: #1665D8;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  -webkit-box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
          box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-post__back:hover {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
  border-color: #1665D8;
  -webkit-box-shadow: 0 8px 20px rgba(10, 42, 67, 0.08);
          box-shadow: 0 8px 20px rgba(10, 42, 67, 0.08);
}
.blog-post__back:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 2px;
}
.blog-post__header {
  padding: 32px 32px 28px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .blog-post__header {
    padding: 24px 20px 20px;
  }
}
.blog-post__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: #0A2A43;
  letter-spacing: -0.025em;
  font-weight: 900;
}
.blog-post__lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #6B7280;
  max-width: 640px;
}
.blog-post__meta {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #6B7280;
}
.blog-post__meta time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  font-weight: 700;
}
.blog-post__meta time::before {
  content: "📅";
  font-size: 14px;
}
.blog-post__read-time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(22, 101, 216, 0.08);
  border: 1px solid rgba(22, 101, 216, 0.15);
  color: #1665D8;
  font-weight: 700;
}
.blog-post__read-time::before {
  content: "⏱️";
  font-size: 14px;
}
.blog-post__updated {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.15);
  color: #27AE60;
  font-weight: 700;
}
.blog-post__updated time {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}
.blog-post__updated time::before {
  display: none;
}
.blog-post .blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.blog-post .blog-tags li {
  margin: 0;
}
.blog-post__content {
  margin-top: 20px;
  padding: 36px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .blog-post__content {
    padding: 24px 20px;
  }
}
.blog-post__content p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #3c3c3c;
}
.blog-post__content p:last-child {
  margin-bottom: 0;
}
.blog-post__content h2 {
  margin: 36px 0 16px;
  padding-left: 16px;
  font-size: 24px;
  line-height: 1.25;
  color: #0A2A43;
  font-weight: 800;
  scroll-margin-top: 96px;
  position: relative;
}
.blog-post__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 5px;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1665D8), to(rgb(57.5142857143, 129.7428571429, 234.8857142857)));
  background: linear-gradient(180deg, #1665D8 0%, rgb(57.5142857143, 129.7428571429, 234.8857142857) 100%);
}
.blog-post__content h3 {
  margin: 28px 0 12px;
  padding-left: 14px;
  font-size: 20px;
  line-height: 1.3;
  color: #0A2A43;
  font-weight: 700;
  scroll-margin-top: 96px;
  position: relative;
}
.blog-post__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 999px;
  background: rgba(22, 101, 216, 0.45);
}
.blog-post__content ul,
.blog-post__content ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: #3c3c3c;
}
.blog-post__content ul li,
.blog-post__content ol li {
  margin: 10px 0;
  line-height: 1.75;
  font-size: 16px;
}
.blog-post__content ul li::marker,
.blog-post__content ol li::marker {
  color: #1665D8;
  font-weight: 800;
}
.blog-post__content a {
  color: #1665D8;
  text-decoration: none;
  font-weight: 600;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(65%, transparent), color-stop(65%, rgba(22, 101, 216, 0.25)), to(rgba(22, 101, 216, 0.25)));
  background-image: linear-gradient(180deg, transparent 0%, transparent 65%, rgba(22, 101, 216, 0.25) 65%, rgba(22, 101, 216, 0.25) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 4px;
  padding: 0 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-post__content a:hover {
  background-color: rgba(22, 101, 216, 0.1);
  background-image: none;
}
.blog-post__content a:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 3px;
}
.blog-post__content strong {
  color: #0A2A43;
  font-weight: 700;
}
.blog-post__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 5px solid #1665D8;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.06) 0%, #F9FAFB 60%);
  border-radius: 0 16px 16px 0;
  color: #3c3c3c;
  font-style: italic;
}
.blog-post__content blockquote p {
  margin: 0;
  font-size: 16px;
}
.blog-post__content hr {
  border: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#E5E7EB), to(transparent));
  background: linear-gradient(90deg, #E5E7EB 0%, transparent 100%);
  margin: 32px 0;
}
.blog-post__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0 8px 24px rgba(10, 42, 67, 0.08);
          box-shadow: 0 8px 24px rgba(10, 42, 67, 0.08);
}
.blog-post__content figure {
  margin: 24px 0;
}
.blog-post__content figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #6B7280;
  text-align: center;
}
.blog-post__content pre {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: #0A2A43;
  border: 1px solid #E5E7EB;
  overflow: auto;
  color: #fff;
}
.blog-post__content pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.blog-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}
.blog-post__content table th,
.blog-post__content table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: top;
  font-size: 15px;
}
.blog-post__content table th {
  text-align: left;
  background: #F9FAFB;
  color: #0A2A43;
  font-weight: 800;
}
.blog-post__content table tr:last-child td {
  border-bottom: 0;
}
.blog-post__content table tr:hover td {
  background: rgba(22, 101, 216, 0.03);
}
.blog-post__content code {
  padding: 3px 8px;
  border-radius: 8px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  font-size: 14px;
}

.blog-sticky {
  display: none;
}

@media (max-width: 768px) {
  .blog-post {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
  .blog-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, rgba(238, 243, 248, 0.95)));
    background: linear-gradient(180deg, transparent 0%, rgba(238, 243, 248, 0.95) 20%);
    backdrop-filter: blur(12px);
  }
  .blog-sticky__inner {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    padding: 14px 16px;
    -webkit-box-shadow: 0 -4px 16px rgba(10, 42, 67, 0.08), 0 8px 24px rgba(10, 42, 67, 0.12);
            box-shadow: 0 -4px 16px rgba(10, 42, 67, 0.08), 0 8px 24px rgba(10, 42, 67, 0.12);
  }
  .blog-sticky__title {
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #0A2A43;
    font-weight: 700;
    text-align: center;
  }
  .blog-sticky__actions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .blog-sticky__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 44px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    border: 1px solid #E5E7EB;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .blog-sticky__btn--primary {
    background: linear-gradient(135deg, #1665D8 0%, rgb(19.8, 90.9, 194.4) 100%);
    color: #fff;
    border-color: transparent;
    -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
            box-shadow: 0 4px 12px rgba(22, 101, 216, 0.3);
  }
  .blog-sticky__btn--secondary {
    background: #ffffff;
    color: #0A2A43;
  }
  /* Avoid overlap with global scroll-top button */
  body.blog-page .scroll-top,
  body.blog-post-page .scroll-top {
    bottom: calc(90px + env(safe-area-inset-bottom));
  }
}
.blog-toc {
  margin-top: 20px;
  padding: 28px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .blog-toc {
    padding: 22px 20px;
  }
}
.blog-toc__title {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.4;
  color: #6B7280;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-toc__title::before {
  content: "📑";
  font-size: 16px;
}
.blog-toc__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #E5E7EB;
}
.blog-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc-counter;
}
.blog-toc__item {
  margin: 6px 0;
  line-height: 1.5;
  counter-increment: toc-counter;
}
.blog-toc__item--h3 {
  margin-left: 16px;
}
.blog-toc__item--h3 .blog-toc__link {
  padding: 10px 14px;
  font-size: 14px;
  background: transparent;
  border-color: transparent;
}
.blog-toc__item--h3 .blog-toc__link::before {
  content: "—";
  color: #6B7280;
  margin-right: 8px;
}
.blog-toc__item--h3 .blog-toc__link:hover {
  background: #F9FAFB;
  border-color: #E5E7EB;
}
.blog-toc__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: #3c3c3c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-toc__link::before {
  content: counter(toc-counter) ".";
  color: #1665D8;
  font-weight: 800;
  margin-right: 10px;
  min-width: 20px;
}
.blog-toc__link:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  border-color: #1665D8;
  background: rgba(22, 101, 216, 0.06);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.1);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.1);
}
.blog-toc__link:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 2px;
}
.blog-toc__link--active {
  background: rgba(22, 101, 216, 0.1);
  border-color: #1665D8;
  color: #1665D8;
}

.blog-cta {
  margin-top: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.08) 0%, #ffffff 50%, rgba(39, 174, 96, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.blog-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .blog-cta {
    padding: 24px 20px;
  }
}
.blog-cta__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: #0A2A43;
  font-weight: 800;
  position: relative;
}
.blog-cta__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: #6B7280;
  max-width: 480px;
  position: relative;
}
.blog-cta__button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1665D8 0%, rgb(19.8, 90.9, 194.4) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.25), 0 12px 28px rgba(22, 101, 216, 0.2);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.25), 0 12px 28px rgba(22, 101, 216, 0.2);
}
.blog-cta__button::after {
  content: "→";
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.blog-cta__button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(22, 101, 216, 0.3), 0 16px 36px rgba(22, 101, 216, 0.25);
          box-shadow: 0 6px 16px rgba(22, 101, 216, 0.3), 0 16px 36px rgba(22, 101, 216, 0.25);
}
.blog-cta__button:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.blog-cta__button:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 3px;
}

.blog-post-nav {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .blog-post-nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.blog-post-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: #ffffff;
  text-decoration: none;
  color: #3c3c3c;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-post-nav__link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: #1665D8;
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.1), 0 16px 40px rgba(10, 42, 67, 0.1);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.1), 0 16px 40px rgba(10, 42, 67, 0.1);
}
.blog-post-nav__link:focus-visible {
  outline: 2px solid #1665D8;
  outline-offset: 3px;
}
.blog-post-nav__link[rel=prev] .blog-post-nav__k::before {
  content: "←";
  margin-right: 6px;
}
.blog-post-nav__link[rel=next] {
  text-align: right;
}
.blog-post-nav__link[rel=next] .blog-post-nav__k::after {
  content: "→";
  margin-left: 6px;
}
.blog-post-nav__k {
  font-size: 12px;
  line-height: 1.4;
  color: #1665D8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-post-nav__t {
  font-size: 16px;
  line-height: 1.4;
  color: #0A2A43;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-related {
  margin-top: 24px;
  padding: 32px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .blog-related {
    padding: 24px 20px;
  }
}
.blog-related__title {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.3;
  color: #0A2A43;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-related__title::before {
  content: "📚";
  font-size: 20px;
}
.blog-related__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1023px) {
  .blog-related__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .blog-related__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.blog-related .blog-card__link {
  padding: 0;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
          box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
}
.blog-related .blog-card__image {
  height: 100px;
  border-radius: 16px 16px 0 0;
}
.blog-related .blog-card__body {
  padding: 16px;
}
.blog-related .blog-card__title {
  font-size: 16px;
}
.blog-related .blog-card__excerpt {
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.blog-faq {
  margin-top: 32px;
  padding: 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
          box-shadow: 0 4px 16px rgba(10, 42, 67, 0.04), 0 12px 32px rgba(10, 42, 67, 0.06);
}
@media (max-width: 767px) {
  .blog-faq {
    padding: 24px 20px;
    border-radius: 16px;
    margin-top: 24px;
  }
}
.blog-faq__title {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.3;
  color: #0A2A43;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.blog-faq__title::before {
  content: "❓";
  font-size: 24px;
}
.blog-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.blog-faq__item {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.blog-faq__item:hover {
  border-color: rgba(22, 101, 216, 0.3);
}
.blog-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: #F9FAFB;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #0A2A43;
  line-height: 1.4;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-faq__question:hover {
  background: rgba(22, 101, 216, 0.06);
}
.blog-faq__question::after {
  content: "+";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ffffff;
  color: #1665D8;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.blog-faq__question[aria-expanded=true]::after {
  content: "−";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.blog-faq__answer {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
}
.blog-faq__answer p {
  margin: 0;
}
.blog-faq__answer p:not(:last-child) {
  margin-bottom: 12px;
}
.blog-faq__answer a {
  color: #1665D8;
  font-weight: 600;
}

.contacts-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .contacts-hero {
    padding: 100px 0 60px;
  }
}
.contacts-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contacts-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 50%, #0A2A43 100%);
}
.contacts-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contacts-hero__container {
  position: relative;
  z-index: 1;
}
.contacts-hero__content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding-top: 40px;
}
.contacts-hero__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
}
.contacts-hero__badge svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
}
.contacts-hero__brand {
  background: -webkit-gradient(linear, left top, right top, from(#60A5FA), to(#34D399));
  background: linear-gradient(90deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contacts-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .contacts-hero__subtitle {
    font-size: 1rem;
  }
}

.contacts-hero .breadcrumbs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
.contacts-hero .breadcrumbs__link {
  color: rgba(255, 255, 255, 0.7);
}
.contacts-hero .breadcrumbs__link:hover {
  color: #fff;
}
.contacts-hero .breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.4);
}
.contacts-hero .breadcrumbs__current {
  color: #fff;
}

.contacts-methods {
  padding: 80px 0;
  background: #F8FAFC;
}
@media (max-width: 1023px) {
  .contacts-methods {
    padding: 60px 0;
  }
}
.contacts-methods__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .contacts-methods__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contacts-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.contacts-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .contacts-card {
    padding: 32px 24px;
  }
}
.contacts-card__icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.contacts-card__icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.15;
}
.contacts-card__icon-wrapper svg {
  position: relative;
  z-index: 1;
}
.contacts-card__icon-wrapper--ai {
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: #1665D8;
}
.contacts-card__icon-wrapper--ai::before {
  background: linear-gradient(135deg, #1665D8 0%, #22C55E 100%);
}
.contacts-card__icon-wrapper--email {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  color: #F59E0B;
}
.contacts-card__icon-wrapper--email::before {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}
.contacts-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #fff;
}
.contacts-card__badge--secondary {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}
.contacts-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
  line-height: 1.3;
}
.contacts-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748B;
  margin: 0 0 24px;
}
.contacts-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.contacts-card__features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1E293B;
}
.contacts-card__features li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #22C55E;
}
.contacts-card__email-box {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}
.contacts-card__email-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.contacts-card__email-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1665D8;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.contacts-card__email-link:hover {
  color: #0A2A43;
  text-decoration: underline;
}
.contacts-card__topics {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 767px) {
  .contacts-card__topics {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contacts-card__topics li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748B;
}
.contacts-card__topics li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #1665D8;
  opacity: 0.7;
}
.contacts-card__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.contacts-card__btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts-card__btn--primary {
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.25);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.25);
}
.contacts-card__btn--primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(22, 101, 216, 0.35);
          box-shadow: 0 8px 24px rgba(22, 101, 216, 0.35);
}
.contacts-card__btn--secondary {
  background: #F8FAFC;
  color: #1E293B;
  border: 2px solid #E2E8F0;
}
.contacts-card__btn--secondary:hover {
  background: #fff;
  border-color: #1665D8;
  color: #1665D8;
}

.contacts-faq {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  .contacts-faq {
    padding: 60px 0;
  }
}
.contacts-faq__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.contacts-faq__label {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1665D8;
  background: rgba(22, 101, 216, 0.08);
  border-radius: 100px;
  margin-bottom: 16px;
}
.contacts-faq__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 16px;
  line-height: 1.3;
}
.contacts-faq__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748B;
  margin: 0;
}
.contacts-faq__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.contacts-faq__item {
  background: #F8FAFC;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.contacts-faq__item:hover {
  background: #F1F5F9;
}
.contacts-faq__item[open] {
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.contacts-faq__item[open] .contacts-faq__question svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contacts-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  list-style: none;
}
.contacts-faq__question::-webkit-details-marker {
  display: none;
}
.contacts-faq__question span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contacts-faq__question svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #64748B;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.contacts-faq__answer {
  padding: 0 24px 20px;
}
.contacts-faq__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748B;
  margin: 0;
}

.contacts-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 50%, #0A2A43 100%);
  position: relative;
  overflow: hidden;
}
.contacts-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 1023px) {
  .contacts-cta {
    padding: 60px 0;
  }
}
.contacts-cta__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contacts-cta__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
.contacts-cta__icon svg {
  opacity: 0.9;
}
.contacts-cta__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}
.contacts-cta__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}
.contacts-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contacts-cta__buttons .btn {
  min-width: 200px;
}
@media (max-width: 767px) {
  .contacts-cta__buttons .btn {
    min-width: 100%;
  }
}
.contacts-cta__buttons .btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.contacts-cta__buttons .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.contacts-page {
  background: #fff;
}

.legal-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .legal-hero {
    padding: 100px 0 50px;
  }
}
.legal-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.legal-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A2A43 0%, #1665D8 100%);
}
.legal-hero__container {
  position: relative;
  z-index: 1;
}
.legal-hero__content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding-top: 32px;
}
.legal-hero__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
.legal-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}
.legal-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.legal-hero .breadcrumbs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
.legal-hero .breadcrumbs__link {
  color: rgba(255, 255, 255, 0.7);
}
.legal-hero .breadcrumbs__link:hover {
  color: #fff;
}
.legal-hero .breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.4);
}
.legal-hero .breadcrumbs__current {
  color: #fff;
}

.legal-content {
  padding: 60px 0 80px;
  background: #fff;
}
@media (max-width: 1023px) {
  .legal-content {
    padding: 40px 0 60px;
  }
}
.legal-content__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 1fr;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .legal-content__wrapper {
    -ms-grid-columns: 220px 1fr;
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
}
@media (max-width: 1023px) {
  .legal-content__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .legal-toc {
    display: none;
  }
}
.legal-toc__sticky {
  position: sticky;
  top: 100px;
}
.legal-toc__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
  margin: 0 0 16px;
}
.legal-toc__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.legal-toc__link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  border-radius: 8px;
  border-left: 2px solid transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.legal-toc__link:hover {
  color: #1665D8;
  background: rgba(22, 101, 216, 0.05);
  border-left-color: rgba(22, 101, 216, 0.3);
}
.legal-toc__link.active {
  color: #1665D8;
  background: rgba(22, 101, 216, 0.08);
  border-left-color: #1665D8;
  font-weight: 500;
}

.legal-article {
  max-width: 720px;
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E2E8F0;
  line-height: 1.3;
}
.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F172A;
  margin: 28px 0 12px;
  line-height: 1.4;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: #1E293B;
  margin: 0 0 16px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul, .legal-section ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.legal-section ul li, .legal-section ol li {
  font-size: 1rem;
  line-height: 1.75;
  color: #1E293B;
  margin-bottom: 8px;
}
.legal-section ul li strong, .legal-section ol li strong {
  color: #0F172A;
}
.legal-section a {
  color: #1665D8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover {
  text-decoration: none;
}

.legal-highlight {
  padding: 20px 24px;
  background: #F8FAFC;
  border-left: 4px solid #1665D8;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.legal-highlight strong {
  color: #0F172A;
  display: block;
  margin-bottom: 4px;
}
.legal-highlight--info {
  background: rgba(59, 130, 246, 0.08);
  border-left-color: #3B82F6;
}
.legal-highlight--warning {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: #F59E0B;
}
.legal-highlight--danger {
  background: rgba(239, 68, 68, 0.08);
  border-left-color: #EF4444;
}

.legal-list-negative {
  background: rgba(239, 68, 68, 0.05);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.legal-list-negative ul {
  margin: 0;
  padding-left: 20px;
}
.legal-list-negative ul li {
  color: #64748B;
}
.legal-list-negative ul li::marker {
  color: #EF4444;
}

.legal-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}
.legal-table thead {
  background: #F8FAFC;
}
.legal-table thead th {
  font-weight: 600;
  color: #0F172A;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-table tbody tr:last-child td {
  border-bottom: none;
}
.legal-table tbody tr:hover {
  background: #F8FAFC;
}
.legal-table td {
  color: #1E293B;
}
.legal-table td strong {
  color: #0F172A;
}

.legal-rights-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .legal-rights-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.legal-right {
  padding: 20px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.legal-right:hover {
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.legal-right__icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.legal-right h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 8px;
}
.legal-right p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

.legal-contact-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.legal-contact-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
}
.legal-contact-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-contact-card__row:first-child {
  padding-top: 0;
}
.legal-contact-card__label {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  min-width: 150px;
}
@media (max-width: 767px) {
  .legal-contact-card__label {
    min-width: 120px;
  }
}
.legal-contact-card__value {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}
.legal-contact-card__value a {
  color: #1665D8;
  text-decoration: none;
}
.legal-contact-card__value a:hover {
  text-decoration: underline;
}

.legal-definitions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.legal-definition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: #F8FAFC;
  border-radius: 12px;
  border-left: 3px solid #1665D8;
}
@media (max-width: 767px) {
  .legal-definition {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.legal-definition dt {
  font-weight: 600;
  color: #0F172A;
  min-width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .legal-definition dt {
    min-width: auto;
  }
}
.legal-definition dd {
  margin: 0;
  color: #64748B;
  line-height: 1.6;
}

.legal-list--numbered {
  counter-reset: none;
}
.legal-list--numbered li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.legal-list--numbered li svg {
  display: none;
}
.legal-list--numbered .legal-list__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #1665D8 0%, #0A2A43 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.legal-page {
  background: #fff;
}

.categories {
  padding: 48px 0;
  background: #EEF3F8;
}
@media (max-width: 767px) {
  .categories {
    padding: 32px 0;
  }
}
.categories__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .categories__grid {
    gap: 8px;
  }
}

.category-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  color: #1C1C1C;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-badge svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke: #1665D8;
}
.category-badge:hover {
  background: #EEF3F8;
  border-color: #1665D8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(22, 101, 216, 0.15);
          box-shadow: 0 4px 12px rgba(22, 101, 216, 0.15);
}
@media (max-width: 767px) {
  .category-badge {
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
  }
  .category-badge svg {
    width: 16px;
    height: 16px;
  }
}

.category-hero {
  position: relative;
  padding: 60px 0 48px;
  background: linear-gradient(135deg, #0A2A43 0%, #0D3558 100%);
  overflow: hidden;
}
@media (max-width: 1023px) {
  .category-hero {
    padding: 48px 0 40px;
  }
}
@media (max-width: 767px) {
  .category-hero {
    padding: 40px 0 32px;
  }
}
.category-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 101, 216, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.category-hero .breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
}
.category-hero .breadcrumbs__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.category-hero .breadcrumbs__link:hover {
  color: #fff;
}
.category-hero .breadcrumbs__separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}
.category-hero .breadcrumbs__current {
  color: rgba(255, 255, 255, 0.9);
}
.category-hero__content {
  max-width: 720px;
}
.category-hero__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 20px;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 100px;
  color: #81C784;
  font-size: 14px;
  font-weight: 500;
}
.category-hero__badge svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.category-hero__title {
  margin: 0 0 20px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 1023px) {
  .category-hero__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .category-hero__title {
    font-size: 26px;
  }
}
.category-hero__title .accent {
  color: #4CAF50;
}
.category-hero__subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767px) {
  .category-hero__subtitle {
    font-size: 16px;
  }
}
.category-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 767px) {
  .category-hero__stats {
    gap: 20px;
  }
}
.category-hero__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.category-hero__stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .category-hero__stat-value {
    font-size: 22px;
  }
}
.category-hero__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.category-guide {
  padding: 64px 0;
  background: #f8f9fa;
}
@media (max-width: 767px) {
  .category-guide {
    padding: 48px 0;
  }
}
.category-guide__title {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .category-guide__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.category-guide__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .category-guide__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .category-guide__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.category-guide__card {
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.category-guide__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.category-guide__card-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.1) 0%, rgba(22, 101, 216, 0.05) 100%);
  border-radius: 12px;
  color: #1665D8;
}
.category-guide__card-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
}
.category-guide__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
}

.category-faq {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .category-faq {
    padding: 48px 0;
  }
}
.category-faq__title {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .category-faq__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.category-faq .faq {
  max-width: 800px;
  margin: 0 auto;
}

.category-links {
  padding: 64px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f9fa), to(#fff));
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
@media (max-width: 767px) {
  .category-links {
    padding: 48px 0;
  }
}
.category-links__title {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #1C1C1C;
}
@media (max-width: 767px) {
  .category-links__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.category-links__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .category-links__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .category-links__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.category-links__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.category-links__card:hover {
  border-color: #1665D8;
  -webkit-box-shadow: 0 4px 16px rgba(22, 101, 216, 0.1);
          box-shadow: 0 4px 16px rgba(22, 101, 216, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.category-links__card:hover svg {
  color: #1665D8;
}
.category-links__card svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.category-links__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.category-links__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
}
.category-links__card-desc {
  font-size: 13px;
  color: #6B7280;
}

.breadcrumbs {
  margin-bottom: 1.5rem;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary, #6b7280);
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__item::after {
  content: "/";
  color: var(--text-muted, #9ca3af);
}
.breadcrumbs__item:last-child::after {
  display: none;
}
.breadcrumbs__item--current {
  color: var(--text-primary, #111827);
  font-weight: 500;
}
.breadcrumbs__item a {
  color: var(--primary, #2563eb);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.breadcrumbs__item a:hover {
  color: var(--primary-dark, #1d4ed8);
  text-decoration: underline;
}

.facet-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary, #f9fafb);
  border-radius: 12px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .facet-filters {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
}
.facet-filters__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .facet-filters__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
  }
}
.facet-filters__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary, #6b7280);
  white-space: nowrap;
}
.facet-filters__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.facet-filters__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary, #111827);
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.facet-filters__btn:hover {
  border-color: var(--primary, #2563eb);
  color: var(--primary, #2563eb);
  background: var(--primary-light, #eff6ff);
}
.facet-filters__btn--active {
  background: var(--primary, #2563eb);
  color: white;
  border-color: var(--primary, #2563eb);
}
.facet-filters__btn--active:hover {
  background: var(--primary-dark, #1d4ed8);
  border-color: var(--primary-dark, #1d4ed8);
  color: white;
}

.mfo-list__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--success-light, #ecfdf5);
  border-radius: 8px;
  border-left: 4px solid var(--success, #10b981);
}
.mfo-list__count-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success, #10b981);
}
.mfo-list__count-text {
  font-size: 0.875rem;
  color: var(--text-secondary, #6b7280);
}

.facet-guide {
  padding: 2rem 0;
}
.facet-guide__container {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .facet-guide__container {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
.facet-guide__intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary, #111827);
  margin: 0;
}
.facet-guide__tips {
  padding: 1.5rem;
  background: var(--bg-secondary, #f9fafb);
  border-radius: 12px;
  border-left: 4px solid var(--primary, #2563eb);
}
.facet-guide__tips h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary, #2563eb);
  margin: 0 0 1rem;
}
.facet-guide__tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.facet-guide__tips ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary, #4b5563);
}
.facet-guide__tips ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success, #10b981);
  font-weight: 600;
}
.facet-guide__tips ul li:last-child {
  margin-bottom: 0;
}

.related-facets {
  padding: 3rem 0;
  background: var(--bg-secondary, #f9fafb);
}
.related-facets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.related-facets__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin: 0 0 1.5rem;
  text-align: center;
}
.related-facets__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}

.facet-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary, #111827);
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.facet-link:hover {
  border-color: var(--primary, #2563eb);
  color: var(--primary, #2563eb);
  background: var(--primary-light, #eff6ff);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section {
  padding: 3rem 0;
}
.faq-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.faq-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin: 0 0 2rem;
  text-align: center;
}
.faq-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.faq-item:hover {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.faq-item__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary, #111827);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.faq-item__question:hover {
  background: var(--bg-secondary, #f9fafb);
}
.faq-item__question[aria-expanded=true] {
  background: var(--bg-secondary, #f9fafb);
}
.faq-item__question[aria-expanded=true] .faq-item__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-item__question h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.faq-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1rem;
  color: var(--text-secondary, #6b7280);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-item__answer[hidden] {
  display: none;
}
.faq-item__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary, #4b5563);
}

.mfo-list--facet .mfo-list__header {
  margin-bottom: 1.5rem;
}
.mfo-list--facet .mfo-list__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-primary, #111827);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.mfo-list--facet .mfo-list__subtitle {
  font-size: 1rem;
  color: var(--text-secondary, #6b7280);
  margin: 0;
  line-height: 1.5;
}
.mfo-list--facet .mfo-list__grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .mfo-list--facet .mfo-list__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mfo-list--facet .mfo-list__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 639px) {
  .facet-filters {
    padding: 1rem;
  }
  .facet-filters__btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  .mfo-list__count {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.25rem;
  }
  .facet-guide__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .related-facets__links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .facet-link {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}
.facet-quick-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.facet-quick-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary, #2563eb);
  background: var(--primary-light, #eff6ff);
  border: 1px solid var(--primary, #2563eb);
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.facet-quick-link:hover {
  background: var(--primary, #2563eb);
  color: white;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
          box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.footer {
  padding: 60px 0 32px;
  background: #0A2A43;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .footer {
    padding: 48px 0 24px;
  }
}
.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3fr;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1023px) {
  .footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .footer__top {
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
.footer__brand {
  max-width: 360px;
}
.footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__logo svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__description {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background: #1665D8;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}
.footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1023px) {
  .footer__nav {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.footer__nav-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-list li {
  margin-bottom: 12px;
}
.footer__nav-list li:last-child {
  margin-bottom: 0;
}
.footer__nav-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__nav-list a:hover {
  color: #1665D8;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (max-width: 1023px) {
  .footer__bottom {
    gap: 12px;
  }
}
.footer__copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__disclaimer {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 800px;
  margin: 0 auto;
}