* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #080808;
  background: #e7e7e7;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.index-page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

:root {
  --lime: #eff50b;
  --turquoise: #00d3c2;
  --dark: #303030;
  --grey: #8c8c8c;
  --light-grey: #ededed;
}

.index-header {
  height: 100px;
  background: #fff;
  border-bottom: 1px solid #c9c9c9;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.14);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.index-header-inner {
  width: calc(100% - 120px);
  max-width: 1450px;
  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  width: 42px;
  height: 42px;
  position: relative;
  display: block;
}

.brand-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
}

.dot-1 { left: 17px; top: 0; }
.dot-2 { left: 9px; top: 8px; }
.dot-3 { left: 25px; top: 8px; }
.dot-4 { left: 1px; top: 16px; }
.dot-5 { left: 17px; top: 16px; }
.dot-6 { left: 33px; top: 16px; }
.dot-7 { left: 9px; top: 24px; }
.dot-8 { left: 25px; top: 24px; }
.dot-9 { left: 17px; top: 32px; }

.main-navigation {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 17px;
}

.main-navigation a {
  position: relative;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #111;
  transition: 0.25s;
}

.main-navigation a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.login-button,
.register-button {
  min-width: 100px;
  padding: 10px 22px;
  font-size: 17px;
  border-radius: 0;
}

.login-button {
  background: #fff;
  border: 1px solid #888;
}
.login-button:hover, 
.register-button:hover{
   background: var(--lime);
   BORDER: NONE;
}
.register-button {
  background: #aaa;
  border: 1px solid #aaa;
  color: #fff;
}

.hero-section {
  background: #f2f2f2;
  padding: 50px 105px 0;
}

.hero-image-wrapper {
  height: 650px;
  max-width: 1380px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background: #10243c;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 14, 30, 0.4),
      rgba(2, 14, 30, 0.06)
    );
}

.hero-content {
  position: absolute;
  left: 10%;
  top: 34%;
  color: white;
}

.hero-title-box {
  padding: 0 20px 0 0;
}

.hero-content h1 {
  margin: -9px 0 -5px;
  font-size: 90px;
  line-height: 1;
  font-weight: 400;
}

.hero-content h1 strong {
  font-weight: 700;
}

.hero-actions {
  margin-top: 45px;
  display: flex;
  gap: 14px;
}

.lime-button,
.dark-transparent-button {
  border: 0;
  min-width: 150px;
  padding: 15px 30px;
}

.lime-button {
  background: #edf50bb7;
  color: #111;
  font-size: 19px;
}

.dark-transparent-button {
  color: white;
  background: #9e9b9b88;
  font-size: 19px;
}

.hero-small-text {
  font-size: 13px;
  margin-top: 15px;
}

.hero-info-card {
  position: absolute;
  left: 52%;
  top: 51%;
  width: 37%;
  max-width: 400px;
  background: var(--lime);
  padding: 26px 28px;
  font-size: 16px;
  line-height: 1.35;
}

.statistics-section {
  padding: 45px 80px;
  background: #fff;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.stat-box {
  min-height: 245px;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 90px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-number span {
  font-size: 70px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.2px #000;
}

.stat-box p {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 0;
}

.stocks-section {
  background: #e9e9e9;
  padding-top: 45px;
}

.stocks-board {
  width: 90%;
  height: 220px;
  background-color: white;
  margin: auto;
  margin-bottom: 45px;
  position: relative;
  overflow: hidden;
}

.stocks-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e5e5e5 1px, transparent 1px),
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 75px 75px;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.9) 12%,
      rgba(0, 0, 0, 0.35) 27%,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 52%,
      transparent 65%,
      rgba(0, 0, 0, 0.65) 78%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.9) 12%,
      rgba(0, 0, 0, 0.35) 27%,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 52%,
      transparent 65%,
      rgba(0, 0, 0, 0.65) 78%,
      transparent 100%
    );
  pointer-events: none;
  margin: 10px;
}
.stocks-board h2,
.stocks-board .stock-square {
  z-index: 2;
}
.stocks-board h2 {
  position: absolute;
  left: 10%;
  top: 27%;
  font-size: 38px;
  font-weight: 400;
}

.stock-square {
  position: absolute;
  width: 74px;
  height: 74px;
  background: #626262;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.apple {
  left: 28%;
  top: 26%;
}

.google {
  left: 44%;
  top: 26%;
}

.amazon {
  left: 39%;
  top: 64%;
}

.nvidia {
  left: 55%;
  top: 0;
}

.tesla {
  left: 61%;
  top: 64%;
}

.microsoft {
  left: 72%;
  top: 26%;
}

.market-ticker {
  min-height: 72px;
  margin-top: 0;
  padding: 0 7%;
  background: #aaaaaab2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1px;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
}

.market-ticker span {
  border-right: 1px solid #7f7f7f;
  padding-right: 10px;
  font-weight: 600;
}

.positive {
  color: white;
  padding: 0 10px;
}

.negative {
  color:#00c9a7FF;
}

.trading-tool-section {
  background: #efeded;
  padding: 100px 12% 70px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.section-heading-row h2 {
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 400;
  margin: 0;
  flex: 1;
  line-height: 1;
}

.section-heading-row h2 strong {
  font-weight: 700;
}

.section-heading-row p {
  width: 36%;
  font-size: 15px;
}

.explore-arrow-button {
  min-width: 160px;
  padding: 11px 20px 11px 24px;
  background: var(--lime);
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.explore-arrow-button span {
  font-size: 24px;
  border-left: 1px solid #d8dd00;
  padding-left: 15px;
}

.tool-cards {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tool-card {
  background-color: transparent;
  min-height: 370px;
  background-image: none;
}

.tool-card-title {
  min-height: 115px;
  background: #8b8989;
  color: #fff;
  padding: 35px 30px;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.tool-card p {
  margin: 0;
  padding: 28px 30px;
  min-height: 215px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.tool-card p::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e5e5e5 1px, transparent 1px),
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image:
    linear-gradient(
      45deg,
      transparent 0%,
      rgba(0, 0, 0, 0.9) 12%,
      rgba(0, 0, 0, 0.35) 27%,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 52%,
      transparent 65%,
      rgba(0, 0, 0, 0.65) 78%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(0, 0, 0, 0.9) 12%,
      rgba(0, 0, 0, 0.35) 27%,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 52%,
      transparent 65%,
      rgba(0, 0, 0, 0.65) 78%,
      transparent 100%
    );
  pointer-events: none;
  z-index: -1;
}


.benefits-section {
  min-height: 355px;
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 55px 12%;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e5e5e5 1px, transparent 1px),
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 75px 75px;
  -webkit-mask-image:
    linear-gradient( 90deg, 
    transparent 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.35) 27%, transparent 40%, rgba(0, 0, 0, 0.7) 52%, 
    transparent 65%, rgba(0, 0, 0, 0.65) 78%, transparent 100%);
  mask-image:
    linear-gradient( 90deg, 
    transparent 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.35) 27%, transparent 40%, rgba(0, 0, 0, 0.7) 52%, 
    transparent 65%, rgba(0, 0, 0, 0.65) 78%, transparent 100%);
  pointer-events: none;
}

.benefit-item {
  position: relative;
  z-index: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: #eff50b;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}

.benefit-icon .dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}
.single-dot .dot {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.five-dots .dot-top {
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
}
.five-dots .dot-left {
  top: 22px;
  left: 11px;
}
.five-dots .dot-center {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.five-dots .dot-right {
  top: 22px;
  right: 11px;
}
.five-dots .dot-bottom {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.six-dots {
  display: grid;

  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(4, 6px);

  justify-content: center;
  align-content: center;

  column-gap: 5px;
  row-gap: 2px;
}

.six-dots .dot {
  position: static;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

.six-dots .dot-1 {
  grid-column: 2;
  grid-row: 1;
}

.six-dots .dot-2 {
  grid-column: 1;
  grid-row: 2;
}

.six-dots .dot-3 {
  grid-column: 3;
  grid-row: 2;
}

.six-dots .dot-4 {
  grid-column: 1;
  grid-row: 3;
}

.six-dots .dot-5 {
  grid-column: 3;
  grid-row: 3;
}

.six-dots .dot-6 {
  grid-column: 2;
  grid-row: 4;
}
.benefit-item h3 {
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
  margin: 18px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.benefit-item small {
  display: block;
  font-size: 26px;
}
.benefit-item p {
  max-width: 330px;
  margin: auto;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.global-markets-section {
  background: #eee;
  padding: 85px 8%;
}

.global-market-card {
  background: #fff;
  max-width: 1220px;
  margin: auto;
  padding: 65px 9%;
  text-align: center;
}

.global-market-card h2 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.global-market-card h2 strong {
  font-weight: 700;
}

.market-subtitle {
  font-size: 13px;
  margin: 8px 0 40px;
}

.market-filters {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 13px;
  margin-bottom: 45px;
}

.market-filter {
  background: #b7b7b7;
  border: 0;
  padding: 13px 15px;
  transition: 0.2s;
}

.market-filter:hover,
.market-filter.active {
  background: var(--lime);
}

.market-table-wrapper {
  border: 2px solid #00c8bb;
  overflow-x: auto;
}

.market-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: #08172b;
  color: #d8e4ec;
  text-align: left;
}

.market-table th {
  font-size: 9px;
  color: #668098;
  padding: 17px;
}

.market-table td {
  padding: 15px 17px;
  font-size: 11px;
  border-bottom: 1px solid #10243c;
}

.market-category {
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 8px;
}

.market-category.forex {
  background: #093c42;
  color: #13e6b6;
}

.market-category.crypto {
  background: #583c0a;
  color: #ffc23e;
}

.market-category.metals {
  background: #521d25;
  color: #ff6884;
}

.market-category.indices {
  background: #40265e;
  color: #b083ff;
}

.market-category.stocks {
  background: #12365e;
  color: #56a7ff;
}

.market-category.energy {
  background: #47320c;
  color: #f9b835;
}

.trade-button {
  border: 0;
  padding: 7px 22px;
  border-radius: 5px;
  background: #00e3c1;
  font-size: 9px;
}

.view-markets-button {
  margin-top: 24px;
  padding: 13px 24px;
  background: #10243c;
  color: white;
  border: 1px solid #27405d;
}

.different-section {
  background: #fff;
  padding-top: 75px;
}

.different-section > h2 {
  max-width: 1380px;
  margin: 0 auto 25px;
  padding: 0 7%;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 400;
}

.different-grid {
  padding: 70px 7%;
  background: #d0cece;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.difference-card {
  min-height: 440px;
  background: var(--lime);
  padding: 30px;
  position: relative;
}

.difference-icon {
  height: 150px;
  text-align: right;
  color: #fff;
  opacity: 0.7;
  font-size: 90px;
  font-weight: 100;
}

.difference-card h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 0.9;
  margin: 18px 0;
}

.difference-card p {
  font-size: 13px;
  line-height: 1.65;
}

.difference-card > span {
  position: absolute;
  bottom: 40px;
  font-size: 13px;
}

.broker-section {
  width: calc(100% - 90px);
  max-width: 1450px;
  margin: 70px auto;
  background: #666;
  color: white;
  padding: 50px;
}

.broker-section h2 {
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 300;
  margin: 0 0 40px;
}

.broker-markets {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.broker-market-card {
  min-height: 220px;
  border: 1px solid #bbb;
  text-align: center;
  padding: 25px 10px;
}

.broker-icon {
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.broker-market-card h3 {
  margin: 12px 0 6px;
  font-size: 22px;
}

.broker-market-card p {
  font-size: 13px;
  color: #ddd;
  margin: 6px;
}

.broker-market-card button {
  margin-top: 18px;
  width: 24px;
  height: 24px;
  border: 0;
  background: var(--lime);
}

.steps-section {
  padding: 50px 10% 90px;
  background: #fff;
}

.steps-card {
  max-width: 1320px;
  margin: auto;
  padding: 70px 10%;
  background: #faf6f6;
}

.steps-card h2 {
  margin: 0 0 55px;
  font-size: clamp(44px, 5vw, 65px);
  font-weight: 400;
}

.steps-line {
  display: flex;
  align-items: flex-start;
}

.step-item {
  flex: 1;
  position: relative;
}

.step-icon {
  margin: auto;
  width: 83px;
  height: 83px;
  border: 4px solid #bbb;
  border-radius: 50%;
  color: #aaa;
  font-size: 35px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-connector {
  width: 15%;
  margin: 39px -6% 0;
  border-top: 3px dashed #bbb;
}

.step-number {
  display: block;
  font-size: 70px;
  color: #c8c8c8CC;
  margin-top: 18px;
}

.step-item p {
  font-size: 15px;
  max-width: 220px;
  line-height: 1.25;
}

.step-line-bottom {
  width: 95px;
  height: 12px;
  background: var(--lime);
  display: block;
  margin-top: 25px;
}

.faq-section {
  background: #fff;
  padding: 0 12% 100px;
}

.faq-label {
  font-weight: 600;
  font-size: 18px;
}

.faq-section > h2 {
  margin: 8px 0 60px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
}

.faq-content {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 55px;
  align-items: start;
}

.faq-image-wrapper img {
  width: 100%;
  display: block;
}

.faq-item {
  padding: 0 0 30px;
  margin-bottom: 28px;
  border-bottom: 1px solid #aaa;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-section {
  background: #303030;
  color: white;
  padding: 80px 12%;
}

.contact-inner {
  max-width: 1320px;
  margin: auto;
}

.contact-inner h2 {
  font-size: clamp(45px, 5vw, 68px);
  margin: 0;
  font-weight: 300;
}

.contact-inner h2 strong {
  font-weight: 600;
}

.contact-inner > p {
  margin: 7px 0 60px;
  font-size: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 55px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  font-size: 14px;
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  outline: none;
  color: white;
  background: #555;
  padding: 14px;
}

.contact-form input {
  height: 48px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00cabe;
}

.message-field {
  grid-column: 1 / -1;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-submit {
  width: 180px;
  padding: 13px 20px;
  border: 0;
  background: var(--lime);
  color: #111;
}

.index-footer {
  background: #dedede;
  padding: 65px 12% 35px;
}

.footer-inner {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 70px;
}

.footer-brand {
  max-width: 230px;
}

.footer-logo {
  font-size: 30px;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  font-size: 14px;
  line-height: 1.55;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h4 {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 600;
}

.footer-column a {
  margin-bottom: 7px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.global-markets-section {
  background: #eee;
  padding: 85px 8%;
}

.global-market-card {
  background: #2e2b2b;
  max-width: 1220px;
  margin: auto;
  padding: 65px 9%;
  text-align: center;
}

.global-market-card h2 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  margin: 0;
  line-height: 1;
  color: white;
}

.ticker-wrapper {
  height: 60px;
  overflow: hidden;
}

.global-market-card h2 strong {
  font-weight: 700;
}

.market-subtitle {
  font-size: 17px;
  margin: 8px 0 40px;
   color: white;
    line-height: 2.8;

}

.market-filters {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 13px;
  margin-bottom: 45px;
}

.market-filter {
  background: #b7b7b7;
  border: 0;
  padding: 13px 15px;
  cursor: pointer;
}

.market-filter.active {
  background: #eff50b;
}

.external-market-component {
  width: 100%;
}

.market-placeholder {
  min-height: 460px;
  border: 2px solid #00c8bb;
  background: #08172b;
}

.market-placeholder-header {
  min-height: 60px;
  display: grid;
  grid-template-columns:
    1.4fr
    1.3fr
    1fr
    1fr
    0.8fr
    1fr
    0.8fr;

  align-items: center;
  color: #668098;
  font-size: 9px;
  text-align: left;
  padding: 0 20px;
}

.market-placeholder-body {
  padding: 0 20px;
}

.market-placeholder-row {
  height: 54px;
  border-top: 1px solid #10243c;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 98%,
      rgba(255,255,255,0.02) 98%
    );
}

.view-markets-button {
  margin-top: 24px;
  padding: 13px 24px;
  background: #10243c;
  color: white;
  border: 1px solid #27405d;
  cursor: pointer;
}

button {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.lime-button:hover,
.explore-arrow-button:hover,
.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.dark-transparent-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
}

.explore-arrow-button span {
  transition: transform 0.25s ease;
}

.explore-arrow-button:hover span {
  transform: translate(4px, -4px);
}

.stat-box {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.stat-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.stat-box:hover::after {
  left: 140%;
}

.stock-square {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.stock-square:hover {
  transform: translateY(-7px) scale(1.06);
  background: #505050;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.tool-card {
  transition: transform 0.35s ease;
}

.tool-card-title {
  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
}

.tool-card p {
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.tool-card:hover {
  transform: translateY(-7px);
}

.tool-card:hover .tool-card-title {
  background: #777;
}

.tool-card:hover p {
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.07);
}

.benefit-icon {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.benefit-item:hover .benefit-icon {
  transform: rotate(12deg) scale(1.12);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.benefit-icon .dot {
  transition: transform 0.25s ease;
}

.benefit-item:hover .benefit-icon .dot {
  transform: scale(1.25);
}

.five-dots .dot-top,
.five-dots .dot-center,
.five-dots .dot-bottom {
  transform: translateX(-50%);
}

.benefit-item:hover .five-dots .dot-top,
.benefit-item:hover .five-dots .dot-center,
.benefit-item:hover .five-dots .dot-bottom {
  transform: translateX(-50%) scale(1.25);
}

.benefit-item h3 {
  transition: transform 0.3s ease;
}

.benefit-item:hover h3 {
  transform: translateY(-2px);
}

.market-filter {
  position: relative;
  overflow: hidden;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.market-filter:hover {
  transform: translateY(-3px);
}

.difference-card {
  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.difference-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.difference-card:hover::after {
  left: 140%;
}

.broker-market-card {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.broker-market-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--lime);
}

.broker-icon {
  transition: transform 0.35s ease;
}

.broker-market-card:hover .broker-icon {
  transform: scale(1.12);
}

.broker-market-card button {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.broker-market-card:hover button {
  transform: translate(3px, -3px);
}

.step-icon {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.08);
  border-color: var(--lime);
}

.step-number {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.step-item:hover .step-number {
  color: #111;
  transform: translateX(5px);
}

.step-line-bottom {
  transition: width 0.35s ease;
}

.step-item:hover .step-line-bottom {
  width: 135px;
}

.faq-item {
  transition:
    padding-left 0.3s ease,
    border-color 0.3s ease;
}

.faq-item:hover {
  padding-left: 12px;
  border-color: var(--lime);
}

.faq-item h3 {
  transition: transform 0.3s ease;
}

.faq-item:hover h3 {
  transform: translateX(4px);
}

.contact-form input,
.contact-form textarea {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  background: #5c5c5c;
}

.contact-form input:focus,
.contact-form textarea:focus {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-column a {
  position: relative;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.25s ease;
}

.footer-column a:hover {
  transform: translateX(4px);
  text-decoration: none;
}

.footer-column a:hover::after {
  width: 100%;
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


@media (min-width: 751px) and (max-width: 1100px) {
  .index-header {
    height: 85px;
  }
  .index-header-inner {
    width: calc(100% - 40px);
    gap: 20px;
  }
  .brand-logo {
    flex-shrink: 0;
  }
  .main-navigation {
    gap: 16px;
    font-size: 14px;
  }
  .header-actions {
    gap: 8px;
  }
  .login-button,
  .register-button {
    min-width: 90px;
    padding: 9px 15px;
    font-size: 14px;
  }
  .hero-section {
    padding: 35px 35px 0;
  }
  .hero-image-wrapper {
    height: 540px;
  }
  .hero-content {
    left: 7%;
    top: 30%;
  }
  .hero-content h1 {
    font-size: 65px;
  }
  .hero-actions {
    margin-top: 30px;
  }
  .lime-button,
  .dark-transparent-button {
    min-width: 130px;
    padding: 13px 22px;
    font-size: 16px;
  }
  .hero-info-card {
    left: auto;
    right: 5%;
    top: 55%;
    width: 38%;
    font-size: 14px;
    padding: 20px;
  }
  .statistics-section {
    padding: 45px 35px 70px;
  }
  .stat-box {
    min-height: 190px;
  }
  .stat-number {
    font-size: 68px;
  }
  .stat-number span {
    font-size: 50px;
  }
  .stat-box p {
    font-size: 20px;
  }
  .stocks-section {
    padding-top: 35px;
  }
  .stocks-board {
    width: 94%;
    height: 190px;
  }
  .stocks-board h2 {
    font-size: 32px;
    left: 7%;
  }
  .stock-square {
    width: 60px;
    height: 60px;
    font-size: 11px;
  }
  .apple {
    left: 25%;
  }
  .google {
    left: 41%;
  }
  .amazon {
    left: 37%;
  }
  .nvidia {
    left: 53%;
  }
  .tesla {
    left: 61%;
  }
  .microsoft {
    left: 73%;
  }
  .trading-tool-section {
    padding: 75px 6% 60px;
  }
  .section-heading-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 30px;
  }
  .section-heading-row h2 {
    font-size: 52px;
  }
  .section-heading-row p {
    width: 100%;
    grid-column: 1;
    font-size: 14px;
  }
  .explore-arrow-button {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .tool-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
  .tool-card {
    min-height: auto;
  }
  .tool-card-title {
    min-height: 100px;
    padding: 25px;
    font-size: 22px;
  }
  .tool-card p {
    min-height: 190px;
    padding: 24px;
  }
  .benefits-section {
    padding: 55px 5%;
    gap: 35px;
  }
  .benefit-item h3 {
    font-size: 34px;
  }
  .benefit-item small {
    font-size: 21px;
  }
  .benefit-item p {
    font-size: 13px;
  }
  .global-markets-section {
    padding: 65px 4%;
  }
  .global-market-card {
    padding: 50px 5%;
  }
  .global-market-card h2 {
    font-size: 52px;
  }
  .market-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }
  .market-filters {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .markets-widget,
  .widget-box {
    width: 100%;
    overflow: hidden;
  }
  #myWidgetIFrame {
    width: 100% !important;
    min-width: 0 !important;
  }
  .different-section > h2 {
    font-size: 52px;
  }
  .different-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 5%;
    gap: 18px;
  }
  .difference-card {
    min-height: 350px;
  }
  .broker-section {
    width: calc(100% - 50px);
    padding: 40px 30px;
  }
  .broker-section h2 {
    font-size: 52px;
  }
  .broker-markets {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .broker-market-card {
    min-height: 200px;
  }
  .steps-section {
    padding: 60px 5%;
  }
  .steps-card {
    padding: 55px 6%;
  }
  .steps-card h2 {
    font-size: 52px;
  }
  .steps-line {
    gap: 15px;
  }
  .step-icon {
    width: 70px;
    height: 70px;
    border: none;
  }
  .step-icon img {
    max-width: 100%;
    max-height: 100%;
  }
  .steps-connector {
    margin-top: 34px;
  }
  .step-number {
    font-size: 58px;
  }
  .step-item p {
    font-size: 13px;
  }
  .faq-section {
    padding: 20px 6% 80px;
  }
  .faq-section > h2 {
    font-size: 52px;
  }
  .faq-content {
    grid-template-columns: 35% 1fr;
    gap: 35px;
  }
  .faq-item h3 {
    font-size: 21px;
  }
  .faq-item p {
    font-size: 13px;
  }
  .contact-section {
    padding: 65px 6%;
  }

  .contact-inner h2 {
    font-size: 52px;
  }
  .index-footer {
    padding: 65px 6%;
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 60px;
  }

}

@media (max-width: 750px) {
  body {
    overflow-x: hidden;
  }
  .index-page {
    width: 100%;
    overflow-x: hidden;
  }
  .index-header {
    height: auto;
    padding: 16px 0;
  }
  .index-header-inner {
    width: calc(100% - 30px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  .header-actions {
    margin-left: auto;
  }
  .login-button,
  .register-button {
    min-width: 72px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .main-navigation {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 0 3px;
    scrollbar-width: none;
  }
  .main-navigation::-webkit-scrollbar {
    display: none;
  }
  .hero-section {
    padding: 15px 0 0;
  }
  .hero-image-wrapper {
    height: 570px;
    width: 100%;
  }
  .hero-image {
    object-position: center;
  }
  .hero-content {
    left: 20px;
    right: 20px;
    top: 22%;
  }
  .hero-content h1 {
    font-size: 48px;
    line-height: 0.95;
  }
  .hero-actions {
    margin-top: 30px;
    gap: 10px;
  }
  .lime-button,
  .dark-transparent-button {
    min-width: 115px;
    padding: 12px 16px;
    font-size: 14px;
  }
  .hero-small-text {
    max-width: 270px;
    line-height: 1.5;
  }
  .hero-info-card {
    left: 20px;
    right: 20px;
    bottom: 35px;
    top: auto;
    width: auto;
    max-width: none;
    padding: 18px;
    font-size: 13px;
  }
  .statistics-section {
    padding: 18px;
  }
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stat-box {
    min-height: 150px;
  }
  .stat-number {
    font-size: 68px;
  }
  .stat-number span {
    font-size: 48px;
  }
  .stat-box p {
    margin-top: 2px;
    font-size: 19px;
  }
  .stocks-section {
    padding-top: 30px;
  }
  .stocks-board {
    width: 100%;
    height: 265px;
  }
  .stocks-board h2 {
    left: 25px;
    top: 18px;
    font-size: 28px;
  }
  .stock-square {
    width: 48px;
    height: 48px;
    font-size: 8px;
  }
  .apple {
    left: 18%;
    top: 35%;
  }
  .google {
    left: 42%;
    top: 24%;
  }
  .amazon {
    left: 32%;
    top: 65%;
  }
  .nvidia {
    left: 62%;
    top: 10%;
  }
  .tesla {
    left: 65%;
    top: 62%;
  }
  .microsoft {
    left: 80%;
    top: 32%;
  }
  .ticker-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .trading-tool-section {
    padding: 55px 20px;
  }
  .section-heading-row {
    display: block;
  }
  .section-heading-row h2 {
    font-size: 45px;
    line-height: 0.95;
  }
  .section-heading-row p {
    width: 100%;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.45;
  }
  .explore-arrow-button {
    width: 160px;
  }
  .tool-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
  }
  .tool-card {
    min-height: 0;
  }
  .tool-card-title {
    min-height: auto;
    padding: 24px 22px;
    font-size: 22px;
  }
  .tool-card p {
    min-height: 160px;
    padding: 24px 22px;
    font-size: 14px;
  }
  .benefits-section {
    grid-template-columns: 1fr;
    padding: 60px 25px;
    gap: 60px;
  }
  .benefit-item {
    text-align: center;
  }
  .benefit-item h3 {
    font-size: 40px;
  }
  .benefit-item small {
    font-size: 23px;
  }
  .benefit-item p {
    max-width: 280px;
    font-size: 13px;
    text-align: center;
  }
  .global-markets-section {
    padding: 45px 15px;
  }
  .global-market-card {
    padding: 40px 15px;
  }
  .global-market-card h2 {
    font-size: 42px;
  }
  .market-subtitle {
    margin: 15px 0 28px;
    font-size: 13px;
    line-height: 1.5;
  }
  .market-filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 25px;
  }
  .market-filter {
    padding: 10px 8px;
    font-size: 12px;
  }
  .markets-widget,
  .widget-box {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  #myWidgetIFrame {
    width: 100% !important;
    min-width: 0 !important;
    height: 420px !important;
  }
  .different-section {
    padding-top: 55px;
  }
  .different-section > h2 {
    padding: 0 20px;
    font-size: 43px;
    line-height: 1;
  }
  .different-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 15px;
  }
  .difference-card {
    min-height: 310px;
    padding: 25px;
  }
  .difference-icon {
    height: 95px;
  }
  .difference-card h3 {
    font-size: 27px;
  }
  .difference-card > span {
    bottom: 25px;
  }
  .broker-section {
    width: calc(100% - 30px);
    margin: 45px auto;
    padding: 35px 20px;
  }
  .broker-section h2 {
    font-size: 43px;
    line-height: 1;
  }
  .broker-markets {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .broker-market-card {
    min-height: 175px;
    padding: 20px 8px;
  }
  .broker-icon {
    width: 48px;
    height: 48px;
  }
  .broker-icon img {
    max-width: 100%;
    max-height: 100%;
  }
  .broker-market-card h3 {
    font-size: 18px;
  }
  .broker-market-card p {
    font-size: 10px;
  }
  .steps-section {
    padding: 45px 15px;
  }
  .steps-card {
    padding: 40px 25px;
  }
  .steps-card h2 {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 45px;
  }
  .steps-line {
    flex-direction: column;
    gap: 50px;
  }
  .step-item {
    width: 100%;
  }
  .step-icon {
    margin: 0;
    width: 68px;
    height: 68px;
    border: none;
  }
  .step-icon img {
    max-width: 100%;
    max-height: 100%;
  }
  .steps-connector {
    display: none;
  }
  .step-number {
    font-size: 55px;
    margin-top: 15px;
  }
  .step-item p {
    max-width: 100%;
    font-size: 14px;
  }
  .step-line-bottom {
    width: 75px;
    height: 8px;
  }
  .faq-section {
    padding: 15px 20px 60px;
  }
  .faq-section > h2 {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 40px;
  }
  .faq-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-image-wrapper {
    max-width: 330px;
  }
  .faq-item {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
  .faq-item h3 {
    font-size: 20px;
  }

  .faq-item p {
    font-size: 13px;
  }
  .contact-section {
    padding: 55px 20px;
  }
  .contact-inner h2 {
    font-size: 43px;
    line-height: 1;
  }
  .contact-inner > p {
    margin-bottom: 40px;
    line-height: 1.5;
  }
  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .message-field {
    grid-column: auto;
  }
  .contact-form textarea {
    height: 120px;
  }
  .contact-submit {
    width: 100%;
  }
  .index-footer {
    padding: 50px 25px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-actions {
    width: 100%;
  }
  .lime-button,
  .dark-transparent-button {
    min-width: 0;
    flex: 1;
  }
  .stat-number {
    font-size: 62px;
  }
  .stat-number span {
    font-size: 43px;
  }
  .section-heading-row h2,
  .global-market-card h2,
  .different-section > h2,
  .broker-section h2,
  .steps-card h2,
  .faq-section > h2,
  .contact-inner h2 {
    font-size: 38px;
  }
  .benefit-item h3 {
    font-size: 36px;
  }
  .benefit-item small {
    font-size: 21px;
  }
  .broker-markets {
    grid-template-columns: 1fr 1fr;
  }
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

@media (max-width: 800px) {
  .index-header {
    height: 80px;
    padding: 0;
  }
  .index-header-inner {
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions {
    margin-left: 15px;
    order: 3;
  }
  .main-navigation {
    position: absolute;
    top: 80px;
    left: -20px;
    width: calc(100% + 40px);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      padding 0.3s ease;
    z-index: 1000;
  }
  .main-navigation a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid #ededed;
    font-size: 16px;
  }
  .index-header.menu-open .main-navigation {
    max-height: 420px;
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 18px;
  }
  .index-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .index-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .index-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}



/* ABOUT - US  */
.who-we-are-section {
  width: 100%;
  background: #ffffff;
  padding: 80px 0 100px;
  overflow: hidden;
}
.who-we-are-container {
  width: calc(100% - 80px);
  max-width: 1250px;
  margin: 75px auto;
  position: relative;
  z-index: 1;
}
/* subtle grid background */
.who-we-are-container::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.068) 1px,
      transparent 0.5px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.068) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}
.who-we-are-title {
  margin: 0 0 40px 60px;
  color: #111;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}
.who-we-are-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 75px;
  align-items: center;
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.who-card {
  background: #d5d5d5;
  padding: 20px;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.12);
}
.who-card-header {
  background: #8c8c8c;
  min-height: 115px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.who-card-number {
  color: #eff50b;
  font-size: 14px;
  font-weight: 700;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.who-card-number::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}
.who-card-header h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}
.who-card > p {
  margin: 0;
  padding: 15px 10px 10px;
  color: #303030;
  font-size: 14px;
  line-height: 1.35;
}
.who-images {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 145px;
}
.who-image-block {
  width: 100%;
  height: 225px;
  position: relative;
  background: #ededed;
}
.who-image {
  display: block;
  width: 120%;
  height: 135%;
  object-fit: cover;
}
.who-image-accent {
  position: absolute;
  top: -48px;
  left: 27px;
  width: 130%;
  height: 310px;
  background: #eef427FF;
  z-index: -2;
}
.who-image-accent.bottom {
  top: auto;
  bottom: -44px;
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  align-content: start;
  grid-auto-rows: max-content;
}
.who-card {
  background: #d5d5d5;
  padding: 20px;
  height: fit-content;
  min-height: 0;
  align-self: start;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (min-width: 751px) and (max-width: 1100px) {
  .who-we-are-section {
    padding: 70px 0 85px;
  }
  .who-we-are-container {
    width: calc(100% - 60px);
  }
  .who-we-are-title {
    margin-left: 0;
    font-size: 52px;
  }
  .who-we-are-layout {
    grid-template-columns: 1fr 180px;
    gap: 30px;
  }
  .who-we-are-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .who-card,
  .who-card-large {
    min-height: auto;
  }
  .who-card {
    padding: 10px;
  }
  .who-card-header {
    min-height: 105px;
  }
  .who-card-header h3 {
    font-size: 18px;
  }
  .who-card > p {
    font-size: 11px;

    min-height: 125px;
  }
  .who-card-large > p {
    min-height: 250px;
  }
  .who-images {
    width: 180px;
  }
  .who-image-block {
    height: 220px;
  }

}

@media (max-width: 750px) {
  .who-we-are-section {
    padding: 55px 0 75px;
  }
  .who-we-are-container {
    width: calc(100% - 40px);
    margin: 70px auto;
  }
  .who-we-are-title {
    margin: 0 0 35px;
    font-size: 44px;
  }
  .who-we-are-layout {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }
  .who-we-are-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .who-card,
  .who-card-large {
    min-height: auto;
    padding: 10px;
  }
  .who-card-header {
    min-height: 100px;
    padding: 15px;
  }
  .who-card-header h3 {
    font-size: 21px;
  }
  .who-card > p {
    padding: 17px 12px;
    font-size: 12px;
    line-height: 1.5;
  }
  .who-images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 0;
  }
  .who-image-block {
    width: 100%;
    height: 210px;
  }
  .who-image-accent {
    height: 12px;
    top: -12px;
  }
  .who-image-accent.bottom {
    top: auto;
    bottom: -12px;
  }
}

@media (max-width: 430px) {
  .who-we-are-container {
    width: calc(100% - 30px);
  }
  .who-we-are-title {
    font-size: 40px;
  }
  .who-card-header h3 {
    font-size: 20px;
  }
  .who-card > p {
    font-size: 11.5px;
  }
  .who-images {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .who-image-block {
    height: 230px;
  }
}

.register-css {
  margin-top:100px;
}

.home-2 {
  background: #f2f2f2;
}

.home-2 .ul-breadcrumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #303030;
}

.home-2 .ul-breadcrumb .ul-container {
  width: 100%;
  max-width: none;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.home-2 .ul-2-banner-video2 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(10%);
}

.home-2 .ul-breadcrumb .ul-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(  90deg, rgba(15, 15, 15, 0.72) 0%, rgba(15, 15, 15, 0.35) 45%, rgba(15, 15, 15, 0.12) 100%);
  z-index: 1;
}

.home-2 .ul-breadcrumb-title {
  position: absolute;
  left: 10%;
  bottom: 70px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  z-index: 3;
}

.home-2 .ul-breadcrumb-title::after {
  content: "";
  display: block;
  width: 130px;
  height: 12px;
  margin-top: 28px;
  background: var(--lime);
}

.webtrader-page-section {
  position: relative;
  padding: 100px 7% 120px;
  background: #efeded;
  overflow: hidden;
}

.webtrader-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient( rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg,  rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient( 110deg, transparent 4%,rgba(0,0,0,.6) 20%, transparent 40%,rgba(0,0,0,.45) 62%, transparent 85% );
  mask-image: linear-gradient( 110deg, transparent 4%, rgba(0,0,0,.6) 20%, transparent 40%, rgba(0,0,0,.45) 62%, transparent 85%);
  pointer-events: none;
}

.webtrader-page-section > .ul-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.webtrader-hero-text {
  max-width: 950px;
  margin-bottom: 75px;
}

.webtrader-hero-text h2 {
  margin: 0 0 25px;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 0.95;
  color: #111;
}

.webtrader-hero-text h2::after {
  content: "";
  display: block;
  width: 95px;
  height: 10px;
  margin-top: 24px;
  background: var(--lime);
}

.webtrader-hero-text p {
  max-width: 740px;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #555;
}

.webtrader-content-card {
  position: relative;
  max-width: 1050px;
  margin-bottom: 28px;
  padding: 48px 55px;
  background: #fff;
  border-left: 9px solid var(--lime);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.webtrader-content-card:nth-of-type(3) {
  margin-left: auto;
  background: #303030;
  color: #fff;
  border-left: 0;
  border-right: 9px solid var(--lime);
}

.webtrader-content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e9e9e9 1px, transparent 1px),
    linear-gradient(90deg, #e9e9e9 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(0,0,0,.7) 20%,
      transparent 48%
    );

  mask-image:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(0,0,0,.7) 20%,
      transparent 48%
    );
}

.webtrader-content-card:nth-of-type(3)::before {
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
}

.webtrader-content-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.09);
}

.webtrader-content-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.webtrader-content-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.webtrader-content-card p:last-child {
  margin-bottom: 0;
}

.webtrader-content-card:nth-of-type(3) p {
  color: #e5e5e5;
}

.webtrader-highlights {
  margin-top: 100px;
  padding: 70px 55px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.webtrader-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 18px;
  background: var(--lime);
}

.webtrader-highlights-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.webtrader-highlights-head h3 {
  margin: 0;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 400;
  line-height: 1;
}

.webtrader-highlights-head p {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.webtrader-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.webtrader-highlight-item {
  min-height: 180px;
  padding: 30px 26px;
  background: #ededed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.webtrader-highlight-item::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.webtrader-highlight-item:hover {
  transform: translateY(-6px);
  background: var(--lime);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.08);
}

.webtrader-highlight-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.webtrader-highlight-item:hover img {
  transform: scale(1.1);
}

.webtrader-highlight-item h4 {
  margin: 35px 0 0;
  max-width: 210px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  color: #111;
}

.webtrader-highlight-item:nth-child(2),
.webtrader-highlight-item:nth-child(5) {
  background: #d5d5d5;
}

.webtrader-highlight-item:nth-child(3) {
  background: #8c8c8c;
}

.webtrader-highlight-item:nth-child(3) h4 {
  color: #fff;
}

.webtrader-highlight-item:nth-child(3):hover h4 {
  color: #111;
}

@media (min-width: 751px) and (max-width: 1100px) {
  .home-2 .ul-breadcrumb .ul-container {
    height: 330px;
  }
  .home-2 .ul-breadcrumb-title {
    left: 7%;
    bottom: 50px;
    font-size: 62px;
  }
  .home-2 .ul-breadcrumb-title::after {
    width: 100px;
    height: 9px;
  }
  .webtrader-page-section {
    padding: 75px 5% 90px;
  }
  .webtrader-hero-text {
    margin-bottom: 55px;
  }
  .webtrader-hero-text h2 {
    font-size: 58px;
  }
  .webtrader-hero-text p {
    font-size: 16px;
  }
  .webtrader-content-card {
    max-width: 92%;
    padding: 40px 42px;
  }
  .webtrader-content-card h3 {
    font-size: 34px;
  }
  .webtrader-content-card p {
    font-size: 14px;
  }
  .webtrader-highlights {
    margin-top: 75px;
    padding: 55px 40px;
  }
  .webtrader-highlights-head {
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
  }
  .webtrader-highlights-head h3 {
    font-size: 54px;
  }
  .webtrader-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .webtrader-highlight-item {
    min-height: 200px;
  }

}

@media (max-width: 750px) {
  .home-2 .ul-breadcrumb .ul-container {
    height: 245px;
  }
  .home-2 .ul-breadcrumb-title {
    left: 20px;
    right: 20px;
    bottom: 38px;
    font-size: 44px;
    line-height: 1;
    word-break: normal;
  }
  .home-2 .ul-breadcrumb-title::after {
    width: 75px;
    height: 7px;
    margin-top: 18px;
  }
  .webtrader-page-section {
    padding: 55px 18px 70px;
  }
  .webtrader-hero-text {
    margin-bottom: 42px;
  }
  .webtrader-hero-text h2 {
    font-size: 42px;
    line-height: 0.98;
    margin-bottom: 20px;
  }
  .webtrader-hero-text h2::after {
    width: 70px;
    height: 7px;
    margin-top: 18px;
  }
  .webtrader-hero-text p {
    font-size: 14px;
    line-height: 1.6;
  }
  .webtrader-content-card,
  .webtrader-content-card:nth-of-type(3) {
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 30px 24px;
    border-right: 0;
    border-left: 7px solid var(--lime);
    box-sizing: border-box;
  }
  .webtrader-content-card h3 {
    font-size: 29px;
    margin-bottom: 22px;
  }
  .webtrader-content-card p {
    font-size: 13px;
    line-height: 1.65;
  }
  .webtrader-highlights {
    margin-top: 60px;
    padding: 45px 20px;
  }
  .webtrader-highlights::before {
    width: 100px;
    height: 12px;
  }
  .webtrader-highlights-head {
    display: block;
    margin-bottom: 35px;
  }
  .webtrader-highlights-head h3 {
    font-size: 43px;
    margin-bottom: 18px;
  }
  .webtrader-highlights-head p {
    font-size: 14px;
  }
  .webtrader-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .webtrader-highlight-item {
    min-height: 175px;
    padding: 22px 18px;
  }
  .webtrader-highlight-item img {
    width: 48px;
    height: 48px;
  }
  .webtrader-highlight-item h4 {
    margin-top: 28px;
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .home-2 .ul-breadcrumb .ul-container {
    height: 220px;
  }
  .home-2 .ul-breadcrumb-title {
    font-size: 38px;
  }
  .webtrader-page-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  .webtrader-hero-text h2 {
    font-size: 38px;
  }
  .webtrader-content-card,
  .webtrader-content-card:nth-of-type(3) {
    padding: 26px 20px;
  }
  .webtrader-highlights {
    padding: 38px 14px;
  }
  .webtrader-highlights-grid {
    grid-template-columns: 1fr;
  }
  .webtrader-highlight-item {
    min-height: 150px;
  }
}