@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Open+Sans&display=swap");
.hero-section .hero-content .scroll-bottom, .feature-section .single-feature .icon, .box-style .icon, .footer .widget-wrapper .footer-widget .socials li a {
  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;
}

/*===========================
    01.COMMON css 
===========================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arimo;
  font-weight: normal;
  font-style: normal;
  color: #5B657E;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover {
  color: #183B70;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arimo;
  font-weight: 700;
  margin: 0px;
  color: #162447;
}

.section-title p {
  font-size: 18px;
  line-height: 28px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
  }
}

.section-title span {
  font-size: 25px;
  color: #162447;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .section-title span {
    font-size: 18px;
  }
}

.section-title span img {
  max-width: 100%;
  margin-right: 20px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin: 0px;
  font-family: "Open Sans", sans-serif;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.error {
  color: orangered;
}

.success {
  color: green;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 18px 38px;
  font-size: 18px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: none;
  background: #183B70;
  overflow: hidden;
}

.main-btn:hover {
  color: #fff;
}

.main-btn.border-btn {
  border: 2px solid #183B70;
  background: transparent;
  color: #183B70;
}

.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

.scroll-top {
  width: 45px;
  height: 45px;
  background: #183B70;
  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: 18px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.scroll-top:hover {
  color: #fff;
  background: rgba(24, 59, 112, 0.88);
}

@keyframes animation1 {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@-webkit-keyframes animation1 {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite;
  animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .ytp-spinner-circle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #183B70 #183B70 #ddd;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #ddd;
  -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #ddd;
  -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

/*===== NAVBAR =====*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 10px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sticky .navbar {
    padding: 15px 0;
  }
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #162447;
}

.sticky .navbar .navbar-nav .nav-item a::before {
  color: #162447;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #162447;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 180px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    margin-left: 0px;
  }
}

.navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 0;
  border-radius: 16px;
  background: #fdd446;
  bottom: 15px;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #162447;
  }
}

.navbar-nav .nav-item a:hover::before, .navbar-nav .nav-item a.active::before {
  width: 100%;
}

/* ====== hero-area ===== */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 160px 0 50px;
  background-image: url("../img/hero/hero-bg.svg");
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 130px;
  }
}

.hero-section .hero-content {
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-section .hero-content {
    margin-bottom: 0px;
  }
}

.hero-section .hero-content h1 {
  font-size: 60px;
  margin-bottom: 35px;
  color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content h1 {
    font-size: 52px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
  }
}

.hero-section .hero-content p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

@media only screen and (min-width: 1400px) {
  .hero-section .hero-content p {
    padding-right: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content p {
    padding-right: 70px;
  }
}

.hero-section .hero-content .main-btn {
  border-color: #fff;
  color: #fff;
}

.hero-section .hero-content .main-btn::after {
  background: rgba(255, 255, 255, 0.15);
}

.hero-section .hero-content .scroll-bottom {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #183B70;
  color: #183B70;
  left: 15px;
  bottom: 0;
  z-index: 9;
}

.hero-section .hero-content .scroll-bottom i {
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-section .hero-img {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

.hero-section .hero-shape .shape {
  position: absolute;
  z-index: -1;
}

.hero-section .hero-shape .shape.shape-1 {
  top: -285px;
  right: -300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-shape .shape.shape-1 {
    top: -420px;
    right: -550px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-shape .shape.shape-1 {
    top: -400px;
    right: -550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-shape .shape.shape-1 {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-shape .shape.shape-1 {
    display: none;
  }
}

/* ====== feature css ====== */
@media (max-width: 767px) {
  .feature-section.pt-120 {
    padding-top: 80px;
  }
}

.feature-section .single-feature {
  text-align: center;
  padding: 30px 10px;
}

@media only screen and (min-width: 1400px) {
  .feature-section .single-feature {
    padding: 30px 40px;
  }
}

.feature-section .single-feature .icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(24, 59, 112, 0.08);
  color: #183B70;
  margin: auto;
  margin-bottom: 30px;
  font-size: 65px;
  line-height: 1;
}

.feature-section .single-feature .content h3 {
  margin-bottom: 20px;
}

.feature-section .single-feature .content p {
  font-size: 18px;
  line-height: 28px;
}

.box-style {
  border-radius: 39px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 59px rgba(214, 214, 214, 0.35);
  box-shadow: 0px 0px 59px rgba(214, 214, 214, 0.35);
  padding: 50px 30px 30px;
  border-bottom: 5px solid;
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1400px) {
  .box-style {
    padding: 50px 40px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-style {
    padding: 50px 20px 30px;
  }
}

.box-style .icon {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 70px;
}

.box-style .content h3 {
  margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-style .content h3 {
    font-size: 22px;
  }
}

.box-style .content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
}

.box-style .content a {
  color: #5B657E;
  font-size: 30px;
  font-weight: 700;
}

.box-style .content ul li {
  margin-bottom: 5px;
}

.box-style .content a.main-btn {
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.box-style .content a.main-btn.border-btn {
  color: #5B657E;
}

.box-style .content a.main-btn.border-btn:hover {
  color: #183B70;
}

.box-style .content a.main-btn.border-btn:hover::after {
  background: rgba(24, 59, 112, 0.18);
}

.box-style.color-1 {
  border-color: #ff92a5;
}

.box-style.color-1 .icon {
  color: #ff92a5;
}

.box-style.color-1 .content a:hover {
  color: #ff92a5;
}

.box-style.color-2 {
  border-color: #183B70;
}

.box-style.color-2 .icon {
  color: #183B70;
}

.box-style.color-2 .content a:hover {
  color: #183B70;
}

.box-style.color-2 .content .main-btn:hover {
  color: #fff;
}

.box-style.color-3 {
  border-color: #b89cfe;
}

.box-style.color-3 .icon {
  color: #b89cfe;
}

.box-style.color-3 .content a:hover {
  color: #b89cfe;
}

/* ===== about css ====== */
.about-section {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .about-section.pt-150 {
    padding-top: 100px;
  }
}

.about-section .about-img {
  position: relative;
  z-index: 1;
  padding: 75px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-section .about-img {
    margin-bottom: 70px;
  }
}

.about-section .about-img .shape {
  position: absolute;
  z-index: -1;
}

.about-section .about-img .shape.shape-1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img .shape.shape-1 {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .about-section .about-img .shape.shape-1 {
    width: 70%;
  }
}

.about-section .about-img .shape.shape-2 {
  bottom: 0;
  right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img .shape.shape-2 {
    width: 75%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-img .shape.shape-2 {
    right: 120px;
  }
}

@media (max-width: 767px) {
  .about-section .about-img .shape.shape-2 {
    bottom: 30px;
  }
}

.about-section .about-img-2 {
  position: relative;
  z-index: 1;
  padding: 75px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-section .about-img-2 {
    margin-bottom: 70px;
  }
}

.about-section .about-img-2 .shape {
  position: absolute;
  z-index: -1;
}

.about-section .about-img-2 .shape.shape-1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img-2 .shape.shape-1 {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .about-section .about-img-2 .shape.shape-1 {
    width: 70%;
  }
}

.about-section .about-img-2 .shape.shape-2 {
  bottom: 0;
  left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img-2 .shape.shape-2 {
    width: 75%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-img-2 .shape.shape-2 {
    left: 120px;
  }
}

@media (max-width: 767px) {
  .about-section .about-img-2 .shape.shape-2 {
    bottom: 30px;
  }
}

.about-section .about-content ul li {
  padding-left: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #162447;
  margin-bottom: 25px;
  position: relative;
}

.about-section .about-content ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #183B70;
  position: absolute;
  left: 0;
  top: 6.5px;
  -webkit-box-shadow: 0px 14px 15px rgba(24, 59, 112, 0.24);
  box-shadow: 0px 14px 15px rgba(24, 59, 112, 0.24);
}

/* ====== feature-extended css ====== */
.feature-extended-section .feature-extended-wrapper {
  padding: 70px 0;
  background: rgba(24, 59, 112, 0.08);
}

.feature-extended-section .single-feature-extended {
  padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-extended-section .single-feature-extended {
    padding: 30px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-extended-section .single-feature-extended {
    padding: 30px 0px;
  }
}

.feature-extended-section .single-feature-extended .icon {
  font-size: 65px;
  line-height: 1;
  margin-bottom: 30px;
  color: #183B70;
}

.feature-extended-section .single-feature-extended .content h3 {
  margin-bottom: 20px;
}

.feature-extended-section .single-feature-extended .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

/* ======= subscribe css ======= */
@media (max-width: 767px) {
  .subscribe-section .section-title h2 {
    font-size: 24px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .section-title h2 {
    font-size: 32px;
  }
}

.subscribe-section .subscribe-wrapper {
  background-image: url("../img/subscribe/subscribe-bg.svg");
  padding: 65px 50px 50px;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .subscribe-section .subscribe-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .subscribe-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.subscribe-section .subscribe-wrapper .subscribe-form {
  position: relative;
  margin-bottom: 15px;
}

.subscribe-section .subscribe-wrapper .subscribe-form input {
  width: 100%;
  padding: 20px 30px;
  padding-right: 142px;
  border-radius: 18px;
  background: #fff;
  color: #5B657E;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.subscribe-section .subscribe-wrapper .subscribe-form input:focus {
  -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35);
}

.subscribe-section .subscribe-wrapper .subscribe-form input::-webkit-input-placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form input:-ms-input-placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form input::-ms-input-placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form input::placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form button {
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 17.5px 25px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 18px;
}

@media (max-width: 767px) {
  .subscribe-section .subscribe-wrapper .subscribe-form button {
    position: static;
    margin-top: 20px;
    background: #fff;
    color: #183B70;
    padding: 17.5px 35px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .subscribe-wrapper .subscribe-form button {
    position: absolute;
    margin-top: 0px;
    color: #fff;
    background: #183B70;
    padding: 17.5px 25px;
  }
}

/* ======= footer css ======= */
.footer {
  background-image: url("../img/footer/footer-bg.svg");
  background-size: cover;
  background-position: top right;
  padding-top: 260px;
  margin-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding-top: 250px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 120px;
    background: #183B70;
  }
}

.footer .widget-wrapper .footer-widget {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1400px) {
  .footer .widget-wrapper .footer-widget .desc {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .footer .widget-wrapper .footer-widget .desc {
    padding-right: 50px;
  }
}

.footer .widget-wrapper .footer-widget .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .widget-wrapper .footer-widget .socials li {
  margin-right: 20px;
}

.footer .widget-wrapper .footer-widget .socials li:last-child {
  margin-right: 0;
}

.footer .widget-wrapper .footer-widget .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
  color: #183B70;
  background: #fff;
}

.footer .widget-wrapper .footer-widget h3 {
  margin-bottom: 25px;
  color: #fff;
}

.footer .widget-wrapper .footer-widget ul.links li {
  font-size: 18px;
  line-height: 34px;
}

.footer .widget-wrapper .footer-widget ul.links li a {
  color: #fff;
}

.footer .widget-wrapper .footer-widget ul.links li a:hover {
  padding-left: 8px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}


/* Landing comercial adaptada */
:root {
  --landing-primary: #162447;
  --landing-secondary: #183B70;
  --landing-soft: rgba(24, 59, 112, 0.08);
  --landing-text: #5B657E;
}

body.afe-app--public {
  font-family: Arimo, Inter, Arial, sans-serif;
}

.header .navbar-brand.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header .navbar-brand.landing-brand img {
  max-height: 48px;
  max-width: 170px;
  object-fit: contain;
}

.header .navbar-brand.landing-brand .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  background: #183B70;
  box-shadow: 0 15px 28px rgba(24, 59, 112, .20);
}

.header .navbar-brand.landing-brand strong {
  font-size: 19px;
  color: #162447;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header .navbar-area.sticky .navbar-brand.landing-brand strong,
.header .navbar-area.sticky .navbar-nav .nav-item a {
  color: #162447;
}

.header .navbar-nav .nav-item a.landing-login-link {
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 15px;
  margin-left: 8px;
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-login-link {
  color: #183B70;
  background: rgba(24, 59, 112, .08);
  border-color: rgba(24, 59, 112, .12);
}

.header .navbar-nav .nav-item a.landing-login-link:hover {
  color: #fff;
  background: #183B70;
}

.hero-section {
  background-image: url('../img/hero/hero-bg.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
}

.hero-section .hero-content .eyebrow {
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-section .hero-content .hero-small {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  margin-top: 15px;
}

.hero-section .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.hero-section .hero-img img {
  max-width: 100%;
}

.feature-section .single-feature .icon,
.feature-extended-section .single-feature-extended .icon,
.box-style .icon {
  color: #183B70;
}

.feature-section .single-feature .icon svg,
.feature-extended-section .single-feature-extended .icon svg,
.box-style .icon svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.7;
}

.feature-section .single-feature .content p,
.feature-extended-section .single-feature-extended .content p,
.about-section .about-content p,
.landing-price-card p {
  color: #5B657E;
}

.landing-plan-section .feature-extended-wrapper {
  background: rgba(24, 59, 112, 0.06);
  border-radius: 0;
}

.landing-plan-accordion {
  display: grid;
  gap: 22px;
}

.landing-plan-accordion .accordion-item {
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(22, 36, 71, .08);
  background: #fff;
}

.landing-plan-accordion .accordion-button {
  min-height: 92px;
  padding: 24px 28px;
  gap: 18px;
  color: #162447;
  background: #fff;
  box-shadow: none;
}

.landing-plan-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, #162447 0%, #183B70 100%);
}

.landing-plan-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.landing-plan-accordion .accordion-button .landing-accordion-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 59, 112, .08);
  color: #183B70;
}

.landing-plan-accordion .accordion-button:not(.collapsed) .landing-accordion-icon {
  color: #183B70;
  background: #fff;
}

.landing-plan-accordion .accordion-button .landing-accordion-icon svg {
  width: 29px;
  height: 29px;
}

.landing-plan-accordion .accordion-button .landing-accordion-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.landing-plan-accordion .accordion-button strong {
  font-size: 22px;
}

.landing-plan-accordion .accordion-button small {
  color: inherit;
  opacity: .74;
  font-size: 14px;
  line-height: 1.35;
}

.landing-plan-accordion .accordion-body {
  padding: 34px;
  background: #fbfdff;
}

.landing-price-card {
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 30px 32px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(22, 36, 71, .07);
  box-shadow: 0 10px 35px rgba(22, 36, 71, .07);
  transition: all .3s ease-out 0s;
}

.landing-price-card:hover,
.landing-price-card.active {
  transform: translateY(-8px);
  box-shadow: 0 18px 55px rgba(22, 36, 71, .13);
}

.landing-price-card.active {
  border-color: rgba(24, 59, 112, .28);
}

.landing-price-tag {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: #183B70;
  font-size: 12px;
  font-weight: 700;
}

.landing-price-card h3 {
  color: #162447;
  font-size: 25px;
  margin-bottom: 14px;
  padding-right: 100px;
}

.landing-price-card .price-value {
  color: #183B70;
  font-size: 30px;
  font-weight: 700;
  margin: 24px 0;
}

.landing-price-card ul {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.landing-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #162447;
  font-size: 15px;
  line-height: 1.45;
}

.landing-price-card li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #183B70;
  margin-top: 2px;
}

.landing-price-card .main-btn {
  width: 100%;
  margin-top: auto;
}

.landing-cms-section {
  background: #fff;
}

.landing-cms-section .afe-public-block {
  border-radius: 30px;
  overflow: hidden;
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn,
.landing-cta-btn {
  background: #fff;
  color: #183B70;
  border-color: #fff;
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn:hover,
.landing-cta-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
}

.footer .widget-wrapper .footer-widget .logo a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
}

.footer .widget-wrapper .footer-widget .logo img {
  max-height: 46px;
  max-width: 170px;
  object-fit: contain;
}

.footer .footer-bottom-copy {
  padding: 25px 0 35px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

@media (max-width: 991px) {
  .header .navbar-nav .nav-item a.landing-login-link {
    margin-left: 0;
    margin-top: 6px;
  }
  .hero-section .hero-content .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .landing-plan-accordion .accordion-button {
    align-items: flex-start;
    padding: 20px;
  }
  .landing-plan-accordion .accordion-body {
    padding: 22px;
  }
  .landing-price-tag {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }
  .landing-price-card h3 {
    padding-right: 0;
  }
}

:root {
  --landing-primary: #071B3A;
  --landing-primary-deep: #041226;
  --landing-secondary: #0D2B52;
  --landing-soft: #EAF3FF;
  --landing-soft-2: #F6FAFF;
  --landing-text: #5B657E;
  --landing-border: rgba(7, 27, 58, 0.12);
}

body.afe-app--public,
body.landing-access-body {
  color: #162447;
  background: #fff;
}

.main-btn,
.scroll-top,
.feature-section .single-feature .icon,
.box-style .icon,
.footer .widget-wrapper .footer-widget .socials li a {
  background: var(--landing-primary);
}

.main-btn.border-btn {
  border-color: var(--landing-primary);
  color: var(--landing-primary);
}

.main-btn.border-btn:hover,
.main-btn:hover,
.scroll-top:hover {
  background: var(--landing-secondary);
  color: #fff;
}

.header .navbar-brand.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 240px;
}

.header .navbar-brand.landing-brand--logo img,
.footer .widget-wrapper .footer-widget .logo img,
.landing-access-brand img {
  width: auto;
  max-width: 210px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.header .navbar-brand.landing-brand--logo strong {
  display: none;
}

.header .navbar-brand.landing-brand .brand-mark,
.landing-access-brand span {
  background: var(--landing-primary);
  color: #fff;
}

.header .navbar-brand.landing-brand strong,
.header .navbar-area.sticky .navbar-brand.landing-brand strong,
.header .navbar-area.sticky .navbar-nav .nav-item a,
.navbar-nav .nav-item a,
.sticky .navbar .navbar-nav .nav-item a {
  color: var(--landing-primary);
}

.navbar-nav .nav-item a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 11px;
  letter-spacing: -0.01em;
}

.navbar-nav .nav-item a::before {
  background: var(--landing-soft);
}

.header .navbar-nav .nav-item.nav-access-item {
  margin-left: 8px;
}

.header .navbar-nav .nav-item a.landing-access-link {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 26px rgba(7, 27, 58, 0.12);
}

.header .navbar-nav .nav-item a.landing-access-link::before {
  display: none;
}

.header .navbar-nav .nav-item a.landing-access-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link {
  color: var(--landing-primary);
  background: var(--landing-soft);
  border-color: var(--landing-border);
}

.header .navbar-nav .nav-item a.landing-access-link:hover,
.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link:hover,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link:hover {
  color: #fff;
  background: var(--landing-primary);
}

.hero-section,
.hero-section.landing-contact-hero {
  background-image: url('../img/hero/hero-bg.svg');
  background-color: var(--landing-primary);
}

.hero-section .hero-content .eyebrow {
  color: var(--landing-soft);
  border-color: rgba(234, 243, 255, 0.44);
  background: rgba(255, 255, 255, 0.10);
}

.hero-section .hero-content .scroll-bottom {
  border-color: var(--landing-primary);
  color: var(--landing-primary);
}

.feature-section .single-feature .icon {
  color: #fff;
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.22);
}

.feature-section .single-feature:hover .icon {
  background: var(--landing-secondary);
}

.about-section .about-content ul li::before,
.single-feature-extended .icon,
.landing-price-card .price-value,
.landing-price-card li svg,
.landing-price-card h3,
.landing-plan-accordion .accordion-button,
.landing-plan-accordion .accordion-button .landing-accordion-icon {
  color: var(--landing-primary);
}

.landing-plan-section .feature-extended-wrapper,
.landing-cms-section,
.landing-contact-methods {
  background: var(--landing-soft-2);
}

.landing-plan-accordion .accordion-item,
.landing-price-card,
.landing-contact-panel,
.landing-login-card {
  border: 1px solid var(--landing-border);
  box-shadow: 0 22px 55px rgba(7, 27, 58, 0.10);
}

.landing-plan-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-secondary) 100%);
  color: #fff;
}

.landing-plan-accordion .accordion-button:not(.collapsed) .landing-accordion-icon {
  color: var(--landing-primary);
  background: #fff;
}

.landing-price-card.active,
.landing-price-card:hover {
  border-color: rgba(13, 43, 82, 0.45);
  box-shadow: 0 26px 70px rgba(7, 27, 58, 0.15);
}

.landing-price-tag {
  background: var(--landing-primary);
}

.subscribe-section .subscribe-wrapper {
  background-image: url('../img/subscribe/subscribe-bg.svg');
  background-color: var(--landing-primary);
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn,
.landing-cta-btn {
  color: var(--landing-primary);
  background: #fff;
  border-color: #fff;
}

.footer {
  background-image: url('../img/footer/footer-bg.svg');
  background-color: var(--landing-primary);
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
  color: var(--landing-primary);
  background: #fff;
}

.landing-contact-hero {
  padding-bottom: 140px;
}

.landing-contact-panel {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  background: #fff;
  padding: 28px;
}

.landing-contact-panel__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.landing-contact-panel__head > span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--landing-primary);
}

.landing-contact-panel__head h2 {
  margin: 0 0 4px;
  color: var(--landing-primary);
  font-size: 24px;
  font-weight: 800;
}

.landing-contact-panel__head p {
  margin: 0;
  color: var(--landing-text);
}

.landing-contact-panel .card-soft {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.landing-contact-panel .card-body {
  padding: 0 !important;
}

.landing-contact-panel h2.h4 {
  display: none;
}

.landing-contact-panel .form-control,
.landing-contact-panel .form-select,
.landing-login-card .form-control,
.landing-login-card .form-select {
  min-height: 48px;
  border-radius: 14px;
  border-color: var(--landing-border);
  background: #fff;
}

.landing-contact-panel textarea.form-control {
  min-height: 112px;
}

.landing-contact-panel .form-control:focus,
.landing-contact-panel .form-select:focus,
.landing-login-card .form-control:focus,
.landing-login-card .form-select:focus {
  border-color: var(--landing-secondary);
  box-shadow: 0 0 0 0.2rem rgba(13, 43, 82, 0.12);
}

.landing-contact-panel .btn-accent,
.landing-login-card .btn-accent {
  background: var(--landing-primary);
  border-color: var(--landing-primary);
  color: #fff;
}

.landing-contact-panel .btn-accent:hover,
.landing-login-card .btn-accent:hover {
  background: var(--landing-secondary);
  border-color: var(--landing-secondary);
  color: #fff;
}

.landing-contact-empty {
  border-radius: 22px;
  background: var(--landing-soft);
  padding: 24px;
  color: var(--landing-primary);
}

.landing-contact-empty svg {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}

.landing-contact-empty h3 {
  font-size: 20px;
  font-weight: 800;
}

.landing-contact-empty p {
  margin-bottom: 0;
  color: var(--landing-text);
}

.landing-access-body {
  min-height: 100vh;
  background: var(--landing-soft-2);
}

.landing-access-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 42%) 1fr;
}

.landing-access-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(22px, 5vw, 72px);
  background: #fff;
}

.landing-access-brand {
  position: absolute;
  top: 28px;
  left: clamp(22px, 5vw, 72px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--landing-primary);
  font-weight: 800;
}

.landing-access-brand span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-access-card-wrap {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.landing-login-card {
  background: #fff;
}

.landing-login-badge,
.landing-access-side-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--landing-primary);
  background: var(--landing-soft);
  border: 1px solid var(--landing-border);
}

.landing-login-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--landing-primary);
  font-weight: 800;
  flex: 0 0 auto;
}

.landing-captcha-box {
  border: 1px solid var(--landing-border);
  border-radius: 18px;
  padding: 14px;
  background: var(--landing-soft-2);
  margin-bottom: 8px;
}

.landing-access-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 64px;
  color: #fff;
  background: var(--landing-primary) url('../img/hero/hero-bg.svg') center/cover no-repeat;
}

.landing-access-side::after {
  content: '';
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(234, 243, 255, 0.10);
}

.landing-access-side-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.landing-access-side-content h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  margin: 24px 0 18px;
  color: #fff;
}

.landing-access-side-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 30px;
}

.landing-access-side-grid {
  display: grid;
  gap: 16px;
}

.landing-access-side-grid > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.landing-access-side-grid svg {
  width: 28px;
  height: 28px;
  color: var(--landing-soft);
}

.landing-access-side-grid strong {
  color: #fff;
  font-size: 16px;
}

.landing-access-side-grid span {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 1199px) {
  .landing-access-shell {
    grid-template-columns: 1fr;
  }
  .landing-access-side {
    display: none;
  }
  .landing-access-form-col {
    min-height: 100vh;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 40px rgba(7, 27, 58, 0.12);
  }
  .navbar-nav .nav-item a {
    padding: 9px 14px;
  }
  .header .navbar-nav .nav-item.nav-access-item {
    display: inline-flex;
    margin: 8px 4px 0 0;
  }
  .landing-contact-hero {
    padding-bottom: 90px;
  }
  .landing-contact-panel {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .header .navbar-brand.landing-brand--logo img,
  .footer .widget-wrapper .footer-widget .logo img,
  .landing-access-brand img {
    max-width: 168px;
    max-height: 42px;
  }
  .landing-contact-panel {
    padding: 20px;
    border-radius: 22px;
  }
  .landing-access-brand {
    position: static;
    margin-bottom: 28px;
  }
  .landing-access-form-col {
    justify-content: flex-start;
    padding-top: 28px;
  }
}

.header .navbar-brand.landing-brand strong,
.navbar-nav .nav-item a {
  color: #fff;
}

.header .navbar-area.sticky .navbar-brand.landing-brand strong,
.header .navbar-area.sticky .navbar-nav .nav-item a,
.sticky .navbar .navbar-nav .nav-item a,
.navbar-collapse.show .navbar-nav .nav-item a {
  color: var(--landing-primary);
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link {
  color: var(--landing-primary);
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link:hover,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link:hover {
  color: #fff;
}

.footer .widget-wrapper .footer-widget .logo.landing-footer-logo--image strong {
  display: none;
}

:root {
  --landing-primary: #061A33;
  --landing-primary-deep: #03101F;
  --landing-secondary: #123A63;
  --landing-soft: #EAF3FA;
  --landing-soft-2: #F6FAFF;
  --landing-text: #5B657E;
  --landing-border: rgba(6, 26, 51, 0.14);
}

.hero-section,
.hero-section.landing-contact-hero {
  background-color: #fff !important;
  background-image: url('../img/hero/hero-bg.svg?v=navy-v4') !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
}

.footer {
  background-color: #fff !important;
  background-image: url('../img/footer/footer-bg.svg?v=navy-v4') !important;
  background-repeat: no-repeat !important;
  background-position: top right !important;
  background-size: cover !important;
}

.subscribe-section .subscribe-wrapper {
  background-color: var(--landing-primary) !important;
  background-image: url('../img/subscribe/subscribe-bg.svg?v=navy-v4') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.main-btn,
.main-btn.border-btn,
.landing-price-card .main-btn,
.landing-price-card .main-btn.border-btn,
.subscribe-section .subscribe-wrapper .main-btn.border-btn,
.landing-cta-btn,
.landing-contact-form .main-btn,
.landing-contact-form .main-btn.border-btn {
  background: var(--landing-primary) !important;
  border-color: var(--landing-primary) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(6, 26, 51, 0.18);
}

.main-btn:hover,
.main-btn.border-btn:hover,
.landing-price-card .main-btn:hover,
.landing-price-card .main-btn.border-btn:hover,
.subscribe-section .subscribe-wrapper .main-btn.border-btn:hover,
.landing-cta-btn:hover,
.landing-contact-form .main-btn:hover,
.landing-contact-form .main-btn.border-btn:hover {
  background: var(--landing-secondary) !important;
  border-color: var(--landing-secondary) !important;
  color: #fff !important;
}

.hero-section .hero-content .main-btn,
.hero-section .hero-content .main-btn.border-btn {
  background: var(--landing-secondary) !important;
  border-color: rgba(255, 255, 255, 0.78) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(3, 16, 31, 0.24);
}

.hero-section .hero-content .main-btn:hover,
.hero-section .hero-content .main-btn.border-btn:hover {
  background: var(--landing-primary-deep) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn,
.landing-cta-btn {
  background: var(--landing-secondary) !important;
  border-color: rgba(255, 255, 255, 0.78) !important;
  color: #fff !important;
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn:hover,
.landing-cta-btn:hover {
  background: var(--landing-primary-deep) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.scroll-top,
.feature-section .single-feature .icon,
.footer .widget-wrapper .footer-widget .socials li a {
  background: var(--landing-primary) !important;
  color: #fff !important;
}

.feature-section .single-feature:hover .icon,
.scroll-top:hover {
  background: var(--landing-secondary) !important;
  color: #fff !important;
}

.header .navbar-nav .nav-item a.landing-access-link {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link {
  background: var(--landing-primary) !important;
  color: #fff !important;
  border-color: var(--landing-primary) !important;
}

.header .navbar-nav .nav-item a.landing-access-link:hover,
.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link:hover,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link:hover {
  background: var(--landing-secondary) !important;
  color: #fff !important;
  border-color: var(--landing-secondary) !important;
}

@media (max-width: 767px) {
  .footer {
    background-color: var(--landing-primary) !important;
    background-image: url('../img/footer/footer-bg.svg?v=navy-v4') !important;
  }
}

/* FERPOS landing refinements */
.main-btn.border-btn,
.landing-price-card .main-btn.border-btn,
.about-section .main-btn.border-btn {
  background: var(--landing-primary);
  border-color: var(--landing-primary);
  color: #fff;
}

.main-btn.border-btn:hover,
.landing-price-card .main-btn.border-btn:hover,
.about-section .main-btn.border-btn:hover {
  background: var(--landing-secondary);
  border-color: var(--landing-secondary);
  color: #fff;
}

.hero-section .hero-content .main-btn.border-btn {
  background: #fff;
  border-color: #fff;
  color: var(--landing-primary);
}

.hero-section .hero-content .main-btn.border-btn:hover {
  background: var(--landing-accent, var(--landing-secondary));
  border-color: var(--landing-accent, var(--landing-secondary));
  color: #fff;
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link {
  color: #fff;
  background: var(--landing-primary);
  border-color: var(--landing-primary);
}

.header .navbar-nav .nav-item a.landing-access-link:hover,
.header .navbar-area.sticky .navbar-nav .nav-item a.landing-access-link:hover,
.navbar-collapse.show .navbar-nav .nav-item a.landing-access-link:hover {
  color: #fff;
  background: var(--landing-secondary);
  border-color: var(--landing-secondary);
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn,
.landing-cta-btn {
  background: #fff;
  border-color: #fff;
  color: var(--landing-primary);
}

.subscribe-section .subscribe-wrapper .main-btn.border-btn:hover,
.landing-cta-btn:hover {
  background: var(--landing-accent, var(--landing-secondary));
  border-color: var(--landing-accent, var(--landing-secondary));
  color: #fff;
}

/* FERPOS main-site section refinement - isolated from accountant/distributor public landings */
.ferpos-main-site .ferpos-page-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 105px;
  background: #fff url('../img/hero/hero-bg.svg?v=ferpos-pages-v1') top center/cover no-repeat;
}

.ferpos-main-site .ferpos-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6, 26, 51, .96) 0%, rgba(6, 26, 51, .86) 42%, rgba(18, 58, 99, .22) 100%);
  pointer-events: none;
}

.ferpos-main-site .ferpos-page-hero .container {
  position: relative;
  z-index: 2;
}

.ferpos-main-site .ferpos-page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

.ferpos-main-site .ferpos-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
  line-height: 1.65;
}

.ferpos-main-site .ferpos-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #EAF3FA;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ferpos-main-site .ferpos-kicker svg {
  width: 16px;
  height: 16px;
}

.ferpos-main-site .ferpos-hero-note {
  margin-top: 18px;
  font-size: 15px !important;
  color: rgba(255, 255, 255, .62) !important;
}

.ferpos-main-site .ferpos-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.ferpos-main-site .ferpos-page-hero .main-btn,
.ferpos-main-site .ferpos-page-hero .main-btn.border-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: var(--landing-secondary) !important;
  border-color: rgba(255, 255, 255, .75) !important;
}

.ferpos-main-site .ferpos-page-hero .main-btn.border-btn {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .30) !important;
}

.ferpos-main-site .ferpos-page-hero .main-btn:hover,
.ferpos-main-site .ferpos-page-hero .main-btn.border-btn:hover {
  background: var(--landing-primary-deep) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.ferpos-main-site .ferpos-signal-card,
.ferpos-main-site .ferpos-contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 30px 80px rgba(3, 16, 31, .22);
  backdrop-filter: blur(16px);
}

.ferpos-main-site .ferpos-signal-card::after {
  content: '';
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(234, 243, 250, .10);
}

.ferpos-main-site .ferpos-signal-card > span {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: #fff;
  color: var(--landing-primary);
  margin-bottom: 22px;
}

.ferpos-main-site .ferpos-signal-card > span svg {
  width: 33px;
  height: 33px;
}

.ferpos-main-site .ferpos-signal-card h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.ferpos-main-site .ferpos-signal-card p {
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.55;
}

.ferpos-main-site .ferpos-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.ferpos-main-site .ferpos-signal-grid strong {
  display: flex;
  justify-content: center;
  padding: 11px 8px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
}

.ferpos-main-site .ferpos-section {
  padding: 96px 0;
  background: #fff;
}

.ferpos-main-site .ferpos-section--soft {
  background: linear-gradient(180deg, #F6FAFF 0%, #fff 100%);
}

.ferpos-main-site .ferpos-section-title {
  max-width: 780px;
  margin: 0 auto 52px;
}

.ferpos-main-site .ferpos-section-title--left {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.ferpos-main-site .ferpos-section-title span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--landing-primary);
  background: var(--landing-soft);
  border: 1px solid var(--landing-border);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ferpos-main-site .ferpos-section-title h2 {
  color: var(--landing-primary);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.ferpos-main-site .ferpos-section-title p {
  color: var(--landing-text);
  font-size: 17px;
  line-height: 1.65;
}

.ferpos-main-site .ferpos-route-card,
.ferpos-main-site .ferpos-feature-card,
.ferpos-main-site .ferpos-price-card,
.ferpos-main-site .ferpos-empty-card,
.ferpos-main-site .ferpos-contact-method,
.ferpos-main-site .ferpos-check-panel {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(6, 26, 51, .08);
  box-shadow: 0 18px 55px rgba(6, 26, 51, .08);
}

.ferpos-main-site .ferpos-route-card {
  min-height: 100%;
  display: block;
  padding: 34px;
  color: var(--landing-primary);
  transition: all .25s ease;
}

.ferpos-main-site .ferpos-route-card:hover {
  transform: translateY(-8px);
  color: var(--landing-primary);
  box-shadow: 0 24px 70px rgba(6, 26, 51, .13);
}

.ferpos-main-site .ferpos-route-card__icon,
.ferpos-main-site .ferpos-feature-card > span,
.ferpos-main-site .ferpos-contact-method > span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  background: var(--landing-primary);
  margin-bottom: 22px;
}

.ferpos-main-site .ferpos-route-card__icon svg,
.ferpos-main-site .ferpos-feature-card > span svg,
.ferpos-main-site .ferpos-contact-method > span svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.1;
}

.ferpos-main-site .ferpos-route-card strong,
.ferpos-main-site .ferpos-feature-card h3,
.ferpos-main-site .ferpos-contact-method h3,
.ferpos-main-site .ferpos-empty-card h3 {
  display: block;
  color: var(--landing-primary);
  font-size: 23px;
  line-height: 1.22;
  margin-bottom: 13px;
}

.ferpos-main-site .ferpos-route-card p,
.ferpos-main-site .ferpos-feature-card p,
.ferpos-main-site .ferpos-contact-method p,
.ferpos-main-site .ferpos-empty-card p {
  color: var(--landing-text);
  font-size: 16px;
  line-height: 1.62;
}

.ferpos-main-site .ferpos-route-card small {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--landing-primary);
  background: var(--landing-soft);
  font-weight: 800;
  font-size: 12px;
}

.ferpos-main-site .ferpos-feature-card,
.ferpos-main-site .ferpos-contact-method,
.ferpos-main-site .ferpos-empty-card {
  padding: 32px;
}

.ferpos-main-site .ferpos-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(6, 26, 51, .12);
}

.ferpos-main-site .ferpos-plan-accordion {
  display: grid;
  gap: 22px;
}

.ferpos-main-site .ferpos-plan-accordion .accordion-item {
  border: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 55px rgba(6, 26, 51, .08);
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button {
  gap: 18px;
  min-height: 98px;
  padding: 26px 30px;
  background: #fff;
  color: var(--landing-primary);
  box-shadow: none;
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button > span {
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: var(--landing-primary);
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button:not(.collapsed) > span {
  color: var(--landing-primary);
  background: #fff;
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button > span svg {
  width: 29px;
  height: 29px;
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button strong {
  min-width: 150px;
  font-size: 22px;
}

.ferpos-main-site .ferpos-plan-accordion .accordion-button small {
  color: inherit;
  opacity: .72;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.ferpos-main-site .ferpos-plan-accordion .accordion-body {
  padding: 34px;
  background: #FBFDFF;
}

.ferpos-main-site .ferpos-price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px;
  transition: all .25s ease;
}

.ferpos-main-site .ferpos-price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(6, 26, 51, .13);
}

.ferpos-main-site .ferpos-price-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ferpos-main-site .ferpos-price-card__top span,
.ferpos-main-site .ferpos-price-card__top strong {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ferpos-main-site .ferpos-price-card__top span {
  color: var(--landing-primary);
  background: var(--landing-soft);
}

.ferpos-main-site .ferpos-price-card__top strong {
  color: #fff;
  background: var(--landing-primary);
}

.ferpos-main-site .ferpos-price-card h3 {
  color: var(--landing-primary);
  font-size: 25px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.ferpos-main-site .ferpos-price-card p {
  color: var(--landing-text);
  font-size: 15px;
  line-height: 1.58;
}

.ferpos-main-site .ferpos-price-card__price {
  margin: 22px 0;
  color: var(--landing-primary);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ferpos-main-site .ferpos-price-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.ferpos-main-site .ferpos-price-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--landing-primary);
  font-size: 14px;
  line-height: 1.45;
}

.ferpos-main-site .ferpos-price-card li svg {
  width: 18px;
  height: 18px;
  color: var(--landing-secondary);
  margin-top: 2px;
}

.ferpos-main-site .ferpos-price-card .main-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.ferpos-main-site .ferpos-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ferpos-main-site .ferpos-timeline > div {
  min-height: 136px;
  padding: 22px;
  border-radius: 24px;
  background: var(--landing-soft-2);
  border: 1px solid var(--landing-border);
}

.ferpos-main-site .ferpos-timeline strong {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: var(--landing-primary);
  margin-bottom: 18px;
}

.ferpos-main-site .ferpos-timeline span {
  display: block;
  color: var(--landing-primary);
  font-weight: 800;
  line-height: 1.35;
}

.ferpos-main-site .ferpos-check-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.ferpos-main-site .ferpos-check-panel > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: var(--landing-soft-2);
}

.ferpos-main-site .ferpos-check-panel svg {
  width: 22px;
  height: 22px;
  color: var(--landing-secondary);
  margin-top: 2px;
}

.ferpos-main-site .ferpos-check-panel span {
  color: var(--landing-primary);
  font-weight: 700;
  line-height: 1.45;
}

.ferpos-main-site .ferpos-contact-panel .card-soft,
.ferpos-main-site .ferpos-contact-panel .card-body {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.ferpos-main-site .ferpos-contact-panel label,
.ferpos-main-site .ferpos-contact-panel .form-label {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.ferpos-main-site .ferpos-contact-panel .form-control,
.ferpos-main-site .ferpos-contact-panel .form-select {
  min-height: 52px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
}

.ferpos-main-site .ferpos-contact-panel .form-control::placeholder {
  color: rgba(255, 255, 255, .56);
}

.ferpos-main-site .ferpos-contact-panel .form-control:focus,
.ferpos-main-site .ferpos-contact-panel .form-select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .16);
}

.ferpos-main-site .ferpos-contact-method {
  text-align: center;
  word-break: break-word;
}

.ferpos-main-site .ferpos-empty-card {
  text-align: center;
}

.ferpos-main-site .ferpos-empty-card > svg {
  width: 54px;
  height: 54px;
  color: var(--landing-primary);
  margin-bottom: 18px;
}

.ferpos-main-site .ferpos-cms-zone {
  padding-top: 40px;
  background: #fff;
}


.ferpos-main-site .ferpos-page-hero h1,
.ferpos-main-site .ferpos-page-hero h2,
.ferpos-main-site .ferpos-page-hero .ferpos-kicker,
.ferpos-main-site .ferpos-page-hero p,
.ferpos-main-site .ferpos-page-hero .ferpos-hero-note,
.ferpos-main-site .ferpos-page-hero .ferpos-signal-card h2,
.ferpos-main-site .ferpos-page-hero .ferpos-signal-card p {
  color: #fff !important;
}

.ferpos-main-site .ferpos-page-hero p,
.ferpos-main-site .ferpos-page-hero .ferpos-hero-note,
.ferpos-main-site .ferpos-page-hero .ferpos-signal-card p {
  color: rgba(255, 255, 255, .84) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card {
  color: #fff !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: none;
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass > div {
  background: rgba(255, 255, 255, .08);
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass svg,
.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass span {
  color: #fff;
}

.ferpos-main-site .ferpos-final-cta .spal-subscribe-wrapper {
  border-radius: 34px;
}

@media (max-width: 991px) {
  .ferpos-main-site .ferpos-page-hero {
    padding: 135px 0 78px;
  }
  .ferpos-main-site .ferpos-plan-accordion .accordion-button {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .ferpos-main-site .ferpos-plan-accordion .accordion-button small {
    flex-basis: 100%;
    padding-left: 76px;
  }
  .ferpos-main-site .ferpos-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ferpos-main-site .ferpos-page-hero {
    padding: 120px 0 62px;
  }
  .ferpos-main-site .ferpos-page-hero h1 {
    font-size: 34px;
  }
  .ferpos-main-site .ferpos-hero-actions,
  .ferpos-main-site .ferpos-hero-actions .main-btn {
    width: 100%;
  }
  .ferpos-main-site .ferpos-section {
    padding: 72px 0;
  }
  .ferpos-main-site .ferpos-signal-card,
  .ferpos-main-site .ferpos-contact-panel,
  .ferpos-main-site .ferpos-route-card,
  .ferpos-main-site .ferpos-feature-card,
  .ferpos-main-site .ferpos-price-card,
  .ferpos-main-site .ferpos-contact-method,
  .ferpos-main-site .ferpos-empty-card {
    border-radius: 23px;
    padding: 24px;
  }
  .ferpos-main-site .ferpos-signal-grid,
  .ferpos-main-site .ferpos-timeline {
    grid-template-columns: 1fr;
  }
  .ferpos-main-site .ferpos-plan-accordion .accordion-button {
    padding: 22px;
  }
  .ferpos-main-site .ferpos-plan-accordion .accordion-button small {
    padding-left: 0;
  }
  .ferpos-main-site .ferpos-plan-accordion .accordion-body {
    padding: 22px;
  }
}

/* FERPOS public pages visual correction 2026-05-06 */
.ferpos-main-site .ferpos-page-hero {
  padding: 158px 0 92px;
  background-color: var(--landing-primary-deep) !important;
  background-image:
    radial-gradient(circle at 84% 18%, rgba(47, 128, 237, .18) 0, rgba(47, 128, 237, 0) 34%),
    radial-gradient(circle at 18% 8%, rgba(18, 58, 99, .50) 0, rgba(18, 58, 99, 0) 38%),
    linear-gradient(135deg, #03101F 0%, var(--landing-primary) 52%, #0B294C 100%) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-bottom: 0 !important;
}

.ferpos-main-site .ferpos-page-hero::before {
  background: linear-gradient(115deg, rgba(3, 16, 31, .22) 0%, rgba(6, 26, 51, .08) 58%, rgba(18, 58, 99, .18) 100%) !important;
}

.ferpos-main-site .ferpos-page-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
}

.ferpos-main-site .ferpos-page-hero + .ferpos-section,
.ferpos-main-site .ferpos-page-hero + .ferpos-section--soft {
  background: #fff !important;
}

.ferpos-main-site .ferpos-section--soft {
  background: linear-gradient(180deg, #fff 0%, #F9FCFF 100%) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel {
  background: #fff !important;
  color: var(--landing-primary) !important;
  border: 1px solid rgba(255, 255, 255, .94) !important;
  box-shadow: 0 28px 78px rgba(3, 16, 31, .28) !important;
  backdrop-filter: none !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card::after {
  background: linear-gradient(135deg, rgba(234, 243, 250, .82), rgba(255, 255, 255, 0)) !important;
  opacity: .95;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card > *,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel > * {
  position: relative;
  z-index: 1;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card > span,
.ferpos-main-site .ferpos-page-hero .landing-contact-panel__head > span {
  background: var(--landing-primary) !important;
  color: #fff !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-card-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--landing-primary) !important;
  background: var(--landing-soft) !important;
  border: 1px solid var(--landing-border);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ferpos-main-site .ferpos-page-hero h1,
.ferpos-main-site .ferpos-page-hero .ferpos-kicker {
  color: #fff !important;
}

.ferpos-main-site .ferpos-page-hero > .container > .row > [class*="col-"] > h1,
.ferpos-main-site .ferpos-page-hero > .container > .row > [class*="col-"] > p,
.ferpos-main-site .ferpos-page-hero > .container > .row > [class*="col-"] > .ferpos-kicker {
  color: #fff !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card h1,
.ferpos-main-site .ferpos-page-hero .ferpos-signal-card h2,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel h2,
.ferpos-main-site .ferpos-page-hero .landing-contact-panel__head h2,
.ferpos-main-site .ferpos-page-hero .landing-contact-empty h3 {
  color: var(--landing-primary) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card h1 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-card p,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel p,
.ferpos-main-site .ferpos-page-hero .landing-contact-panel__head p,
.ferpos-main-site .ferpos-page-hero .landing-contact-empty p,
.ferpos-main-site .ferpos-page-hero .card-soft p,
.ferpos-main-site .ferpos-page-hero .text-muted {
  color: var(--landing-text) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass {
  background: var(--landing-soft-2) !important;
  border: 1px solid var(--landing-border) !important;
  box-shadow: none !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass > div {
  background: #fff !important;
  border: 1px solid rgba(6, 26, 51, .06);
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass svg {
  color: var(--landing-secondary) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-check-panel--glass span {
  color: var(--landing-primary) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel label,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel .form-label {
  color: var(--landing-primary) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel .form-control,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel .form-select {
  color: var(--landing-primary) !important;
  background: #fff !important;
  border: 1px solid var(--landing-border) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel .form-control::placeholder {
  color: rgba(91, 101, 126, .70) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel .form-control:focus,
.ferpos-main-site .ferpos-page-hero .ferpos-contact-panel .form-select:focus {
  border-color: var(--landing-secondary) !important;
  box-shadow: 0 0 0 .2rem rgba(18, 58, 99, .14) !important;
}

.ferpos-main-site .ferpos-page-hero .landing-contact-empty {
  background: var(--landing-soft-2) !important;
  border: 1px solid var(--landing-border);
  color: var(--landing-primary) !important;
}

.ferpos-main-site .ferpos-page-hero .landing-contact-empty svg {
  color: var(--landing-primary) !important;
}

.ferpos-main-site .ferpos-page-hero .ferpos-signal-grid strong {
  color: var(--landing-primary) !important;
  background: var(--landing-soft-2) !important;
  border: 1px solid var(--landing-border) !important;
}

@media (max-width: 991px) {
  .ferpos-main-site .ferpos-page-hero {
    padding: 130px 0 72px;
  }
}

@media (max-width: 575px) {
  .ferpos-main-site .ferpos-page-hero {
    padding: 112px 0 56px;
  }
  .ferpos-main-site .ferpos-page-hero .ferpos-signal-card h1 {
    font-size: 31px;
  }
  .ferpos-main-site .ferpos-page-hero .ferpos-signal-card,
  .ferpos-main-site .ferpos-page-hero .ferpos-contact-panel {
    padding: 24px !important;
  }
}

body.landing-access-body {
  background: radial-gradient(circle at top left, rgba(234, 243, 250, 0.95), rgba(255, 255, 255, 0.96) 42%, #f6faff 100%);
}

.landing-access-form-col {
  background: rgba(255, 255, 255, 0.94);
}

.landing-access-card-wrap {
  max-width: 500px;
}

.landing-login-card {
  border: 1px solid rgba(6, 26, 51, 0.08) !important;
  box-shadow: 0 30px 90px rgba(6, 26, 51, 0.12);
  overflow: hidden;
}

.access-card-head {
  position: relative;
}

.access-card-head h1 {
  color: var(--landing-primary);
  letter-spacing: -0.035em;
}

.access-card-head p {
  font-size: 15px;
  line-height: 1.55;
}

.landing-login-badge,
.landing-access-side-badge {
  background: rgba(234, 243, 250, 0.82);
  color: var(--landing-primary);
}

.landing-login-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
  box-shadow: 0 16px 34px rgba(6, 26, 51, 0.18);
}

.landing-login-card .form-label {
  color: var(--landing-primary);
  font-size: 13px;
}

.landing-login-card .form-control,
.landing-login-card .form-select {
  border-radius: 18px;
  border-color: rgba(6, 26, 51, 0.12);
  background: #fbfdff;
  color: var(--landing-primary);
  min-height: 54px;
}

.landing-login-card .form-control::placeholder {
  color: #8a97ad;
}

.landing-login-card .btn-accent {
  background: var(--landing-primary);
  border-color: var(--landing-primary);
  color: #fff;
}

.landing-login-card .btn-accent:hover {
  background: var(--landing-primary-deep);
  border-color: var(--landing-primary-deep);
  color: #fff;
}

.landing-login-card .btn-outline-dark {
  border-color: rgba(6, 26, 51, 0.18);
  color: var(--landing-primary);
  background: #fff;
}

.landing-login-card .btn-outline-dark:hover {
  color: #fff;
  background: var(--landing-primary);
  border-color: var(--landing-primary);
}

.landing-captcha-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  border: 1px solid rgba(6, 26, 51, 0.12);
}

.access-captcha-input {
  letter-spacing: 0.18em;
  font-weight: 800;
}

.access-note-box {
  background: #f8fbff;
  border-color: rgba(6, 26, 51, 0.10) !important;
}

.access-hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.landing-access-side {
  background: linear-gradient(135deg, rgba(6, 26, 51, 0.98), rgba(18, 58, 99, 0.92)), url('../img/hero/hero-bg.svg') center/cover no-repeat;
}

.landing-access-side-grid > div {
  transition: transform .25s ease, background .25s ease;
}

.landing-access-side-grid > div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 575px) {
  .landing-login-icon {
    position: static;
    margin-top: 14px;
  }
}


/* FERPOS access layout - single clean login form */
.landing-access-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 100%) !important;
}

.landing-access-shell {
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 48px 18px;
  background:
    radial-gradient(circle at 15% 10%, rgba(234, 243, 255, .9), transparent 34%),
    radial-gradient(circle at 85% 90%, rgba(7, 27, 58, .08), transparent 36%);
}

.landing-access-form-col {
  width: 100%;
  max-width: 560px;
  min-height: auto !important;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
  background: transparent !important;
}

.landing-access-card-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.landing-access-brand {
  position: fixed !important;
  top: 28px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 5;
}

.landing-access-side {
  display: none !important;
}

.landing-login-card {
  border: 1px solid var(--landing-border) !important;
  box-shadow: 0 28px 80px rgba(7, 27, 58, .12);
}

@media (max-width: 575px) {
  .landing-access-shell {
    align-items: flex-start;
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .landing-access-brand {
    top: 18px !important;
  }

  .landing-login-card .card-body {
    padding: 28px 22px !important;
  }
}


/* FERPOS home visual polish - main public site only */
@keyframes ferposHeroFloatSoft {
  0%, 100% { transform: translate3d(18px, 0, 0) scale(1.13); }
  50% { transform: translate3d(34px, -16px, 0) scale(1.16); }
}

@keyframes ferposCardSheen {
  0% { transform: translateX(-120%) rotate(12deg); opacity: 0; }
  45% { opacity: .42; }
  100% { transform: translateX(180%) rotate(12deg); opacity: 0; }
}

.ferpos-main-site .hero-section {
  overflow: hidden;
  padding-top: 145px;
  padding-bottom: 88px;
}

.ferpos-main-site .hero-section .ferpos-hero-row {
  min-height: 570px;
}

.ferpos-main-site .hero-section .ferpos-hero-copy {
  position: relative;
  z-index: 3;
}

.ferpos-main-site .hero-section .ferpos-hero-dashboard {
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-left: -22px;
  animation: ferposHeroFloatSoft 7.5s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 34px 42px rgba(3, 16, 31, .24));
}

.ferpos-main-site .hero-section .ferpos-hero-dashboard::before {
  content: '';
  position: absolute;
  inset: 10% -4% 3% 6%;
  border-radius: 42px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
  z-index: -1;
}

.ferpos-main-site .hero-section .ferpos-hero-dashboard img {
  width: min(760px, 58vw) !important;
  max-width: none !important;
  border-radius: 18px;
}

.ferpos-main-site .feature-section {
  position: relative;
  z-index: 4;
}

.ferpos-main-site .feature-section .row > [class*="col-"] {
  display: flex;
}

.ferpos-main-site .feature-section .single-feature {
  width: 100%;
  min-height: 100%;
  padding: 38px 30px 34px !important;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(6, 26, 51, .08);
  box-shadow: 0 22px 60px rgba(6, 26, 51, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ferpos-main-site .feature-section .single-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 58, 99, .22);
  box-shadow: 0 30px 78px rgba(6, 26, 51, .13);
}

.ferpos-main-site .feature-section .single-feature .icon {
  width: 104px !important;
  height: 104px !important;
  font-size: 48px !important;
  margin-bottom: 26px !important;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary)) !important;
  color: #fff !important;
  box-shadow: 0 22px 45px rgba(6, 26, 51, .22);
}

.ferpos-main-site .feature-section .single-feature .icon svg {
  width: 48px;
  height: 48px;
}

.ferpos-main-site .feature-section .single-feature .content h3 {
  color: var(--landing-primary);
  font-size: 25px;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.ferpos-main-site .feature-section .single-feature .content p {
  color: var(--landing-text);
  font-size: 17px;
  line-height: 1.62;
}

.ferpos-main-site .landing-cms-section {
  background: linear-gradient(180deg, #fff 0%, #F7FBFF 100%) !important;
}

.ferpos-main-site .landing-cms-section > .container:first-child {
  padding-bottom: 8px;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-section-head h2,
.ferpos-main-site .landing-cms-section .section-title h2 {
  color: var(--landing-primary);
  letter-spacing: -0.035em;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card-section {
  background: transparent !important;
  padding: 62px 0 !important;
}

.ferpos-main-site .landing-cms-section .row > .d-flex,
.ferpos-main-site .landing-cms-section .row > [class*="col-"] {
  align-items: stretch;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan,
.ferpos-main-site .landing-cms-section .card-soft {
  position: relative;
  overflow: hidden;
  border-radius: 30px !important;
  background: rgba(255, 255, 255, .96) !important;
  border: 1px solid rgba(6, 26, 51, .08) !important;
  box-shadow: 0 22px 62px rgba(6, 26, 51, .075) !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card::before,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan::before,
.ferpos-main-site .landing-cms-section .card-soft::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--landing-primary), var(--landing-secondary));
  opacity: .95;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card::after,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan::after {
  content: '';
  position: absolute;
  top: -35%;
  left: -40%;
  width: 120px;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), transparent);
  transform: rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card:hover,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan:hover,
.ferpos-main-site .landing-cms-section .card-soft:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 58, 99, .20) !important;
  box-shadow: 0 30px 82px rgba(6, 26, 51, .13) !important;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card:hover::after,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan:hover::after {
  animation: ferposCardSheen 1.05s ease forwards;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card .card-body,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan .card-body,
.ferpos-main-site .landing-cms-section .card-soft .card-body {
  position: relative;
  z-index: 1;
  padding: 34px 34px 32px !important;
}

.ferpos-main-site .ferpos-cms-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
  box-shadow: 0 16px 34px rgba(6, 26, 51, .18);
  margin-bottom: 18px;
}

.ferpos-main-site .ferpos-cms-card__icon svg {
  width: 29px;
  height: 29px;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card h3,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan h3,
.ferpos-main-site .landing-cms-section .card-soft h3 {
  color: var(--landing-primary);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px !important;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-card p,
.ferpos-main-site .landing-cms-section .ferpos-cms-plan p,
.ferpos-main-site .landing-cms-section .card-soft p,
.ferpos-main-site .landing-cms-section .text-muted {
  color: var(--landing-text) !important;
  font-size: 16px;
  line-height: 1.62;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-plan__badge,
.ferpos-main-site .landing-cms-section .badge {
  color: var(--landing-primary) !important;
  background: var(--landing-soft) !important;
  border: 1px solid var(--landing-border) !important;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-plan__price,
.ferpos-main-site .landing-cms-section .fw-semibold {
  color: var(--landing-primary) !important;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-plan__link,
.ferpos-main-site .landing-cms-section .ferpos-cms-card-cta,
.ferpos-main-site .landing-cms-section .btn-outline-dark {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 999px !important;
  color: var(--landing-primary) !important;
  border-color: rgba(6, 26, 51, .16) !important;
  background: #fff !important;
  font-weight: 800;
}

.ferpos-main-site .landing-cms-section .ferpos-cms-plan__link:hover,
.ferpos-main-site .landing-cms-section .ferpos-cms-card-cta:hover,
.ferpos-main-site .landing-cms-section .btn-outline-dark:hover {
  color: #fff !important;
  background: var(--landing-primary) !important;
  border-color: var(--landing-primary) !important;
}

.ferpos-main-site .landing-price-card,
.ferpos-main-site .ferpos-price-card {
  border-radius: 32px !important;
  border: 1px solid rgba(6, 26, 51, .08) !important;
  box-shadow: 0 22px 62px rgba(6, 26, 51, .08) !important;
}

.ferpos-main-site .landing-price-card:hover,
.ferpos-main-site .landing-price-card.active,
.ferpos-main-site .ferpos-price-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 88px rgba(6, 26, 51, .14) !important;
}

.ferpos-main-site .landing-price-card.active,
.ferpos-main-site .ferpos-cms-plan--featured {
  background: linear-gradient(180deg, #fff 0%, #F7FBFF 100%) !important;
  border-color: rgba(18, 58, 99, .22) !important;
}

.ferpos-main-site .landing-price-tag {
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary)) !important;
  box-shadow: 0 14px 28px rgba(6, 26, 51, .18);
}

.ferpos-main-site .landing-price-card h3,
.ferpos-main-site .ferpos-price-card h3 {
  color: var(--landing-primary) !important;
  letter-spacing: -0.025em;
}

.ferpos-main-site .landing-price-card .price-value,
.ferpos-main-site .ferpos-price-card__price {
  color: var(--landing-primary) !important;
}

.ferpos-main-site .landing-price-card li,
.ferpos-main-site .ferpos-price-card li {
  color: var(--landing-primary) !important;
}

@media (prefers-reduced-motion: reduce) {
  .ferpos-main-site .hero-section .ferpos-hero-dashboard,
  .ferpos-main-site .landing-cms-section .ferpos-cms-card:hover::after,
  .ferpos-main-site .landing-cms-section .ferpos-cms-plan:hover::after {
    animation: none !important;
  }
}

@media (max-width: 1199px) {
  .ferpos-main-site .hero-section .ferpos-hero-dashboard {
    margin-left: 0;
  }
  .ferpos-main-site .hero-section .ferpos-hero-dashboard img {
    width: min(660px, 56vw) !important;
  }
}

@media (max-width: 991px) {
  .ferpos-main-site .hero-section {
    padding-top: 128px;
    padding-bottom: 64px;
  }
  .ferpos-main-site .hero-section .ferpos-hero-row {
    min-height: auto;
  }
  .ferpos-main-site .hero-section .ferpos-hero-dashboard {
    margin-top: 22px;
    animation: none;
    transform: none !important;
  }
  .ferpos-main-site .hero-section .ferpos-hero-dashboard img {
    width: 100% !important;
    max-width: 720px !important;
  }
}

@media (max-width: 575px) {
  .ferpos-main-site .feature-section .single-feature,
  .ferpos-main-site .landing-cms-section .ferpos-cms-card .card-body,
  .ferpos-main-site .landing-cms-section .ferpos-cms-plan .card-body,
  .ferpos-main-site .landing-cms-section .card-soft .card-body {
    padding: 26px 22px !important;
  }
  .ferpos-main-site .feature-section .single-feature .icon {
    width: 86px !important;
    height: 86px !important;
  }
}

.registro-period-grid,
.registro-methods {
  display: grid;
  gap: 12px;
}

.registro-choice {
  display: block;
  cursor: pointer;
}

.registro-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.registro-choice span {
  display: grid;
  gap: 4px;
  border: 1px solid #dbe7f5;
  border-radius: 18px;
  padding: 14px 16px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.registro-choice input:checked + span {
  border-color: var(--brand-primary, #061a33);
  box-shadow: 0 18px 36px rgba(6, 26, 51, .12);
  transform: translateY(-1px);
}

.registro-choice strong {
  font-size: 15px;
  font-weight: 900;
}

.registro-choice small {
  color: #64748b;
  line-height: 1.35;
}

.registro-choice em {
  color: var(--brand-primary, #061a33);
  font-style: normal;
  font-weight: 900;
}

.access-hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
}

.ferpos-main-site .ferpos-price-card--friendly {
  gap: 0;
  border: 1px solid rgba(6, 26, 51, .08);
  overflow: hidden;
}

.ferpos-main-site .ferpos-price-card--friendly .ferpos-price-card__price {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 7px;
  margin: 18px 0 16px;
}

.ferpos-main-site .ferpos-price-card--friendly .ferpos-price-card__price small {
  grid-column: 1 / -1;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ferpos-main-site .ferpos-price-card--friendly .ferpos-price-card__price span {
  color: var(--landing-primary);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.ferpos-main-site .ferpos-price-card--friendly .ferpos-price-card__price em {
  color: #64748b;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  padding-bottom: 4px;
}

.ferpos-main-site .ferpos-plan-periods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 22px;
}

.ferpos-main-site .ferpos-plan-period {
  border: 1px solid rgba(6, 26, 51, .09);
  border-radius: 18px;
  padding: 12px 13px;
  background: #f8fbff;
  display: grid;
  gap: 4px;
}

.ferpos-main-site .ferpos-plan-period strong {
  color: var(--landing-primary);
  font-size: 13px;
  font-weight: 900;
}

.ferpos-main-site .ferpos-plan-period span {
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}

.ferpos-main-site .ferpos-plan-period small {
  color: #64748b;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.ferpos-main-site .ferpos-plan-benefits {
  display: grid;
  gap: 11px;
  margin: 0 0 18px;
  padding: 0;
}

.ferpos-main-site .ferpos-plan-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 24px;
}

.ferpos-main-site .ferpos-plan-module-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--landing-primary);
  background: var(--landing-soft);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.ferpos-main-site .ferpos-price-card--friendly .main-btn {
  background: var(--landing-primary) !important;
  color: #fff !important;
  border-color: var(--landing-primary) !important;
}

.ferpos-main-site .ferpos-price-card--friendly .main-btn:hover {
  background: var(--landing-secondary) !important;
  color: #fff !important;
  border-color: var(--landing-secondary) !important;
}

@media (max-width: 575px) {
  .ferpos-main-site .ferpos-plan-periods {
    grid-template-columns: 1fr;
  }
}

/* FERPOS login access shortcuts */
.access-panel-shortcuts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -8px 0 22px;
}

.access-panel-shortcut {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--landing-primary);
  background: rgba(234, 243, 255, .78);
  border: 1px solid var(--landing-border);
  box-shadow: 0 12px 26px rgba(7, 27, 58, .10);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.access-panel-shortcut svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.access-panel-shortcut:hover,
.access-panel-shortcut.is-active {
  color: #fff;
  background: var(--landing-primary);
  border-color: var(--landing-primary);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 27, 58, .16);
}

.access-panel-shortcut:focus-visible {
  outline: 3px solid rgba(13, 43, 82, .22);
  outline-offset: 3px;
}

@media (max-width: 575px) {
  .access-panel-shortcuts {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .access-panel-shortcut {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

/* FERPOS unified public actions */
.header .navbar-nav .nav-item.nav-access-item {
  margin-left: 8px;
}

.header .navbar-nav .nav-item a.landing-nav-action {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: 0 14px 30px rgba(7, 27, 58, .14);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.header .navbar-nav .nav-item a.landing-nav-action::before {
  display: none;
}

.header .navbar-nav .nav-item a.landing-nav-action svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.45;
}

.header .navbar-nav .nav-item a.landing-nav-action--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.header .navbar-nav .nav-item a.landing-nav-action--solid {
  color: var(--landing-primary);
  background: #fff;
  border-color: #fff;
}

.header .navbar-nav .nav-item a.landing-nav-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(7, 27, 58, .18);
}

.header .navbar-nav .nav-item a.landing-nav-action--ghost:hover,
.header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--ghost:hover,
.navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--ghost:hover {
  color: #fff;
  background: var(--landing-primary);
  border-color: var(--landing-primary);
}

.header .navbar-nav .nav-item a.landing-nav-action--solid:hover,
.header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--solid:hover,
.navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--solid:hover {
  color: #fff;
  background: var(--landing-secondary);
  border-color: var(--landing-secondary);
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action,
.navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action {
  color: var(--landing-primary);
  background: var(--landing-soft);
  border-color: var(--landing-border);
}

.header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--solid,
.navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--solid {
  color: #fff;
  background: var(--landing-primary);
  border-color: var(--landing-primary);
}

.access-register-note {
  font-size: 14px;
  color: var(--landing-text);
}

.access-register-note a {
  color: var(--landing-primary);
  font-weight: 800;
  text-decoration: none;
}

.access-register-note a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .header .navbar-nav .nav-item.nav-access-item {
    display: block;
    margin: 8px 0 0;
  }

  .header .navbar-nav .nav-item a.landing-nav-action {
    width: 100%;
    justify-content: center;
  }
}

/* FERPOS landing repair: contrast, compact public UI and register form */
.ferpos-main-site .header .navbar-nav .nav-item a.landing-nav-action,
.ferpos-main-site .header .navbar-nav .nav-item a.landing-nav-action span,
.ferpos-main-site .header .navbar-nav .nav-item a.landing-nav-action svg {
  color: #fff !important;
}

.ferpos-main-site .header .navbar-nav .nav-item a.landing-nav-action--solid,
.ferpos-main-site .header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--solid,
.ferpos-main-site .navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--solid {
  background: #0b1f3a !important;
  border-color: #0b1f3a !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(7, 27, 58, .18) !important;
}

.ferpos-main-site .header .navbar-nav .nav-item a.landing-nav-action--solid:hover,
.ferpos-main-site .header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--solid:hover,
.ferpos-main-site .navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--solid:hover {
  background: #1f6feb !important;
  border-color: #1f6feb !important;
  color: #fff !important;
}

.ferpos-main-site .header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--ghost,
.ferpos-main-site .navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--ghost {
  background: #eef5ff !important;
  border-color: #d9e8fb !important;
  color: #0b1f3a !important;
}

.ferpos-main-site .header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--ghost span,
.ferpos-main-site .header .navbar-area.sticky .navbar-nav .nav-item a.landing-nav-action--ghost svg,
.ferpos-main-site .navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--ghost span,
.ferpos-main-site .navbar-collapse.show .navbar-nav .nav-item a.landing-nav-action--ghost svg {
  color: #0b1f3a !important;
}

.ferpos-main-site .main-btn,
.ferpos-main-site .spal-main-btn,
.ferpos-main-site .landing-cta-btn,
.ferpos-main-site .btn-accent,
.ferpos-main-site .btn-brand,
.ferpos-main-site .btn-register-contrast {
  background: #0b1f3a !important;
  border-color: #0b1f3a !important;
  color: #fff !important;
}

.ferpos-main-site .main-btn:hover,
.ferpos-main-site .spal-main-btn:hover,
.ferpos-main-site .landing-cta-btn:hover,
.ferpos-main-site .btn-accent:hover,
.ferpos-main-site .btn-brand:hover,
.ferpos-main-site .btn-register-contrast:hover {
  background: #1f6feb !important;
  border-color: #1f6feb !important;
  color: #fff !important;
}

.ferpos-main-site .spal-white-btn,
.ferpos-main-site .btn-light,
.ferpos-main-site .border-btn {
  background: #fff !important;
  border-color: #fff !important;
  color: #0b1f3a !important;
}

.ferpos-main-site .spal-white-btn:hover,
.ferpos-main-site .btn-light:hover,
.ferpos-main-site .border-btn:hover {
  background: #eef5ff !important;
  border-color: #eef5ff !important;
  color: #0b1f3a !important;
}

.ferpos-main-site .hero-section {
  padding-top: 118px !important;
  padding-bottom: 58px !important;
}

.ferpos-main-site .ferpos-section,
.ferpos-main-site .feature-section,
.ferpos-main-site .about-section,
.ferpos-main-site .feature-extended-section,
.ferpos-main-site .landing-plan-section,
.ferpos-main-site .spal-subscribe-section {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.ferpos-main-site .pt-120,
.ferpos-main-site .pt-100,
.ferpos-main-site .pt-80 {
  padding-top: 56px !important;
}

.ferpos-main-site .pb-80,
.ferpos-main-site .pb-100 {
  padding-bottom: 56px !important;
}

.ferpos-main-site .section-title,
.ferpos-main-site .ferpos-section-title {
  margin-bottom: 26px !important;
}

.ferpos-register-section {
  padding-top: 106px !important;
}

.ferpos-register-card,
.ferpos-register-summary {
  padding: 24px !important;
}

.ferpos-register-head {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.ferpos-form-block {
  padding: 16px;
  border: 1px solid rgba(11, 31, 58, .10);
  border-radius: 18px;
  background: rgba(248, 251, 255, .74);
  margin-bottom: 14px;
}

.ferpos-form-block-title {
  font-size: 13px;
  font-weight: 900;
  color: #0b1f3a;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.ferpos-register-card .form-label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #0b1f3a;
}

.ferpos-register-card .form-control,
.ferpos-register-card .form-select,
.ferpos-register-card .btn {
  min-height: 44px;
  border-radius: 12px;
  font-size: 14px;
}

.ferpos-identity-group .form-select {
  max-width: 135px;
}

.ferpos-register-card textarea.form-control {
  min-height: 78px;
}

.registro-methods,
.registro-period-grid {
  display: grid;
  gap: 8px;
}

.registro-choice {
  display: block;
  margin: 0;
}

.registro-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.registro-choice span {
  display: grid;
  gap: 2px;
  padding: 12px 13px;
  border: 1px solid rgba(11, 31, 58, .13);
  border-radius: 14px;
  background: #fff;
  color: #0b1f3a;
}

.registro-choice input:checked + span {
  border-color: #1f6feb;
  box-shadow: 0 0 0 3px rgba(31, 111, 235, .12);
}

.registro-choice strong {
  font-size: 14px;
}

.registro-choice small {
  font-size: 12px;
  color: #667085;
}

.ferpos-checkline {
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 58, .10);
  border-radius: 14px;
  background: #fff;
}

.ferpos-register-summary {
  top: 96px !important;
}

.ferpos-register-summary .display-6 {
  font-size: clamp(1.9rem, 4vw, 2.45rem);
}

@media (max-width: 991px) {
  .ferpos-main-site .hero-section {
    padding-top: 96px !important;
    padding-bottom: 44px !important;
  }

  .ferpos-main-site .ferpos-section,
  .ferpos-main-site .feature-section,
  .ferpos-main-site .about-section,
  .ferpos-main-site .feature-extended-section,
  .ferpos-main-site .landing-plan-section,
  .ferpos-main-site .spal-subscribe-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .ferpos-register-card,
  .ferpos-register-summary {
    padding: 18px !important;
  }

  .ferpos-form-block {
    padding: 14px;
  }
}
