.quant-page {
  background: #fff;
  color: #101727;
}

.quant-container {
  width: 1200px;
  margin: 0 auto;
}






.quant-hero {
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 35%, rgba(177, 95, 20, 0.42), transparent 32%),
    linear-gradient(90deg, #0e1421 0%, #0e1421 100%);
  color: #fff;
}

.quant-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 556px;
  align-items: center;
  min-height: 370px;
}


.quant-hero-copy {
  position: relative;
  z-index: 1;
}

.quant-hero-copy h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

.quant-hero-copy p {
  color: #fff;
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.quant-hero-copy .btn-amber{
  width: 140px;
  font-size: 14px;
}

.quant-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.quant-hero-visual img {
  width: 100%;
}

.quant-section {
  padding: 82px 0;
}

.quant-section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 54px;
}

.quant-section-head h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #101727;
  margin-bottom: 20px;
}

.quant-section-head p{
  color: #4a5565;
  font-size: 18px;
  line-height: 1.6;
}


.market-section,
.platform-section,
.pricing-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(236, 122, 68, 0.14), transparent 30%),
    radial-gradient(circle at 0% 80%, rgba(237, 168, 78, 0.12), transparent 28%),
    #fffdf8;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.market-card {
  min-height: 360px;
  padding: 26px 20px;
  border: 1px solid #EFEFEF;
  border-radius: 14px;
  background-color: #FFF8EE;
  /* background: linear-gradient(180deg, rgba(255, 246, 233, 0.88), rgba(255, 255, 255, 0.95)); */
  /* box-shadow: 0 12px 30px rgba(223, 153, 70, 0.08); */
}

.market-tag {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e0a652 0%, #ac6400 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.market-support {
  width: max-content;
  margin: 15px 0;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  color: #7c4f1b;
  font-size: 14px;
  border-radius: 6px;
}

.market-box {
  min-height: 68px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  color: #101727;
  font-size: 16px;
}

.market-box + .market-box {
  margin-top: 18px;
}

.market-box strong,
.market-box span {
  display: block;
}

.market-box strong {
  margin-bottom: 15px;
  font-weight: 700;
}

.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  height: 316px;
  padding: 30px 25px;
  border-radius: 20px;
  background: #fff7ec;
  color: #101727;
  box-shadow: 0 12px 26px rgba(223, 153, 70, 0.08);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.why-card.active,
.why-card:hover {
  background: #101727;
  color: #fff;
  box-shadow: 0 22px 42px rgba(16, 23, 39, 0.2);
  transform: translateY(-8px);
}

.why-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.why-card p {
  min-height: 130px;
  color: #4a5565;
  font-size: 16px;
  line-height: 1.8;
}

.why-card.active p,
.why-card:hover p {
  color: #c9d1df;
}

.why-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.why-card-bottom img {
  width: 64px;
  object-fit: contain;
}

.why-card-bottom .bars {
  width: 36px;
  transition: filter 0.2s ease;
}

.why-card.active .bars,
.why-card:hover .bars {
  filter: brightness(0) invert(1);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.platform-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(16, 23, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(16, 23, 39, 0.04);
}

.platform-card img {
  width: 50px;
  align-self: flex-start;
  object-fit: contain;
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.platform-card p {
  color: #4a5565;
  font-size: 17px;
  line-height: 1.6;
}

.audience-section {
  padding: 84px 0 88px;
  background: #0e1421;
  color: #fff;
}

.audience-head {
  text-align: center;
  margin-bottom: 70px;
}

.audience-head h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
}

.audience-head p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 140px;
}

.audience-card img {
  width: 48px;
  margin-bottom: 26px;
}

.audience-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.audience-card p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.billing-toggle {
  position: relative;
  width: 268px;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: -18px auto 38px;
  border: 1px solid #b9791d;
  border-radius: 999px;
  background: #fff;
  color: #101727;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.billing-toggle button {
  width: 112px;
  height: 32px;
  margin: 0 auto;
  border-radius: 999px;
  background: transparent;
  color: #101727;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.billing-toggle button.active {
  background: #b97306;
  color: #fff;
}

.billing-toggle button:hover {
  transform: translateY(-1px);
}

.billing-toggle em {
  position: absolute;
  top: -16px;
  left: 165px;
  min-width: 54px;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  background: #ff5b88;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  font-style: normal;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.price-card {
  min-height: 520px;
  padding: 24px 22px;
  border: 1px solid rgba(16, 23, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(16, 23, 39, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.price-card.featured {
  border-color: #b9791d;
  background: linear-gradient(180deg, rgba(255, 245, 229, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 34px rgba(181, 113, 20, 0.12);
}

.price-card:hover {
  border-color: #b9791d;
  background: linear-gradient(180deg, rgba(255, 245, 229, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 20px 38px rgba(181, 113, 20, 0.18);
  transform: translateY(-8px);
}

.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #101727;
}

.price-card p {
  color: #4a5565;
  font-size: 14px;
  margin-bottom: 20px;
}

.price {
  
  color: #101727;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  
  color: #4a5565;
}

.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: linear-gradient(90deg, #e0a652 0%, #ac6400 100%);
  color: #fff;
  font-size: 14px;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: #4a5565;
  font-size: 14px;
  margin-bottom: 12px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url("../img/icon-right.svg") center / contain no-repeat;
}


.quant-page .site-footer {
  padding-top: 34px;
}

/* ===== Quant page motion polish ===== */
@keyframes dataGridPan {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 92px 92px, 92px 92px;
  }
}

@keyframes dataVisualFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-10px, -16px, 0) rotate(-1.5deg);
  }
}

@keyframes tagPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(224, 166, 82, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(224, 166, 82, 0.14);
  }
}

.quant-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(232, 154, 60, 0.24), transparent 24%),
    radial-gradient(circle at 38% 88%, rgba(72, 115, 255, 0.14), transparent 28%);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.quant-hero-inner::after {
  animation: dataGridPan 14s linear infinite;
}

.quant-hero-copy h1,
.quant-hero-copy p,
.quant-hero-copy .btn {
  animation: liftIn 0.78s ease both;
}

.quant-hero-copy p {
  animation-delay: 0.12s;
}

.quant-hero-copy .btn {
  animation-delay: 0.24s;
}


.market-card,
.platform-card,
.price-card {
  position: relative;
  overflow: hidden;
}

.market-card::before,
.platform-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.72) 45%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.market-card:hover::before,
.platform-card:hover::before,
.price-card:hover::before {
  opacity: 1;
  animation: shimmerSweep 0.88s ease;
}

.market-card {
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.market-card:hover {
  border-color: rgba(224, 166, 82, 0.55);
  background: #fffdf8;
  box-shadow: 0 24px 46px rgba(181, 113, 20, 0.16);
  transform: translateY(-10px);
}

.market-card:hover .market-tag {
  animation: tagPulse 1.5s ease-in-out infinite;
}

.market-box {
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.market-card:hover .market-box {
  box-shadow: inset 0 0 0 1px rgba(224, 166, 82, 0.16);
  transform: translateX(4px);
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 154, 60, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.why-card:hover::after,
.why-card.active::after {
  opacity: 1;
  transform: scale(1.2);
}

.why-card:hover .why-card-bottom img:not(.bars),
.why-card.active .why-card-bottom img:not(.bars) {
  filter: drop-shadow(0 12px 18px rgba(232, 154, 60, 0.38));
  transform: translateY(-5px) scale(1.08);
}

.why-card-bottom img {
  transition: transform 0.24s ease, filter 0.24s ease;
}

.platform-card {
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.platform-card:hover {
  border-color: rgba(185, 121, 29, 0.44);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 42px rgba(16, 23, 39, 0.1);
  transform: translateY(-7px);
}

.platform-card img,
.audience-card img {
  transition: transform 0.24s ease, filter 0.24s ease;
}

.audience-card img.info-4 {
  width: 34px;
  transform: translate(8px);

}

.platform-card:hover img,
.audience-card:hover img {
  filter: drop-shadow(0 10px 14px rgba(232, 154, 60, 0.32));
  transform: rotate(-5deg) scale(1.1);
}

.audience-section {
  position: relative;
  overflow: hidden;
}

.audience-section::before {
  content: "";
  position: absolute;
  left: -140px;
  top: 30px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 154, 60, 0.22), transparent 66%);
  animation: floatGlow 7.5s ease-in-out infinite;
}

.audience-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  transition: background 0.24s ease, transform 0.24s ease;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
}

.price-card.featured {
  animation: softPulse 3.2s ease-in-out infinite;
}

.price-btn {
  position: relative;
  overflow: hidden;
  transition: filter 0.22s ease, transform 0.22s ease;
}

.price-btn::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -50%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-130%) skewX(-18deg);
}

.price-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.price-btn:hover::after {
  animation: shimmerSweep 0.72s ease;
}

.billing-toggle em {
  animation: tagPulse 1.8s ease-in-out infinite;
}
