:root {
  --front-navy: #071827;
  --front-navy-soft: #0d2538;
  --front-blue: #2f80ed;
  --front-cyan: #43c7d2;
  --front-bg: #f5f7fa;
  --front-surface: #ffffff;
  --front-border: #dfe6ed;
  --front-text: #183044;
  --front-muted: #66798a;
  --front-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.tn-front {
  margin: 0;
  overflow-x: hidden;
  background: var(--front-bg);
  color: var(--front-text);
  font-family: var(--front-font);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tn-front *,
.tn-front *::before,
.tn-front *::after {
  box-sizing: border-box;
}

.tn-front h1,
.tn-front h2,
.tn-front h3,
.tn-front h4,
.tn-front h5,
.tn-front h6,
.tn-front button,
.tn-front input,
.tn-front select,
.tn-front textarea,
.tn-front a {
  font-family: var(--front-font);
}

.tn-front h1,
.tn-front h2,
.tn-front h3,
.tn-front h4,
.tn-front h5,
.tn-front h6 {
  color: var(--front-navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.tn-front p {
  color: var(--front-muted);
}

.tn-front .container {
  position: relative;
}

.tn-front .padding-top {
  padding-top: 96px;
}

.tn-front .padding-bottom {
  padding-bottom: 96px;
}

.tn-front .bg-color {
  background: #f1f5f8 !important;
}

/* Header */
.tn-front .header-section--style3 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background: transparent;
}

.tn-front .header-section--style3 .header-bottom {
  padding-top: 18px;
}

.tn-front .header-section--style3 .header-wrapper {
  min-height: 70px;
  gap: 12px;
  padding: 9px 12px 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(7, 24, 39, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tn-front .header-section.header-fixed .header-bottom {
  padding: 8px 0;
  background: rgba(7, 24, 39, 0.94);
  box-shadow: 0 8px 24px rgba(7, 24, 39, 0.14);
  backdrop-filter: blur(14px);
}

.tn-front .header-section.header-fixed .header-wrapper {
  min-height: 60px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.tn-front .header-wrapper .logo img {
  width: 174px;
  max-height: 45px;
  object-fit: contain;
}

.tn-front .header-wrapper > .menu-area {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.front-header-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.tn-front .menu--style2 > li > a {
  position: relative;
  padding: 15px 13px !important;
  color: #d9e3eb !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.tn-front .menu--style2 > li > a::after {
  position: absolute;
  right: 13px;
  bottom: 8px;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--front-cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.2s ease;
}

.tn-front .menu--style2 > li:hover > a::after,
.tn-front .menu--style2 > li > a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.tn-front .menu li .submenu {
  min-width: 205px !important;
  padding: 8px !important;
  border: 1px solid var(--front-border) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 16px 36px rgba(7, 24, 39, 0.14) !important;
}

.tn-front .menu li .submenu li a {
  padding: 10px 11px !important;
  border-radius: 8px;
  color: #365064 !important;
  font-size: 12px;
  font-weight: 500;
}

.tn-front .menu li .submenu li a:hover {
  color: var(--front-blue) !important;
  background: #f0f6fd !important;
}

.tn-front .header-btn .trk-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
}

.tn-front .header-btn .trk-btn:hover {
  border-color: rgba(67, 199, 210, 0.65) !important;
  background: rgba(67, 199, 210, 0.12) !important;
}

.front-language {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.front-language__trigger {
  display: inline-flex;
  min-width: 67px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: 0.2s ease;
}

.front-language__trigger:hover,
.front-language__trigger[aria-expanded="true"] {
  border-color: rgba(67, 199, 210, 0.55);
  background: rgba(67, 199, 210, 0.1);
}

.front-language__flag {
  font-size: 17px;
  line-height: 1;
}

.front-language__code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.front-language__trigger i {
  font-size: 8px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.front-language__trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.front-language__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1001;
  width: 206px;
  padding: 8px;
  border: 1px solid var(--front-border);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 24, 39, 0.18);
}

.front-language__menu[hidden] {
  display: none !important;
}

.front-language__title {
  display: block;
  padding: 5px 9px 7px;
  color: #8493a0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.front-language__option {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #334d61;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  transition: 0.18s ease;
}

.front-language__option i {
  margin-left: auto;
  color: var(--front-blue);
  font-size: 10px;
}

.front-language__option:hover,
.front-language__option.is-active {
  color: var(--front-blue);
  background: #eef5fd;
}

.front-header-auth {
  align-items: center;
  gap: 7px;
}

.front-header-auth a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s ease;
}

.front-header-auth a i {
  font-size: 10px;
}

.front-header-auth__signup {
  background: rgba(255, 255, 255, 0.065);
}

.front-header-auth__signup:hover {
  border-color: rgba(67, 199, 210, 0.55);
  color: #fff;
  background: rgba(67, 199, 210, 0.12);
}

.front-header-auth__login {
  border-color: #43c7d2 !important;
  color: #092237 !important;
  background: #6ed7df;
  box-shadow: 0 8px 20px rgba(67, 199, 210, 0.15);
}

.front-header-auth__login:hover {
  color: #071827 !important;
  background: #87e0e6;
  transform: translateY(-1px);
}

.tn-front .header-bar {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.tn-front .header-bar span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  transform-origin: center;
}

.tn-front .header-bar span:first-child {
  top: 13px;
}

.tn-front .header-bar span:nth-child(2) {
  top: 20px;
  transform: translateX(-50%);
}

.tn-front .header-bar span:last-child {
  top: 27px;
  bottom: auto;
}

.tn-front .header-bar:hover,
.tn-front .header-bar:focus-visible {
  border-color: rgba(67, 199, 210, 0.55);
  background: rgba(67, 199, 210, 0.12);
}

.tn-front .header-bar.active span:first-child {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.tn-front .header-bar.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.tn-front .header-bar.active span:last-child {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Hero */
.tn-front .banner--style1 {
  position: relative;
  min-height: 824px;
  padding: 212px 0 86px;
  overflow: hidden;
  background-position: center !important;
  background-size: cover !important;
}

.tn-front .banner--style1::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 33, 0.98) 0%, rgba(7, 30, 48, 0.94) 48%, rgba(8, 39, 57, 0.72) 100%);
  content: "";
}

.tn-front .banner--style1::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.75));
}

.tn-front .banner--style1 .banner__bg,
.tn-front .banner--style1 .banner__shape {
  opacity: 0.18;
  pointer-events: none;
}

.tn-front .banner--style1 .banner__wrapper {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .tn-front .banner--style1 .banner__wrapper > .row {
    min-height: 500px;
    align-items: center !important;
  }
}

.front-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(111, 213, 221, 0.25);
  border-radius: 999px;
  color: #8bdce2;
  background: rgba(67, 199, 210, 0.07);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.front-hero-eyebrow i {
  font-size: 10px;
}

.tn-front .banner__content-coin {
  display: none;
}

.tn-front .banner__content-heading {
  max-width: 630px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tn-front .banner__content-heading span {
  display: block;
  margin-top: 8px;
  color: #64cbd4;
  font-size: 0.72em;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.tn-front .front-hero-description,
.tn-front .banner__content > p {
  max-width: 600px;
  margin: 22px 0 0;
  color: #bdcbd6 !important;
  font-size: 16px;
  line-height: 1.72;
}

.tn-front .banner__btn-group {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.tn-front .banner__btn-group .trk-btn {
  min-width: 188px;
  min-height: 52px;
  padding: 0 10px 0 19px !important;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #fff !important;
  background: var(--front-blue);
  box-shadow: 0 10px 22px rgba(47, 128, 237, 0.22);
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s ease;
}

.tn-front .banner__btn-group .trk-btn:hover {
  background: #2474df;
  transform: translateY(-1px);
}

.tn-front .banner__btn-group .trk-btn--arrow > span {
  width: 32px;
  height: 32px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.tn-front .banner__btn-group .front-btn-secondary {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(5, 24, 39, 0.45) !important;
  box-shadow: none;
}

.tn-front .banner__btn-group .front-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.38) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.front-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 27px;
  color: #b5c4cf;
  font-size: 11px;
}

.front-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.front-hero-trust i {
  color: #62cbd4;
  font-size: 11px;
}

.front-hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.front-hero-visual__halo {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(91, 198, 221, 0.15);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(55, 159, 226, 0.2) 0%, rgba(35, 118, 175, 0.08) 46%, transparent 70%);
  box-shadow: inset 0 0 80px rgba(43, 166, 219, 0.08);
}

.front-hero-visual__halo::before,
.front-hero-visual__halo::after {
  position: absolute;
  border: 1px solid rgba(108, 210, 224, 0.1);
  border-radius: 50%;
  content: "";
}

.front-hero-visual__halo::before {
  inset: 42px;
}

.front-hero-visual__halo::after {
  inset: 94px;
}

.tn-front .front-hero-visual .banner__thumb {
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  width: min(100%, 535px);
  max-inline-size: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-phone-float 4.5s ease-in-out infinite alternate !important;
}

.tn-front .front-hero-visual .banner__thumb::before {
  display: none;
}

.tn-front .front-hero-visual .banner__thumb img {
  width: 100%;
  max-width: 535px;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.32));
}

.front-hero-market-card {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 174px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  background: rgba(7, 31, 50, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.front-hero-market-card--platform {
  top: 95px;
  left: 3px;
}

.front-hero-market-card--products {
  right: -4px;
  bottom: 85px;
}

.front-hero-market-card__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #7be0e6;
  background: rgba(66, 197, 210, 0.13);
}

.front-hero-market-card__icon i {
  font-size: 13px;
}

.front-hero-market-card div {
  display: flex;
  flex-direction: column;
}

.front-hero-market-card small {
  color: #91a9b8;
  font-size: 8px;
  line-height: 1.2;
}

.front-hero-market-card strong {
  margin-top: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes hero-phone-float {
  from { transform: translateY(5px); }
  to { transform: translateY(-8px); }
}

/* Shared sections */
.tn-front .partner--gradient {
  position: relative;
  z-index: 3;
  margin: 0;
  border-bottom: 1px solid var(--front-border);
  background: #fff !important;
}

.tn-front .partner--gradient::before,
.tn-front .partner--gradient::after {
  display: none;
}

.tn-front .partner__wrapper {
  padding: 19px 0;
}

.tn-front .partner__item-inner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  opacity: 1;
  filter: none;
  transition: 0.2s ease;
}

.tn-front .partner__item-inner:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
}

.tn-front .partner__item-inner img {
  width: auto;
  max-height: 40px;
  object-fit: contain;
  opacity: 1 !important;
  filter: saturate(1.45) contrast(1.1) brightness(1.03) !important;
  transition: filter .22s ease, transform .22s ease;
}

.tn-front .partner__item-inner:hover img {
  filter: saturate(1.7) contrast(1.13) brightness(1.05) !important;
  transform: scale(1.035);
}

.tn-front .section-header {
  margin-bottom: 44px;
}

.tn-front .section-header h2,
.tn-front .about__content h2 {
  color: var(--front-navy);
  font-size: clamp(30px, 3.5vw, 43px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.tn-front .section-header h2 span,
.tn-front .about__content h2 span {
  color: var(--front-blue);
}

.tn-front .section-header p,
.tn-front .about__content p {
  color: var(--front-muted);
  font-size: 15px;
  line-height: 1.75;
}

.tn-front .about {
  padding: 104px 0 92px;
  background: #fff;
}

.tn-front .about__thumb-image {
  padding: 12px;
  border: 1px solid var(--front-border);
  border-radius: 18px;
  background: #f4f7f9;
  box-shadow: 0 15px 36px rgba(20, 48, 68, 0.07);
}

.tn-front .about__thumb-image img {
  border-radius: 13px;
}

.tn-front .about__content-inner .trk-btn {
  margin-top: 26px;
}

.tn-front .trk-btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px !important;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: 0.2s ease;
}

.tn-front .trk-btn::after {
  display: none !important;
}

.tn-front .trk-btn svg,
.tn-front .trk-btn i {
  flex: 0 0 auto;
  font-size: 13px;
}

.tn-front .trk-btn--primary {
  border-color: var(--front-blue) !important;
  color: #fff !important;
  background: var(--front-blue);
  box-shadow: 0 8px 18px rgba(47, 128, 237, 0.17);
}

.tn-front .trk-btn--primary:hover,
.tn-front .trk-btn--primary.active {
  border-color: #2474df !important;
  color: #fff !important;
  background: #2474df;
  box-shadow: 0 11px 22px rgba(47, 128, 237, 0.23);
  transform: translateY(-1px);
}

.tn-front .trk-btn--border {
  border: 1px solid #cbd8e2 !important;
  color: var(--front-blue);
  background: #fff;
  box-shadow: none;
}

.tn-front .trk-btn--border:hover {
  border-color: var(--front-blue) !important;
  color: #fff;
  background: var(--front-blue);
  transform: translateY(-1px);
}

.tn-front .trk-btn--primary.trk-btn--border {
  border-color: var(--front-blue) !important;
  color: #fff !important;
  background: var(--front-blue);
}

.tn-front .trk-btn--outline {
  border: 1px solid #c8d8e5;
  color: var(--front-blue);
  background: #fff;
}

.tn-front .trk-btn--outline:hover {
  border-color: var(--front-blue);
  color: #fff;
  background: var(--front-blue);
  transform: translateY(-1px);
}

.tn-front .feature--style1 {
  background: #f2f5f8 !important;
}

.tn-front .feature--style1 .feature__wrapper {
  padding: 28px;
  border: 1px solid var(--front-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 48, 68, 0.055);
}

.tn-front .nav--feature {
  gap: 8px;
}

.tn-front .nav--feature .nav-link {
  margin: 0 !important;
  padding: 13px 15px !important;
  border: 1px solid #e1e8ee !important;
  border-radius: 10px !important;
  color: #40576a;
  background: #f8fafb !important;
  box-shadow: none !important;
  transition: 0.18s ease;
}

.tn-front .nav--feature .nav-link.active,
.tn-front .nav--feature .nav-link:hover {
  border-color: #c9dbea !important;
  color: #164f80 !important;
  background: #edf5fc !important;
  transform: none;
}

.tn-front .feature__image {
  padding: 13px;
  border-radius: 16px;
  background: #eef3f6;
}

.tn-front .feature__image > img {
  border-radius: 12px;
}

.tn-front .floating-content__item {
  border: 1px solid rgba(220, 229, 236, 0.95);
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 12px 28px rgba(20, 48, 68, 0.1) !important;
}

/* Cards */
.tn-front .service {
  background: #fff;
}

.tn-front .service__item-inner {
  height: 100%;
  padding: 31px 25px;
  border: 1px solid var(--front-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 48, 68, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tn-front .service__item-inner:hover {
  border-color: #bed1df;
  box-shadow: 0 13px 30px rgba(20, 48, 68, 0.075);
}

.tn-front .service__thumb-inner {
  width: 66px;
  height: 66px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid #dce9f3;
  border-radius: 15px;
  background: #eff6fc;
}

.tn-front .service__thumb-inner img {
  max-width: 37px;
  max-height: 37px;
}

.tn-front .service__content h5 a {
  color: var(--front-navy);
  font-weight: 600;
}

.tn-front .service__content p {
  color: var(--front-muted);
  font-size: 13px;
  line-height: 1.7;
}

.front-section-cta {
  display: inline-flex !important;
  margin-top: 20px;
}

.tn-front .pricing {
  background: #f2f5f8;
}

.tn-front .pricing__item-inner {
  height: 100%;
  padding: 6px;
  border: 1px solid var(--front-border) !important;
  border-radius: 17px !important;
  background: #fff;
  box-shadow: 0 9px 27px rgba(20, 48, 68, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tn-front .pricing__item-inner:hover,
.tn-front .pricing__item-inner.active {
  border-color: #8eb9dc !important;
  box-shadow: 0 15px 34px rgba(20, 48, 68, 0.09);
  transform: none;
}

.tn-front .pricing__item-content {
  padding: 25px;
}

.tn-front .pricing__item-top {
  padding-bottom: 19px;
  border-bottom: 1px solid #e7edf2;
}

.tn-front .pricing__item-top h6 {
  color: var(--front-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tn-front .pricing__item-top h3 {
  color: var(--front-navy);
  font-weight: 700;
}

.tn-front .pricing__list-item {
  color: #5c7081;
  font-size: 13px;
}

.tn-front .pricing__item-bottom .trk-btn {
  width: 100%;
  min-height: 45px;
}

.tn-front .testimonial {
  background: #fff !important;
}

.tn-front .testimonial__item-inner {
  border: 1px solid var(--front-border);
  border-radius: 15px !important;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 48, 68, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tn-front .testimonial__item-inner:hover {
  border-color: #c8d7e2;
  box-shadow: 0 13px 30px rgba(20, 48, 68, 0.075);
  transform: none;
}

.tn-front .testimonial__item-content > p {
  color: #53687a;
  font-size: 14px;
  line-height: 1.75;
}

.tn-front .testimonial__author-thumb img {
  border: 3px solid #e6eef4;
  border-radius: 11px;
}

.tn-front .swiper-nav__btn {
  width: 42px;
  height: 42px;
  border: 1px solid #d5e0e8;
  border-radius: 10px;
  background: #fff;
}

.tn-front .swiper-nav__btn.active,
.tn-front .swiper-nav__btn:hover {
  border-color: var(--front-blue);
  background: var(--front-blue);
}

.tn-front .faq {
  background: #f4f7f9;
}

.tn-front .accordion--style1 .accordion__item {
  margin-bottom: 9px;
  border: 1px solid var(--front-border) !important;
  border-radius: 11px;
  background: #fff;
  overflow: hidden;
}

.tn-front .accordion--style1 .accordion__button {
  padding: 17px 19px;
  color: #2b4458;
  font-size: 14px;
  font-weight: 600;
}

.tn-front .accordion--style1 .accordion__body {
  padding: 0 19px 17px;
  color: var(--front-muted);
}

.tn-front .faq__thumb img {
  border-radius: 18px;
  filter: drop-shadow(0 15px 26px rgba(20, 48, 68, 0.1));
}

.tn-front .page-header {
  position: relative;
  padding-top: 162px;
  padding-bottom: 78px;
  background-position: center;
  background-size: cover;
}

.tn-front .page-header::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 33, 0.96), rgba(8, 45, 64, 0.82));
  content: "";
}

.tn-front .page-header .container {
  position: relative;
  z-index: 1;
}

.tn-front .page-header__content h2 {
  color: #fff;
  font-size: 43px;
  font-weight: 700;
}

.tn-front .page-header .breadcrumb-item,
.tn-front .page-header .breadcrumb-item a {
  color: #c4d2dc;
}

/* Newsletter */
.tn-front .front-newsletter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(47, 128, 237, 0.08), transparent 28%),
    #f1f5f8 !important;
}

.tn-front .front-newsletter .cta__newsletter,
.tn-front .front-newsletter .cta__newsletter-inner {
  width: 100%;
}

.tn-front .front-newsletter .cta__newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  gap: 0;
  max-width: 1120px;
  min-height: 410px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 16%, rgba(67, 199, 210, 0.16), transparent 31%),
    linear-gradient(135deg, #071827 0%, #0a2940 62%, #0c3550 100%);
  box-shadow: 0 28px 70px rgba(7, 24, 39, 0.18);
}

.tn-front .front-newsletter .cta__newsletter-inner::after {
  position: absolute;
  right: -85px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 52px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.tn-front .front-newsletter .cta__thumb {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding: 42px 24px 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(3, 17, 29, 0.2);
}

.tn-front .front-newsletter .cta__thumb::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(67, 199, 210, 0.18);
  border-radius: 50%;
  background: rgba(67, 199, 210, 0.06);
  content: "";
  transform: translate(-50%, -44%);
}

.tn-front .front-newsletter .cta__thumb::after,
.tn-front .front-newsletter .cta__shape {
  display: none !important;
}

.tn-front .front-newsletter .cta__thumb img {
  position: relative;
  z-index: 1;
  width: min(100%, 345px);
  max-height: 360px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.25));
}

.front-newsletter__visual-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  color: #c8dce7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.front-newsletter__visual-label i {
  color: #6ed7df;
}

.tn-front .front-newsletter .cta__subscribe {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 56px clamp(34px, 5vw, 70px);
}

.front-newsletter__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #77d8df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tn-front .front-newsletter .cta__subscribe h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tn-front .front-newsletter .cta__subscribe h2 span {
  color: #fff;
}

.tn-front .front-newsletter .cta__subscribe p {
  max-width: 590px;
  margin: 18px 0 25px;
  color: #a9bfcc;
  font-size: 14px;
  line-height: 1.72;
}

.tn-front .front-newsletter .cta-form {
  width: 100%;
  max-width: 610px;
}

.tn-front .front-newsletter .cta-form__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.front-newsletter__input {
  position: relative;
}

.front-newsletter__input > i {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 2;
  color: #668092;
  font-size: 13px;
  transform: translateY(-50%);
  pointer-events: none;
}

.tn-front .front-newsletter .cta-form .form-control {
  width: 100%;
  height: 54px;
  margin: 0 !important;
  padding: 0 18px 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: #183044;
  background: #fff;
  box-shadow: none;
  font-size: 13px;
}

.tn-front .front-newsletter .cta-form .form-control:focus {
  border-color: #62d1da;
  box-shadow: 0 0 0 4px rgba(67, 199, 210, 0.12);
}

.tn-front .front-newsletter .cta-form .trk-btn {
  display: inline-flex;
  min-width: 130px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 0;
  border-radius: 12px;
  color: #082033;
  background: #6ed7df;
  box-shadow: none;
  font-size: 12px;
  font-weight: 750;
}

.tn-front .front-newsletter .cta-form .trk-btn::after {
  display: none;
}

.tn-front .front-newsletter .cta-form .trk-btn:hover {
  color: #071827;
  background: #8be2e8;
  transform: translateY(-1px);
}

.front-newsletter__note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #7894a5;
  font-size: 10px;
}

.front-newsletter__note i {
  color: #5cbec7;
  font-size: 9px;
}

html[dir="rtl"] .tn-front .front-newsletter .cta__thumb {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

html[dir="rtl"] .front-newsletter__visual-label {
  right: 24px;
  left: auto;
}

html[dir="rtl"] .front-newsletter__input > i {
  right: 17px;
  left: auto;
}

html[dir="rtl"] .tn-front .front-newsletter .cta-form .form-control {
  padding-right: 44px;
  padding-left: 18px;
}

/* Footer */
.front-risk-warning {
  padding: 22px 0;
  border-top: 1px solid #dfe6ed;
  border-bottom: 1px solid #dfe6ed;
  background: #fff;
}

.front-risk-warning--mobile {
  display: none;
}

.front-risk-warning__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
  padding: 17px 20px;
  border: 1px solid #dfe6ed;
  border-left: 4px solid #2f80ed;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 7px 22px rgba(23, 51, 78, 0.045);
}

.front-risk-warning__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #a36908;
  background: #fff0cc;
}

.front-risk-warning__inner p {
  margin: 2px 0 0;
  color: #66798a;
  font-size: 15px;
  line-height: 1.65;
}

.front-risk-warning__inner strong {
  color: #183044;
  font-weight: 800;
}

.front-risk-warning__inner button {
  display: inline;
  padding: 0;
  border: 0;
  color: #2f80ed;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.front-risk-warning__inner button:hover {
  color: #155fbd;
}

.front-risk-dialog {
  width: min(650px, calc(100% - 30px));
  padding: 0;
  border: 1px solid #dfe6ed;
  border-radius: 18px;
  color: #183044;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 24, 39, 0.28);
}

.front-risk-dialog::backdrop {
  background: rgba(7, 24, 39, 0.7);
  backdrop-filter: blur(4px);
}

.front-risk-dialog form {
  padding: 28px;
}

.front-risk-dialog__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #a36908;
  background: #fff0cc;
}

.front-risk-dialog h2 {
  margin: 0 0 12px;
  color: #183044;
  font-size: 25px;
}

.front-risk-dialog p {
  margin: 0;
  color: #66798a;
  font-size: 14px;
  line-height: 1.75;
}

.front-risk-dialog form > button {
  min-height: 43px;
  margin-top: 22px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #2f80ed;
  font-size: 12px;
  font-weight: 700;
}

html[dir="rtl"] .front-risk-warning__inner {
  border-right: 4px solid #2f80ed;
  border-left: 1px solid #dfe6ed;
}

.tn-front .footer {
  position: relative;
  padding-top: 70px;
  background: #071827;
}

@media (max-width: 575px) {
  .front-risk-warning--desktop {
    display: none;
  }

  .front-risk-warning--mobile {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: -1px;
  }

  .front-risk-warning {
    padding: 10px 0;
  }

  .front-risk-warning__inner {
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .front-risk-warning__inner p {
    margin-top: 0;
    font-size: 11px;
    line-height: 1.55;
  }

  .front-risk-warning__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 8px;
  }
}

.front-footer-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 62px;
  padding: 27px 29px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #0e3450;
}

.front-footer-cta::after {
  position: absolute;
  right: -55px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.front-footer-cta > div {
  position: relative;
  z-index: 1;
}

.front-footer-cta > div:first-child > span {
  color: #7fd6dd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.front-footer-cta h3 {
  margin: 5px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.front-footer-cta p {
  margin: 0;
  color: #aec2cf;
  font-size: 12px;
}

.front-footer-cta > div:last-child {
  display: flex;
  flex-shrink: 0;
  gap: 9px;
}

.front-footer-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
}

.front-footer-cta__primary {
  color: #133d56;
  background: #fff;
}

.front-footer-cta__primary:hover {
  color: #133d56;
  background: #f3f8fa;
}

.front-footer-cta__secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.front-footer-cta__secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.tn-front .footer__top {
  padding-top: 0;
}

.tn-front .footer__about-logo img {
  width: 205px;
}

.tn-front .footer__about-moto {
  max-width: 525px;
  color: #91a8b8;
  font-size: 13px;
  line-height: 1.75;
}

.tn-front .footer__about-moto strong {
  display: block;
  margin-bottom: 5px;
  color: #d9e5eb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tn-front .footer__links-tittle h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tn-front .footer__linklist-item a {
  color: #91a8b8;
  font-size: 12px;
}

.tn-front .footer__linklist-item a:hover {
  color: #6ed1d9;
  transform: none;
}

.tn-front .footer__bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tn-front .footer__end {
  padding: 21px 0;
}

.tn-front .footer__end-copyright p {
  color: #738d9e;
  font-size: 11px;
}

/* Right-to-left language */
html[dir="rtl"] .tn-front {
  text-align: right;
}

html[dir="rtl"] .front-language__menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .front-language__option {
  text-align: right;
}

html[dir="rtl"] .front-language__option i {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .tn-front .banner__content,
html[dir="rtl"] .tn-front .about__content,
html[dir="rtl"] .tn-front .section-header {
  text-align: right;
}

html[dir="rtl"] .tn-front .banner__btn-group,
html[dir="rtl"] .front-hero-trust {
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .tn-front .menu--style2 > li > a {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 12px;
  }

  .tn-front .banner__content-heading {
    font-size: 50px;
  }

  .front-hero-visual {
    min-height: 460px;
  }

  .tn-front .front-hero-visual .banner__thumb img {
    max-width: 485px;
  }
}

@media (max-width: 991px) {
  .tn-front .header-section--style3 .header-wrapper {
    border-radius: 13px;
  }

  .tn-front .menu {
    top: 79px !important;
    padding: 12px !important;
    border: 1px solid var(--front-border);
    border-radius: 13px;
    background: #fff !important;
    box-shadow: 0 18px 40px rgba(7, 24, 39, 0.16);
  }

  .tn-front .menu li a {
    color: #334d61 !important;
    border-bottom: 0 !important;
    border-radius: 8px;
  }

  .tn-front .menu li a:hover {
    color: var(--front-blue) !important;
    background: #eef5fc;
  }

  .tn-front .menu li .submenu {
    box-shadow: none !important;
  }

  .tn-front .banner--style1 {
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 82px;
  }

  .tn-front .banner__content-heading {
    font-size: 48px;
  }

  .front-hero-visual {
    max-width: 650px;
    margin: 0 auto;
  }

  .front-hero-market-card--platform {
    left: 55px;
  }

  .front-hero-market-card--products {
    right: 55px;
  }

  .front-footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .tn-front .padding-top {
    padding-top: 74px;
  }

  .tn-front .padding-bottom {
    padding-bottom: 74px;
  }

  .tn-front .header-section--style3 .header-bottom {
    padding-top: 9px;
  }

  .tn-front .header-section--style3 .header-wrapper {
    padding-left: 13px;
  }

  .tn-front .header-wrapper .logo img {
    width: 146px;
  }

  .front-language {
    margin-left: auto;
  }

  html[dir="rtl"] .front-language {
    margin-right: auto;
    margin-left: 7px;
  }

  .tn-front .header-btn {
    display: none !important;
  }

  .tn-front .banner--style1 {
    padding-top: 126px;
    padding-bottom: 72px;
  }

  .tn-front .banner__content {
    text-align: left;
  }

  .tn-front .banner__content-heading {
    font-size: 39px;
    line-height: 1.12;
  }

  .tn-front .front-hero-description,
  .tn-front .banner__content > p {
    font-size: 14px;
  }

  .front-hero-visual {
    min-height: 410px;
  }

  .front-hero-visual__halo {
    width: 360px;
    height: 360px;
  }

  .tn-front .front-hero-visual .banner__thumb img {
    max-width: 430px;
    max-height: 440px;
  }

  .front-hero-market-card--platform {
    top: 80px;
    left: 10px;
  }

  .front-hero-market-card--products {
    right: 10px;
    bottom: 65px;
  }

  .tn-front .about {
    padding: 82px 0 72px;
  }

  .tn-front .feature--style1 .feature__wrapper {
    padding: 17px;
  }

  .tn-front .footer {
    padding-top: 55px;
  }

  .front-footer-cta {
    margin-bottom: 50px;
    padding: 22px;
  }

  .front-footer-cta h3 {
    font-size: 21px;
  }

  .front-footer-cta > div:last-child {
    width: 100%;
    flex-direction: column;
  }

  .front-footer-cta a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .front-language__trigger {
    min-width: 42px;
    width: 42px;
    height: 38px;
    padding: 0;
  }

  .front-language__code,
  .front-language__trigger > i {
    display: none;
  }

  .front-language__menu {
    right: -45px;
  }

  html[dir="rtl"] .front-language__menu {
    right: auto;
    left: -45px;
  }

  .tn-front .header-bar {
    width: 38px;
    height: 38px;
  }

  .tn-front .banner__content-heading {
    font-size: 34px;
  }

  .tn-front .banner__btn-group {
    align-items: stretch;
    flex-direction: column;
  }

  .tn-front .banner__btn-group .trk-btn {
    width: 100%;
    justify-content: center;
  }

  .front-hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .front-hero-visual {
    min-height: 350px;
  }

  .front-hero-visual__halo {
    width: 290px;
    height: 290px;
  }

  .tn-front .front-hero-visual .banner__thumb img {
    max-width: 350px;
    max-height: 365px;
  }

  .front-hero-market-card {
    min-width: 145px;
    padding: 9px 10px;
  }

  .front-hero-market-card--platform {
    top: 55px;
    left: 0;
  }

  .front-hero-market-card--products {
    right: 0;
    bottom: 45px;
  }

  .tn-front .section-header h2,
  .tn-front .about__content h2 {
    font-size: 29px;
  }
}

/* Mobile layout refinement */
@media (max-width: 991px) {
  .tn-front .banner--style1 {
    padding-top: 164px;
  }

  .tn-front .banner--style1 .banner__wrapper > .row {
    row-gap: 38px;
  }

  .tn-front .banner__content {
    max-width: 680px;
  }

  .tn-front .banner__btn-group .trk-btn {
    min-width: 180px;
  }
}

@media (max-width: 767px) {
  .tn-front .header-section--style3 .header-wrapper {
    min-height: 62px;
    padding: 8px 9px 8px 13px;
    border-radius: 13px;
  }

  .tn-front .header-wrapper .logo img {
    width: 140px;
    max-height: 40px;
  }

  .tn-front .banner--style1 {
    padding-top: 158px;
    padding-bottom: 62px;
  }

  .front-hero-eyebrow {
    max-width: 100%;
    margin-bottom: 16px;
    padding: 6px 10px;
    font-size: 9px;
    line-height: 1.35;
  }

  .tn-front .banner__content-heading {
    max-width: 560px;
    font-size: clamp(35px, 8.8vw, 43px);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .tn-front .banner__content-heading span {
    margin-top: 7px;
    font-size: 0.7em;
  }

  .tn-front .front-hero-description,
  .tn-front .banner__content > p {
    max-width: 540px;
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.65;
  }

  .tn-front .banner__btn-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 23px;
  }

  .tn-front .banner__btn-group .trk-btn {
    width: 100%;
    min-width: 0;
    min-height: 51px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 31px;
    gap: 9px;
    padding: 0 9px 0 15px !important;
    border-radius: 11px;
    text-align: left;
    white-space: normal;
  }

  .tn-front .banner__btn-group .trk-btn--arrow > span {
    width: 31px;
    height: 31px;
    margin: 0;
    border-radius: 8px;
  }

  .front-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .front-hero-trust span {
    min-height: 38px;
    justify-content: center;
    padding: 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(5, 24, 39, 0.28);
    font-size: 9px;
    line-height: 1.3;
    text-align: center;
  }

  .front-hero-visual {
    min-height: 370px;
  }

  .front-hero-visual__halo {
    width: 330px;
    height: 330px;
  }

  .tn-front .front-hero-visual .banner__thumb img {
    max-width: 390px;
    max-height: 400px;
  }

  .tn-front .page-header {
    padding-top: 148px;
    padding-bottom: 68px;
  }

  .tn-front .account .trk-btn,
  .tn-front .contact .trk-btn,
  .tn-front .cta-form .trk-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .tn-front .banner--style1 {
    padding-top: 154px;
    padding-bottom: 54px;
  }

  .tn-front .banner__btn-group {
    grid-template-columns: 1fr;
  }

  .tn-front .banner__btn-group .trk-btn {
    min-height: 53px;
    font-size: 12px;
  }

  .front-hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-hero-trust span:last-child {
    grid-column: 1 / -1;
  }

  .front-hero-visual {
    min-height: 315px;
    margin-top: -4px;
  }

  .front-hero-visual__halo {
    width: 275px;
    height: 275px;
  }

  .tn-front .front-hero-visual .banner__thumb img {
    max-width: 315px;
    max-height: 325px;
  }

  .front-hero-market-card {
    display: none;
  }

  .front-language__menu,
  html[dir="rtl"] .front-language__menu {
    position: fixed;
    top: 74px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .front-section-cta {
    width: min(100%, 330px);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 380px) {
  .tn-front .header-wrapper .logo img {
    width: 126px;
  }

  .tn-front .banner--style1 {
    padding-top: 154px;
  }

  .tn-front .banner__content-heading {
    font-size: 32px;
  }

  .front-hero-trust {
    grid-template-columns: 1fr;
  }

  .front-hero-trust span:last-child {
    grid-column: auto;
  }
}

/* Header, hero and newsletter final responsive alignment */
@media (min-width: 992px) and (max-width: 1199px) {
  .tn-front .header-section--style3 .header-wrapper {
    gap: 7px;
    padding-left: 14px;
  }

  .tn-front .header-wrapper .logo {
    width: auto;
  }

  .tn-front .header-wrapper .logo img {
    width: 146px;
  }

  .tn-front .menu {
    column-gap: 2px;
  }

  .tn-front .menu--style2 > li > a {
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 11px;
  }

  .front-language__trigger {
    min-width: 58px;
    padding: 0 8px;
  }

  .front-header-auth a {
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .front-header-tools {
    margin-left: auto;
  }

  html[dir="rtl"] .front-header-tools {
    margin-right: auto;
    margin-left: 0;
  }

  .tn-front .menu {
    max-height: calc(100vh - 105px);
    overscroll-behavior: contain;
  }

  .tn-front .menu li.front-mobile-auth {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 9px;
    padding: 11px 0 0;
    border-top: 1px solid #e4ebf0;
  }

  .tn-front .menu li.front-mobile-auth > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid #dbe5ec;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .tn-front .menu li.front-mobile-auth > a::after {
    display: none;
  }

  .tn-front .menu li.front-mobile-auth > a span,
  .tn-front .menu li.front-mobile-auth > a i {
    padding: 0;
    color: inherit !important;
    background: transparent !important;
    font-size: inherit;
  }

  .tn-front .menu li.front-mobile-auth > .front-mobile-auth__signup {
    border-color: #0d344d;
    color: #fff !important;
    background: #0d344d;
  }

  .tn-front .menu li.front-mobile-auth > .front-mobile-auth__login {
    border-color: #5cced7;
    color: #082033 !important;
    background: #6ed7df;
  }

  .tn-front .banner--style1 {
    padding-top: 168px;
  }

  .tn-front .front-newsletter .cta__newsletter-inner {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    min-height: 390px;
  }

  .tn-front .front-newsletter .cta__subscribe {
    padding: 44px 34px;
  }

  .tn-front .front-newsletter .cta-form__inner {
    grid-template-columns: 1fr;
  }

  .tn-front .front-newsletter .cta-form .trk-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .tn-front .header-bar,
  .tn-front .header-bar.d-lg-none {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin: 0 !important;
  }

  .tn-front .banner--style1 {
    padding-top: 164px;
  }

  .tn-front .front-newsletter .cta__newsletter-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
    text-align: left;
  }

  .tn-front .front-newsletter .cta__thumb {
    min-height: 250px;
    padding: 43px 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  html[dir="rtl"] .tn-front .front-newsletter .cta__thumb {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tn-front .front-newsletter .cta__thumb::before {
    width: 230px;
    height: 230px;
  }

  .tn-front .front-newsletter .cta__thumb img {
    width: min(100%, 245px);
    max-height: 225px;
  }

  .front-newsletter__visual-label {
    top: 17px;
    left: 17px;
  }

  html[dir="rtl"] .front-newsletter__visual-label {
    right: 17px;
    left: auto;
  }

  .tn-front .front-newsletter .cta__subscribe {
    align-items: flex-start;
    padding: 34px 24px 36px;
    text-align: left;
  }

  html[dir="rtl"] .tn-front .front-newsletter .cta__subscribe {
    align-items: flex-start;
    text-align: right;
  }

  .tn-front .front-newsletter .cta__subscribe h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .tn-front .front-newsletter .cta__subscribe p {
    margin: 14px 0 21px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .tn-front .banner--style1 {
    padding-top: 160px;
  }

  .tn-front .front-newsletter .cta__thumb {
    min-height: 220px;
  }

  .tn-front .front-newsletter .cta__thumb img {
    width: min(100%, 220px);
    max-height: 200px;
  }
}

@media (max-width: 380px) {
  .tn-front .header-wrapper .logo img {
    width: 118px;
  }

  .front-language__trigger {
    min-width: 38px;
    width: 38px;
  }

  .tn-front .banner--style1 {
    padding-top: 158px;
  }
}

/* Theme switch and desktop hero positioning */
.front-theme-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: 0.2s ease;
}

.front-theme-toggle:hover,
.front-theme-toggle:focus-visible {
  border-color: rgba(67, 199, 210, 0.55);
  color: #8be2e8;
  background: rgba(67, 199, 210, 0.12);
}

.front-theme-toggle i {
  font-size: 14px;
}

@media (min-width: 992px) {
  .tn-front .banner--style1 {
    min-height: 720px;
    margin-top: 104px;
    padding: 58px 0 62px;
    display: flex;
    align-items: center;
    background-position: center center !important;
  }

  .tn-front .banner--style1 > .container {
    width: 100%;
  }

  .tn-front .banner--style1 .banner__wrapper > .row {
    min-height: 600px;
    align-items: center !important;
  }
}

@media (max-width: 480px) {
  .front-language__trigger {
    min-width: 50px;
    width: 50px;
    height: 40px;
  }

  .front-theme-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

@media (max-width: 380px) {
  .front-language__trigger {
    min-width: 46px;
    width: 46px;
  }
}

/* Front dark theme */
html[data-bs-theme="dark"] {
  color-scheme: dark;
  --front-navy: #eef7fb;
  --front-navy-soft: #b9cfdb;
  --front-bg: #06131f;
  --front-surface: #0b2030;
  --front-border: #20394b;
  --front-text: #e6f0f5;
  --front-muted: #9bb0bd;
}

html[data-bs-theme="dark"] body.tn-front {
  background: var(--front-bg);
  color: var(--front-text);
}

html[data-bs-theme="dark"] .tn-front .bg-color,
html[data-bs-theme="dark"] .tn-front .feature--style1,
html[data-bs-theme="dark"] .tn-front .pricing,
html[data-bs-theme="dark"] .tn-front .faq,
html[data-bs-theme="dark"] .tn-front .front-newsletter {
  background: #071723 !important;
}

html[data-bs-theme="dark"] .tn-front .partner--gradient,
html[data-bs-theme="dark"] .tn-front .about,
html[data-bs-theme="dark"] .tn-front .service,
html[data-bs-theme="dark"] .tn-front .testimonial {
  background: #091b29 !important;
}

html[data-bs-theme="dark"] .tn-front .feature--style1 .feature__wrapper,
html[data-bs-theme="dark"] .tn-front .service__item-inner,
html[data-bs-theme="dark"] .tn-front .pricing__item-inner,
html[data-bs-theme="dark"] .tn-front .testimonial__item-inner,
html[data-bs-theme="dark"] .tn-front .accordion--style1 .accordion__item,
html[data-bs-theme="dark"] .tn-front .swiper-nav__btn {
  border-color: var(--front-border) !important;
  background: #0c2232 !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

html[data-bs-theme="dark"] .tn-front .about__thumb-image,
html[data-bs-theme="dark"] .tn-front .feature__image,
html[data-bs-theme="dark"] .tn-front .service__thumb-inner {
  border-color: var(--front-border);
  background: #102a3c;
}

html[data-bs-theme="dark"] .tn-front .nav--feature .nav-link {
  border-color: #264155 !important;
  color: #b9cbd6;
  background: #102738 !important;
}

html[data-bs-theme="dark"] .tn-front .nav--feature .nav-link.active,
html[data-bs-theme="dark"] .tn-front .nav--feature .nav-link:hover {
  border-color: #315e78 !important;
  color: #8de0e6 !important;
  background: #143348 !important;
}

html[data-bs-theme="dark"] .tn-front .floating-content__item {
  border-color: #29465a;
  background: rgba(11, 32, 48, 0.96) !important;
}

html[data-bs-theme="dark"] .tn-front .pricing__item-top {
  border-color: var(--front-border);
}

html[data-bs-theme="dark"] .tn-front .pricing__list-item,
html[data-bs-theme="dark"] .tn-front .testimonial__item-content > p,
html[data-bs-theme="dark"] .tn-front .accordion--style1 .accordion__body {
  color: var(--front-muted);
}

html[data-bs-theme="dark"] .tn-front .accordion--style1 .accordion__button,
html[data-bs-theme="dark"] .tn-front .service__content h5 a {
  color: var(--front-text);
}

html[data-bs-theme="dark"] .tn-front .trk-btn--border,
html[data-bs-theme="dark"] .tn-front .trk-btn--outline {
  border-color: #315068 !important;
  color: #8fdde3;
  background: #102738;
}

html[data-bs-theme="dark"] .front-language__menu {
  border-color: var(--front-border);
  background: #0b2030;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

html[data-bs-theme="dark"] .front-language__title {
  color: #829aaa;
}

html[data-bs-theme="dark"] .front-language__option {
  color: #c4d4dd;
}

html[data-bs-theme="dark"] .front-language__option:hover,
html[data-bs-theme="dark"] .front-language__option.is-active {
  color: #8be2e8;
  background: #123148;
}

html[data-bs-theme="dark"] .tn-front .front-newsletter .cta-form .form-control {
  border-color: #29485b;
  color: #e9f3f7;
  background: #0b2030;
}

html[data-bs-theme="dark"] .tn-front .front-newsletter .cta-form .form-control::placeholder {
  color: #77909f;
}

@media (max-width: 991px) {
  html[data-bs-theme="dark"] .tn-front .menu {
    border-color: var(--front-border);
    background: #0b2030 !important;
  }

  html[data-bs-theme="dark"] .tn-front .menu li a {
    color: #c8d8e1 !important;
  }

  html[data-bs-theme="dark"] .tn-front .menu li a:hover {
    color: #8be2e8 !important;
    background: #123148;
  }

  html[data-bs-theme="dark"] .tn-front .menu li.front-mobile-auth {
    border-color: #284254;
  }
}

/* Modern advantages section */
.tn-front .front-advantages {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 16%, rgba(47, 128, 237, 0.09), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(67, 199, 210, 0.08), transparent 25%),
    #f1f5f8 !important;
}

.tn-front .front-advantages::before {
  position: absolute;
  top: 90px;
  left: -120px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(47, 128, 237, 0.035);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.tn-front .front-advantages .feature__wrapper {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4.5vw, 62px);
  overflow: hidden;
  border: 1px solid #dce6ed;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96));
  box-shadow: 0 28px 70px rgba(14, 48, 72, 0.1);
}

.tn-front .front-advantages .feature__wrapper::before {
  position: absolute;
  top: -150px;
  right: -130px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 199, 210, 0.12), transparent 67%);
  content: "";
  pointer-events: none;
}

.tn-front .front-advantages .feature__wrapper > .row {
  position: relative;
  z-index: 1;
}

.tn-front .front-advantages .section-header {
  max-width: 520px;
  margin-bottom: 28px;
}

.tn-front .front-advantages .section-header h2 {
  margin-bottom: 17px !important;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.tn-front .front-advantages .section-header h2 span {
  display: block;
  margin-bottom: 6px;
  color: #2f80ed;
  font-size: 0.36em;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tn-front .front-advantages .section-header h2 span:only-child {
  display: inline;
  margin: 0;
  color: var(--front-navy);
  font-size: 1em;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-transform: none;
}

.tn-front .front-advantages .section-header p {
  max-width: 470px;
  font-size: 14px;
  line-height: 1.75;
}

.tn-front .front-advantages .section-header p:empty {
  display: none;
}

.tn-front .front-advantages .nav--feature {
  display: grid;
  gap: 10px;
}

.tn-front .front-advantages .nav--feature .nav-link {
  position: relative;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid #dce6ed !important;
  border-radius: 14px !important;
  color: #29465b;
  background: rgba(248, 251, 253, 0.92) !important;
  box-shadow: none !important;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tn-front .front-advantages .nav--feature .nav-link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: #52cbd5;
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: 0.2s ease;
}

.tn-front .front-advantages .feature__item-inner {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 13px;
  min-height: 68px;
  padding: 10px 13px 10px 12px;
}

.front-advantage-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe6ee;
  border-radius: 11px;
  color: #527085;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: 0.2s ease;
}

.tn-front .front-advantages .feature__item-content h6 {
  margin: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.front-advantage-arrow {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #6d8595;
  background: #eef3f6;
  font-size: 10px;
  transition: 0.2s ease;
}

.tn-front .front-advantages .nav--feature .nav-link:hover {
  border-color: #bfd5e3 !important;
  color: #174f78 !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(20, 58, 83, 0.08) !important;
  transform: translateX(3px);
}

.tn-front .front-advantages .nav--feature .nav-link.active {
  border-color: #123d5a !important;
  color: #fff !important;
  background:
    linear-gradient(135deg, #0b2b42 0%, #0f4965 100%) !important;
  box-shadow: 0 15px 30px rgba(8, 42, 65, 0.19) !important;
  transform: translateX(5px);
}

.tn-front .front-advantages .nav--feature .nav-link.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.tn-front .front-advantages .nav--feature .nav-link.active .front-advantage-index {
  border-color: rgba(255, 255, 255, 0.14);
  color: #95e2e7;
  background: rgba(255, 255, 255, 0.08);
}

.tn-front .front-advantages .nav--feature .nav-link.active .front-advantage-arrow {
  color: #0b2b42;
  background: #75d9e0;
  transform: rotate(-35deg);
}

.front-advantages__visual-shell {
  position: relative;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 15%, rgba(67, 199, 210, 0.14), transparent 30%),
    linear-gradient(145deg, #071827, #0b3048);
  box-shadow: 0 26px 56px rgba(7, 31, 48, 0.22);
}

.front-advantages__visual-toolbar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
}

.front-advantages__visual-toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.front-advantages__visual-toolbar span:first-child {
  background: #61d2da;
}

.front-advantages__visual-toolbar i {
  margin-left: auto;
  color: #67d2da;
  font-size: 12px;
}

.tn-front .front-advantages .feature__image {
  position: relative;
  display: flex;
  min-height: 540px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    rgba(4, 20, 32, 0.46);
  background-size: 32px 32px;
}

.tn-front .front-advantages .feature__image::before {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.22), transparent 68%);
  content: "";
}

.tn-front .front-advantages .feature__image > img {
  position: relative;
  z-index: 1;
  width: min(100%, 469px);
  height: auto;
  max-height: none;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.2));
}

.tn-front .front-advantages .floating-content__item {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 34px rgba(2, 18, 30, 0.2) !important;
  backdrop-filter: blur(12px);
}

.tn-front .front-advantages .floating-content__top-right--style2 {
  top: 18px !important;
  right: 18px !important;
  z-index: 5;
}

.tn-front .front-advantages .floating-content__top-right--style2 .floating-content__item--style2 {
  display: flex;
  min-width: 132px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  padding: 11px 13px !important;
  border-radius: 14px !important;
}

.tn-front .front-advantages .floating-content__top-right--style2 img {
  width: 48px !important;
  height: 48px;
  max-width: 48px !important;
  object-fit: contain;
}

.tn-front .front-advantages .floating-content__top-right--style2 p {
  max-width: 150px;
  margin: 0;
  color: #173044 !important;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.tn-front .front-advantages .floating-content__bottom-left--style2 {
  bottom: 18px !important;
  left: 18px !important;
  z-index: 5;
}

.tn-front .front-advantages .floating-content__bottom-left--style2 .floating-content__item--style3 {
  gap: 10px;
  padding: 12px 15px !important;
  border-radius: 14px !important;
}

.tn-front .front-advantages .floating-content__bottom-left--style2 h3,
.tn-front .front-advantages .floating-content__bottom-left--style2 p {
  margin: 0 !important;
  line-height: 1.25;
}

.tn-front .front-advantages .floating-content__bottom-left--style2 p {
  color: #334f62 !important;
  font-size: 11px !important;
  font-weight: 700;
}

html[dir="rtl"] .tn-front .front-advantages .nav--feature .nav-link {
  text-align: right;
}

html[dir="rtl"] .tn-front .front-advantages .nav--feature .nav-link::before {
  right: 0;
  left: auto;
  border-radius: 4px 0 0 4px;
}

html[dir="rtl"] .tn-front .front-advantages .feature__item-content h6 {
  text-align: right;
}

html[dir="rtl"] .tn-front .front-advantages .nav--feature .nav-link:hover {
  transform: translateX(-3px);
}

html[dir="rtl"] .tn-front .front-advantages .nav--feature .nav-link.active {
  transform: translateX(-5px);
}

html[dir="rtl"] .front-advantages__visual-toolbar i {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .tn-front .front-advantages .floating-content__top-right--style2 {
  right: auto !important;
  left: 18px !important;
}

html[dir="rtl"] .tn-front .front-advantages .floating-content__bottom-left--style2 {
  right: 18px !important;
  left: auto !important;
}

@media (max-width: 991px) {
  .tn-front .front-advantages .feature__wrapper {
    padding: 34px;
  }

  .tn-front .front-advantages .section-header {
    max-width: 680px;
  }

  .tn-front .front-advantages .nav--feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tn-front .front-advantages .feature__thumb {
    margin-top: 12px;
  }

  .tn-front .front-advantages .feature__image {
    min-height: 510px;
  }
}

@media (max-width: 767px) {
  .tn-front .front-advantages .feature__wrapper {
    padding: 24px 18px 18px;
    border-radius: 21px;
  }

  .tn-front .front-advantages .section-header {
    margin-bottom: 23px;
  }

  .tn-front .front-advantages .section-header h2 {
    font-size: 34px;
  }

  .tn-front .front-advantages .nav--feature {
    grid-template-columns: 1fr;
  }

  .tn-front .front-advantages .nav--feature .nav-link:hover,
  .tn-front .front-advantages .nav--feature .nav-link.active,
  html[dir="rtl"] .tn-front .front-advantages .nav--feature .nav-link:hover,
  html[dir="rtl"] .tn-front .front-advantages .nav--feature .nav-link.active {
    transform: none;
  }

  .front-advantages__visual-shell {
    border-radius: 19px;
  }

  .tn-front .front-advantages .feature__image {
    min-height: 0;
    padding: 12px;
  }

  .tn-front .front-advantages .feature__image > img {
    width: min(100%, 390px);
    max-height: none;
  }

  .tn-front .front-advantages .floating-content__top-right,
  .tn-front .front-advantages .floating-content__bottom-left {
    transform: scale(0.82);
  }
}

@media (max-width: 480px) {
  .tn-front .front-advantages .feature__item-inner {
    grid-template-columns: 38px minmax(0, 1fr) 31px;
    min-height: 62px;
    gap: 10px;
    padding: 9px 10px;
  }

  .front-advantage-index {
    width: 38px;
    height: 38px;
  }

  .front-advantage-arrow {
    width: 31px;
    height: 31px;
  }

  .tn-front .front-advantages .feature__image {
    min-height: 0;
  }

  .tn-front .front-advantages .feature__image > img {
    width: min(100%, 310px);
    max-height: none;
  }

  .tn-front .front-advantages .floating-content__top-right,
  .tn-front .front-advantages .floating-content__bottom-left {
    display: none;
  }
}

html[data-bs-theme="dark"] .tn-front .front-advantages {
  background:
    radial-gradient(circle at 9% 16%, rgba(47, 128, 237, 0.1), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(67, 199, 210, 0.08), transparent 25%),
    #071723 !important;
}

html[data-bs-theme="dark"] .tn-front .front-advantages .feature__wrapper {
  border-color: #203a4c;
  background: linear-gradient(135deg, #0b2030, #091b29);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .tn-front .front-advantages .nav--feature .nav-link {
  border-color: #274255 !important;
  color: #c4d5de;
  background: #102738 !important;
}

html[data-bs-theme="dark"] .tn-front .front-advantages .nav--feature .nav-link:hover {
  border-color: #365f77 !important;
  color: #8de0e6 !important;
  background: #143348 !important;
}

html[data-bs-theme="dark"] .tn-front .front-advantages .nav--feature .nav-link.active {
  border-color: #32748c !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0d344d, #105771) !important;
}

html[data-bs-theme="dark"] .front-advantage-index {
  border-color: #2b4658;
  color: #9cb2bf;
  background: #0b2030;
}

html[data-bs-theme="dark"] .front-advantage-arrow {
  color: #92a8b5;
  background: #173448;
}

/* Compact branded preloader */
.tn-front .preloader {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(28, 164, 191, 0.13), transparent 27rem),
    linear-gradient(145deg, #f8fbfd, #edf5f8);
  opacity: 1;
  visibility: visible;
  transition: opacity .42s ease, visibility .42s ease;
}

.tn-front .preloader::before,
.tn-front .preloader::after {
  position: absolute;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(10px);
  content: "";
}

.tn-front .preloader::before {
  top: -14rem;
  right: -10rem;
  background: rgba(24, 119, 174, 0.1);
}

.tn-front .preloader::after {
  bottom: -16rem;
  left: -11rem;
  background: rgba(26, 187, 184, 0.09);
}

.tn-front .preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.front-preloader__card {
  position: relative;
  display: flex;
  width: min(310px, calc(100vw - 44px));
  min-height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px 30px 20px;
  border: 1px solid rgba(190, 213, 224, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(13, 55, 78, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.front-preloader__card::before {
  position: absolute;
  top: 0;
  right: 24%;
  left: 24%;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #1677b7, #27bfc8);
  content: "";
}

.tn-front .front-preloader__card > img {
  position: relative;
  z-index: 1;
  width: 210px !important;
  max-width: 82% !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain;
  animation: frontPreloaderLogo 1.8s ease-in-out infinite !important;
}

.front-preloader__halo {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 175px;
  height: 70px;
  border-radius: 50%;
  background: rgba(24, 160, 187, 0.1);
  filter: blur(22px);
  transform: translateX(-50%);
}

.front-preloader__pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.front-preloader__pulse i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1687b4;
  animation: frontPreloaderDot 1.05s ease-in-out infinite;
}

.front-preloader__pulse i:nth-child(2) {
  animation-delay: .14s;
  background: #1ba6bb;
}

.front-preloader__pulse i:nth-child(3) {
  animation-delay: .28s;
  background: #26bdad;
}

@keyframes frontPreloaderLogo {
  0%, 100% { opacity: .78; transform: translateY(1px) scale(.985); }
  50% { opacity: 1; transform: translateY(-2px) scale(1); }
}

@keyframes frontPreloaderDot {
  0%, 60%, 100% { opacity: .34; transform: translateY(0) scale(.82); }
  30% { opacity: 1; transform: translateY(-4px) scale(1); }
}

html[data-bs-theme="dark"] .tn-front .preloader {
  background:
    radial-gradient(circle at 50% 42%, rgba(31, 163, 187, 0.12), transparent 25rem),
    linear-gradient(145deg, #071825, #0b2231);
}

html[data-bs-theme="dark"] .front-preloader__card {
  border-color: rgba(73, 113, 134, 0.42);
  background: rgba(10, 33, 47, 0.86);
  box-shadow: 0 27px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 480px) {
  .front-preloader__card {
    width: min(270px, calc(100vw - 36px));
    min-height: 116px;
    padding: 21px 24px 17px;
    border-radius: 20px;
  }

  .tn-front .front-preloader__card > img {
    width: 180px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tn-front .front-preloader__card > img,
  .front-preloader__pulse i {
    animation: none !important;
  }
}
