:root {
  --page-bg: #0B2139;
  --accent: #6edfee;
  --button: #0f7cbc;
  --button-hover: #1092dc;
  --text: #ffffff;
  --muted: #e8f2f7;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.9375rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 5px 36px 5px;
  background-color: rgba(11, 33, 57, 0.8);
}


.site-header .logo-mark img {
  max-width: 140px;
}
.navbar {
  padding: 0;
}

.navbar .container-fluid {
  padding: 0;
}
 
  
.navbar-nav {
  gap: clamp(14px, 1.8vw, 42px);
}

.navbar-dark .navbar-nav .nav-link {
  color: #f6f9fd;
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--accent);
}

.navbar-nav .dropdown {
  position: relative;
}

.dropdown-menu {
  --bs-dropdown-bg: #0c304d;
  --bs-dropdown-link-color: #ffffff;
  --bs-dropdown-link-hover-bg: #10476f;
  --bs-dropdown-link-hover-color: #ffffff;
      min-width: 16.5rem;
    margin-top: 0;
    padding: 10px 15px;
  border: 0;
  border-radius: 1.5rem;
  background: rgba(11, 33, 57, 0.98);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.2);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 0;
  width: 100%;
  height: 1.2rem;
}

.dropdown-item {
      border-radius: 1rem;
    padding: 8px 10px;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 1200px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  --bs-btn-bg: var(--button);
  --bs-btn-border-color: var(--button);
  --bs-btn-hover-bg: var(--button-hover);
  --bs-btn-hover-border-color: var(--button-hover);
  --bs-btn-active-bg: var(--button-hover);
  --bs-btn-active-border-color: var(--button-hover);
}

.header-btn,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-btn {
      min-width: 100px;
    min-height: 40px;
    padding: 6px 16px;
    font-size: 0.8rem;
}

 

.header-btn i,
.search-btn i {
  font-size: 0.72rem;
}

.search-btn {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  color: #ffffff;
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 118px 86px 70px;
}

.hero-row {
  min-height: calc(100vh - 188px);
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 20px 0 96px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.35;
}

.hero-cta {
  min-height: 42px;
  padding: 12px 20px;
  font-size: 0.8rem;
}

.hero-visual-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 78px;
}

.hero-visual-wrap video{
width: 100%;
}
.hero-visual {
  width: min(100%, 940px);
  aspect-ratio: 1.42;
  object-fit: cover;
  display: block;
}

.social-rail {
  position: absolute;
    right: 10px;
    top: 50%;
    display: grid;
    gap: 10px;
    transform: translateY(-28%);
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--page-bg);
  background: var(--accent);
  font-size: 1.04rem;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-rail a:hover,
.social-rail a:focus {
  background: #93f0f7;
  transform: translateY(-3px);
}

.features-section {
  
  padding: 72px 0 92px;
  background: #ffffff;
  color: #050505;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 50px;
}

.feature-item h2 {
  margin: 0 0 16px;
  color: #0f78bd;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.08rem;
}

.feature-item p {
  max-width: 390px;
  margin: 0;
  color: #050505;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.55;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  min-height: 40px;
  margin-top: auto;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.academy-scroll-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.academy-scroll-section.is-static {
  height: auto;
}

.academy-sticky {
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 58px 0;
}

.academy-track {
  display: flex;
  gap: 64px;
  will-change: transform;
  scroll-snap-type: x mandatory;
  padding: 0 8vw 18px;
  transition: transform 80ms linear;
}

.academy-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
  flex: 0 0 min(72rem, 72vw);
  min-height: 37rem;
  overflow: hidden;
  border-radius: 4rem;
  padding: 40px;
  color: #ffffff;
  background: #10285e;
  scroll-snap-align: center;
}
 

.academy-content {
  position: relative;
  z-index: 1;
  max-width: 43rem;
}

.academy-kicker {
  margin: 0 0 1.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.academy-card h2 {
  max-width: 45rem;
  margin: 0 0 1.6rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.28;
}

.academy-copy {
  max-width: 480px;
  margin: 0 0 4.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.22;
}

.academy-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  max-width: 45rem;
  margin-bottom: 4.2rem;
}

.academy-points div {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.academy-points img {
  max-width: 60px;
}
.academy-points i {
  color: #86ebf5;
  font-size: 2.9rem;
  line-height: 1;
}

.academy-points span {
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.35;
}

.academy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding:8px 20px;
  border-radius: 0.45rem;
  color: #020957;
  background: #8df2ff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.academy-btn:hover,
.academy-btn:focus {
  color: #020957;
  background: #b4f8ff;
}

.academy-art {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 35rem);
  max-height: 31rem;
  object-fit: contain;
}

.security-section {
  position: relative;
  background: url(../images/security-is-transparent.png) no-repeat center left;
  overflow: hidden;
  padding: 72px 0 72px;
  color: #ffffff;
  background-color: #09243a;
  background-size:80%
}

.security-row {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
}

.security-shape {
  position: absolute;
  display: block;
  pointer-events: none;
}

.security-shape-large {
  left: -8rem;
  top: 9rem;
  width: 52rem;
  height: 34rem;
  border-radius: 45% 55% 48% 52%;
  background: #1d4e83;
  opacity: 0.58;
  transform: rotate(2deg);
}

.security-shape-mid {
  left: 26rem;
  top: 24rem;
  width: 34rem;
  height: 13rem;
  border-radius: 50%;
  background: linear-gradient(100deg, #155478, #236bb0);
  opacity: 0.82;
  transform: rotate(-8deg);
}

.security-shape-small {
  left: 47rem;
  top: 5.5rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: linear-gradient(120deg, #16385f, #265ca0);
}

.security-shape-dot {
  left: 55rem;
  top: 17rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #2d66b4;
}

.security-title {
  max-width: 62rem;
  margin: 0;
  text-transform: uppercase;
}

.security-title span {
  display: block;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
  background: linear-gradient(90deg, #25b8f5, #5b74ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.security-title span:nth-child(1),
.security-title span:nth-child(3) {
  -webkit-text-stroke: 0.06rem #ffffff;
}

.security-content {
  display: grid;
  gap: 4.2rem;
  max-width: 48rem;
  margin-left: auto;
  padding-top: 1rem;
}

.security-feature {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: start;
  gap: 2rem;
}

.security-feature img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.security-feature h3 {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.18;
}

.security-feature p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.42;
}

.security-btn {
      justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 140px;
    min-height: 40px;
    border-radius: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;

}

.platform-section,
.payments-section {
  padding: 92px 0;
  background: #eeeeee;
  color: #050505;
}

.section-kicker {
  margin: 0 0 15px;
  color: #10243a;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.platform-copy,
.payments-copy {
  max-width: 44rem;
}

.platform-copy h2,
.payments-copy h2 {
  margin: 0 0 15px;
  color: #0f73bb;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
}

.platform-copy p:not(.section-kicker),
.payments-copy p:not(.section-kicker) {
  margin:0 0 15px;
  color: #050505;
  
  font-weight: 500;
  line-height: 1.48;
}

.platform-btn,
.payments-btn,
.reads-btn {
      display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px 30px 15px 30px;
}

.platform-art {
  display: block;
  width: min(100%, 58rem);
  margin-left: auto;
}

.awards-section {
  padding: 38px 86px 52px;
  background: #ffffff;
  color: #050505;
}

.awards-heading {
  max-width: 100rem;
  margin: 0 auto 4.4rem;
  text-align: center;
}

.awards-heading h2 {
  margin: 0 0 1.2rem;
  color: #0f73bb;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.awards-heading p {
  max-width: 91rem;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.awards-row {
  max-width: 96rem;
  margin: 0 auto;
}

.award-card {
  display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 20px;
    border: 1px solid #d9d9d9;
    border-radius: 0.7rem;
    background: #f7f7f7;
}

.award-card img {
  display: block;
  width: 13.5rem;
  height: 13.5rem;
  object-fit: contain;
  align-self: center;
  margin-bottom: 2.4rem;
}

.award-category {
  margin: 0 0 15px;
    color: #1380ca;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.award-card h3 {
  margin: 0 0 1rem;
  color: #333246;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.award-card p:last-child {
     margin: 0;
    color: #617483;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.38;
}

 

.payments-art {
  display: block;
  max-width:400px ;
  margin-left: auto;
}

.reads-section {
  padding: 92px 86px 78px;
  border-bottom: 2px solid #020957;
  background: #ffffff;
  color: #050505;
  text-align: center;
}

.reads-section h2 {
  margin: 0 0 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.reads-section p {
  margin: 0 0 3.4rem;
 
  font-weight: 500;
  line-height: 1.4;
}

.trade-anywhere-section {
  position: relative;
  min-height: 58rem;
  overflow: hidden;
  padding: 7.8rem 86px 24rem;
  color: #ffffff;
  background-image: url("https://finsaitrade.com/wp-content/uploads/2020/06/12.jpg");
  background-position: center top;
  background-size: cover;
  text-align: center;
}

.trade-anywhere-section::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 26rem;
  background: #ffffff;
  clip-path: polygon(0 30%, 50% 100%, 100% 30%, 100% 100%, 0 100%);
  pointer-events: none;
}

.trade-anywhere-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 42, 0.28), rgba(3, 7, 42, 0.04));
  pointer-events: none;
}

.trade-anywhere-content {
  position: relative;
  z-index: 1;
  max-width: 84rem;
  margin: 0 auto;
}

.trade-anywhere-content p {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
}

.trade-anywhere-content h2 {
  margin: 0 0 3rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.trade-app-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trade-store-btn {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-width: 220px;
    min-height: 60px;
    border-radius: 2.2rem;
    color: #07113a;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.18);
}

.trade-store-btn:hover,
.trade-store-btn:focus {
  color: #07113a;
  transform: translateY(-2px);
}

.trade-store-btn i {
  font-size: 1.8rem;
  line-height: 1;
}

.trade-store-blue {
  background: #0878ff;
}

.trade-store-teal {
  background: #17dfcb;
}

.trade-store-dark {
  color: #ffffff;
  background: #050505;
}

.trade-store-dark:hover,
.trade-store-dark:focus {
  color: #ffffff;
}

.newsletter-section {
  padding: 18px 0 0;
  background: #ffffff;
  padding-bottom:80px;
}

.newsletter-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.7fr);
  align-items: center;
  min-height: 20rem;
  overflow: hidden;
  border-radius: 40px;
  padding: 40px 80px;
  background: linear-gradient(115deg, #0878bd 0%, #20a0cd 48%, #7ae6ed 100%);
}

.newsletter-copy {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.newsletter-copy h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}

.newsletter-form {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 40px;
  border: 0.12rem solid rgba(255, 255, 255, 0.95);
  border-radius: 0.2rem;
  padding: 0 1rem;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form button {
 width: 240px;
    min-height: 40px;
  border: 0;
  border-radius: 0.7rem;
  color: #0f73bb;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter-plane {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 260px;
  
  transform: translate3d(var(--plane-x, 0rem), var(--plane-y, 0rem), 0) rotate(var(--plane-rotate, 0deg)) scale(var(--plane-scale, 1));
  transform-origin: 62% 42%;
  will-change: transform;
  transition: transform 80ms linear;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
  color: #ffffff;
  
  background: url(../images/footer-img.jpg) no-repeat center top;
  background-size:cover;
}

.footer-logo {
  margin: 0 auto 60px;
    transform: scale(1.3);
    transform-origin: center;
    display: block;
    max-width: 200px;
}

.footer-links h2 {
  margin: 0 0 1.8rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-links ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
}

.footer-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin:40px auto 0;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-email i {
  font-size: 0.86rem;
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-plane {
    transform: none;
    transition: none;
  }
}
 

@media (max-width: 1399.98px) {
  

  .hero-section {
    padding-inline: 56px;
  }

 

  .logo-text strong {
    font-size: 1.93rem;
  }

  .hero-copy h1 {
    font-size: 3.78rem;
  }

  .hero-copy p {
    font-size: 1.16rem;
  }

   

   

  

  .feature-item h2 {
    font-size: 1.28rem;
  }

  .feature-item p {
    font-size: 0.84rem;
  }

  .feature-btn {
    
    font-size: 0.7rem;
  }

  .academy-card {
    flex-basis: 78vw;
        padding: 40px;
  }

  .academy-card h2 {
    font-size: 2rem;
  }

  
  .security-section {
    
  }

  .security-title span {
    font-size: 4rem;
  }

  .security-feature h3 {
    font-size: 1.32rem;
  }

  .security-feature p {
    font-size: 0.8rem;
  }

  

  .trade-anywhere-section {
    padding-inline: 56px;
  }
 

  .newsletter-copy h2 {
    font-size: 1.8rem;
  }
  

}

@media (max-width: 1199.98px) {
  

  .navbar-collapse {
    margin-top: 20px;
    padding: 22px;
    border-radius: 8px;
    background: #0b2d49;
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 6px;
  }

  .header-actions {
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .hero-section {
    min-height: auto;
    padding: 32px 24px 56px;
  }

  .hero-row {
    min-height: auto;
    gap: 36px;
  }

  .hero-copy p {
    margin-bottom: 42px;
  }

  .hero-copy h1 {
    font-size: 2.98rem;
  }

  .hero-copy p {
    font-size: 0.66rem;
  }

  .hero-visual-wrap {
    padding-top: 0;
  }

  .social-rail {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 36px;
    transform: none;
  }

  .features-section {
    min-height: auto;
    padding: 64px 0;
  }

  

  .academy-track {
    gap: 32px;
    padding-inline: 24px;
  }

  .academy-card {
    grid-template-columns: 1fr;
    flex-basis: 86vw;
    min-height: auto;
    padding: 3rem;
  }

  .academy-art {
    justify-self: center;
    width: min(100%, 28rem);
    margin-top: 2rem;
  }

  .security-section {
    min-height: auto;
    padding: 64px 0;
  }

  .security-row {
    min-height: auto;
    gap: 48px;
  }

  .security-title span {
    font-size: 3.1rem;
  }

  .security-content {
    margin-left: 0;
  }

  .security-shape-large {
    left: -18rem;
  }

  .security-shape-mid {
    left: 10rem;
    top: 28rem;
  }

  .platform-section,
  .payments-section,
  .awards-section,
  .reads-section {
    padding: 64px 0;
  }

  .trade-anywhere-section {
    min-height: 48rem;
    padding: 5rem 24px 19rem;
  }

  .trade-anywhere-content p {
    font-size: 0.86rem;
  }

  .trade-anywhere-content h2 {
    font-size: 2.35rem;
  }

  .newsletter-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
   
  }

  .newsletter-plane {
    width: min(100%, 24rem);
  }

  .footer-logo {
    margin-bottom: 5rem;
    transform: none;
  }

  .platform-art,
  .payments-art {
    margin-inline: auto;
  }

  .awards-row {
    max-width: 36rem;
  }

  .award-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  
  .logo-symbol {
    width: 38px;
    height: 52px;
  }

  .logo-text strong {
    font-size: 1.4rem;
  }

  .logo-text small {
    font-size: 0.48rem;
    letter-spacing: 9px;
  }

  .hero-section {
    padding-inline: 18px;
  }

  .hero-copy h1 {
    font-size: 2.28rem;
  }

  .hero-copy p {
    font-size: 0.7rem;
  }

  .hero-cta,
  .header-btn,
  .header-btn-wide {
    width: 100%;
    min-width: 0;
  }

  .search-btn {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .social-rail {
    gap: 12px;
  }

  .social-rail a {
    width: 46px;
    height: 46px;
    font-size: 0.66rem;
  }

  .features-section {
    padding: 48px 0;
  }

  .feature-item {
    align-items: center;
    min-height: auto;
    text-align: center;
  }

  .feature-icon {
    width: 7rem;
    height: 7rem;
    margin-bottom: 28px;
  }

  .feature-item h2 {
    font-size: 0.86rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }

  .feature-btn {
    width: 100%;
    min-width: 0;
    margin-top: 32px;
    font-size: 0.66rem;
  }

  .academy-scroll-section {
    height: auto;
  }

  .academy-sticky {
    min-height: auto;
    padding: 36px 0;
  }

  .academy-track {
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-inline: 18px;
    scrollbar-width: none;
  }

  .academy-track::-webkit-scrollbar {
    display: none;
  }

  .academy-card {
    flex-basis: 88vw;
    border-radius: 2rem;
    padding: 2rem 1.4rem;
  }

  

  .academy-card h2 {
    font-size: 1.8rem;
  }

  

  .academy-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2.4rem;
  }

  .academy-points i {
    font-size: 2.2rem;
  }

  .academy-points span {
    font-size: 0.78rem;
  }

  .academy-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.68rem;
  }

  .security-section {
    padding: 48px 0;
  }

  .security-title span {
    font-size: 2.25rem;
  }

  .security-content {
    gap: 2.4rem;
  }

  .security-feature {
    grid-template-columns: 4.2rem 1fr;
    gap: 1rem;
  }

  .security-feature img {
    width: 4rem;
    height: 4rem;
  }

  .security-feature h3 {
    font-size: 0.84rem;
  }

  .security-feature p {
    font-size: 0.72rem;
  }

  .security-btn {
    justify-self: stretch;
    min-width: 0;
    font-size: 0.68rem;
  }

  .platform-section,
  .payments-section,
  .awards-section,
  .reads-section {
    padding: 48px 0;
  }

  .trade-anywhere-section {
    min-height: 38rem;
    padding: 4rem 0 14rem;
  }

  .trade-anywhere-section::after {
    height: 13rem;
  }

   

  .platform-copy h2,
  .payments-copy h2,
  .awards-heading h2 {
    font-size: 2rem;
  }

  .platform-copy p:not(.section-kicker),
  .payments-copy p:not(.section-kicker),
  .awards-heading p,
  .reads-section p {
    font-size: 1.1rem;
  }

  .platform-btn,
  .payments-btn,
  .reads-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.68rem;
  }

  .trade-anywhere-content p {
    font-size: 0.8rem;
  }

  .trade-anywhere-content h2 {
    font-size: 1.8rem;
  }

  .trade-app-actions {
    display: grid;
  }

  .trade-store-btn {
    min-width: 0;
    min-height: 3.8rem;
    font-size: 0.72rem;
  }

  .trade-store-btn i {
    font-size: 0.86rem;
  }

  .newsletter-panel {
    border-radius: 2rem;
 
  }

  .newsletter-copy h2 {
    font-size: 1.45rem;
    line-height: 1.45;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    font-size: 0.72rem;
  }

  .newsletter-plane {
    width: min(100%, 18rem);
  }

  .site-footer {
    padding: 4rem 0 2.4rem;
  }

  

  .footer-links a {
    font-size: 0.72rem;
  }

  .footer-email {
    font-size: 0.8rem;
  }

  .award-card {
    padding: 15px;
  }

  .award-card h3 {
    font-size: 0.92rem;
  }

  .award-card p:last-child {
    font-size: 0.72rem;
  }

  .reads-section h2 {
    font-size: 0.96rem;
  }
}

.legal-disclaimer-section {
  padding: 2rem 0 3rem;
  color: #8a8a8a;
  background: #000000;
}

.legal-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.legal-topline p,
.legal-credit {
  color: #0878bd;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
 
}

.legal-topline p {
  margin: 0;
}

.legal-credit {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
}

.legal-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.45rem;
  min-width: 18rem;
}

.legal-socials a {
  display: inline-flex;
  color: #0878bd;
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
}

.legal-socials a:hover,
.legal-socials a:focus,
.legal-copy a {
  color: #0a91dc;
}

.legal-copy {
      display: grid;
    gap: 12px;
}

.legal-copy p {
  margin: 0;
    color: #8a8a8a;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.legal-copy a {
  font-weight: 800;
  text-decoration: none;
}

.ib-page {
  padding-top: 4.8rem;
  background: #ffffff;
  color: #0a0f16;
}

.ib-page .container {
  max-width: 1180px;
}

.ib-simple-hero {
  padding: 4.4rem 0 4.2rem;
}

.ib-hero-box {
  max-width: 27rem;
}

.ib-hero-box h1,
.ib-dark-intro h2,
.ib-why h2,
.ib-referral-simple h2,
.ib-portal h2,
.ib-marketing-simple h2,
.ib-process-simple h2,
.ib-faq-simple h2 {
  margin: 0 0 1.2rem;
  color: #151923;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.65;
  text-transform: uppercase;
}

.ib-hero-box p,
.ib-dark-intro p,
.ib-referral-simple p,
.ib-marketing-simple p,
.ib-process-simple p {
 margin: 0 0 1.6rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
}

.ib-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 60px;
}

.ib-blue-btn {
    border-radius: 0.45rem;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 12px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.ib-dark-intro,
.ib-portal {
  padding: 2rem 0;
  color: #ffffff;
  background: #13275f;
}

.ib-dark-intro h2,
.ib-portal h2,
.ib-portal h3,
.ib-portal p {
  color: #ffffff;
}

.ib-dark-intro p {
  max-width: 35rem;
}

.ib-why,
.ib-referral-simple,
.ib-marketing-simple,
.ib-process-simple,
.ib-faq-simple {
  padding: 4rem 0;
}

.ib-why h2,
.ib-marketing-simple h2,
.ib-process-simple h2 {
  text-align: center;
}

.ib-why h2 {
  margin-bottom: 60px;
}
.ib-feature {
  max-width: 18rem;
  margin-inline: auto;
  text-align: left;
}

.ib-feature img {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.ib-feature h3,
.ib-material h3,
.ib-process-simple h3 {
  margin: 0 0 0.8rem;
  color: #151923;
  font-size: 1.35rem;
  font-weight: 500;
}

.ib-feature p,
.ib-material p,
.ib-process-simple article p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.ib-referral-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.ib-referral-grid article {
  display: grid;
  place-items: center;
  min-height: 10rem;
  border: 0.1rem solid #e0e0e0;
  border-radius: 0.7rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
}

.ib-referral-grid strong,
.ib-process-simple strong {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #ffffff;
    background: #168bd5;
    font-size: 50px;
    font-weight: 500;
}

.ib-referral-grid span {
  font-size: 15px;
    font-weight: 600;
}

.ib-portal h2 {
  text-align: center;
  text-transform: capitalize;
}

.ib-portal h3 {
  margin: 2rem 0 1.5rem;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

.ib-portal ul {
  display: grid;
  gap: 1rem;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}

.ib-portal li {
      position: relative;
    padding-left: 2rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.ib-portal li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #8ee7ff;
  font-weight: 900;
  background: url(../images/icon-finsaitrade.png);
  background-size: contain;
  width: 20px;
  height: 20px;
}

.ib-marketing-simple > .container > p {
  max-width: 68rem;
  margin-inline: auto;
  text-align: left;
}

.ib-material {
  max-width: 18rem;
  margin-inline: auto;
}
.ib-material img {
  max-width: 100px;
      margin-bottom: 20px;
}

.ib-material i {
  color: #168bd5;
  font-size: 4rem;
}

.ib-material a {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.6rem 1rem;
  color: #ffffff;
  background: #050505;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.ib-process-simple {
  text-align: center;
}

.ib-process-row {
  margin-top: 2.8rem;
}

.ib-process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  text-align: left;
}

.ib-process-step .ib-process-text {
  padding-top: 0.8rem;
}

.ib-process-step h3 {
  margin-bottom: 1.15rem;
  color: #2f73bd;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}

.ib-process-step p {
  max-width: 18rem;
  color: #627080;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.55;
}

.ib-process-simple strong {
  flex: 0 0 6rem;
  width: 6rem;
  height: 6rem;
  background: #3d86df;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1;
}

.ib-process-simple .ib-blue-btn {
  margin-top: 3rem;
}

.ib-faq-simple {
  padding-top: 2rem;
}

.ib-faq-simple h2 {
  font-size: 1.1rem;
}

.ib-faq-simple .accordion {
  margin-bottom: 1.5rem;
}

.ib-faq-simple .accordion-button {
  font-size: 1rem;
    font-weight: 500;
}

.ib-faq-simple .accordion-body {
  font-size: 0.82rem;
  font-weight: 600;
}


.img-round {
  border-radius: 10px;
}
.img-width{
  max-width: 380px;
}

@media (max-width: 767.98px) {
  .ib-referral-grid {
    grid-template-columns: 1fr;
  }

  .ib-process-simple article {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ib-process-step p {
    max-width: 24rem;
  }
}

@media (max-width: 767.98px) {
  .legal-topline {
    display: grid;
  }

  .legal-socials {
    justify-content: flex-start;
    min-width: 0;
  }

  .legal-topline p,
  .legal-credit,
  .legal-copy p {
    font-size: 0.82rem;
  }
}
