/* Sticky Header Styles */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  height: 90px;
}
.header__logo {
  display: flex;
  align-items: center;
  margin-right: 17%;
}
.header__logo img {
  height: 48px;
}
.header__nav-container {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}
.header__nav-link {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #e60000;
}
.header__badge {
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  margin-right: 6px;
  vertical-align: middle;
  position: sticky;
  left: 0;
  z-index: 1001;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 24px;
}
.header__icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
  color: #111;
}
.header__icon:hover {
  color: #e60000;
}
.header__icons--mobile {
  display: none;
}
@media (max-width: 1200px) {
  .header {
    padding: 0 16px;
    height: 70px;
  }
  .header__logo {
    margin-right: 18px;
  }
  .header__nav {
    gap: 18px;
  }
  .header__icons {
    gap: 16px;
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  .header {
    padding: 0 12px;
    height: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .header__logo {
    margin-right: 0;
  }
  .header__nav {
    gap: 8px;
    font-size: 14px;
  }
  .header__badge {
    font-size: 13px;
    margin-right: 8px;
    left: 0;
  }
  .header__icons--mobile {
    gap: 16px;
  }
}

/* Banner Section */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner__img {
  width: 100%;
  display: block;
  height: auto;
}
.banner__img--mobile {
  display: none;
}
@media (max-width: 900px) {
  .banner__img--desktop {
    display: none;
  }
  .banner__img--mobile {
    display: block;
  }
}

/* Investor Main Section */
.investor-main {
  width: 100%;
  background: #fff;
  padding: 40px 0 60px 0;
}
.investor-main__container {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
  padding: 0 40px;
}
.investor-main__left {
  flex: 1 1 320px;
  max-width: 400px;
  position: sticky;
  top: 110px;
  align-self: flex-start;
  z-index: 10;
}
.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid #eee;
}
.accordion__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 12px 8px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #222;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  background: transparent;
}
.accordion__icon {
  margin-left: 16px;
  color: #888;
  font-size: 18px;
  font-weight: 400;
  min-width: 18px;
  text-align: right;
  display: inline-block;
}
.accordion__item.active .accordion__icon {
  color: #e6005c;
  font-weight: 600;
}
.investor-main__right {
  flex: 2 1 900px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.whats-new {
  background: #fff9cc;
  border-radius: 4px;
  padding: 32px 36px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.whats-new h3 {
  color: #c00;
  margin: 0 0 18px 0;
  font-size: 28px;
  font-weight: 700;
}
.whats-new__content {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  min-width: 0;
}
.whats-new__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 2 1 60%;
  min-width: 0;
}
.whats-new__list li {
  font-size: 18px;
  color: #888;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 1px;
}
.whats-new__arrow {
  color: #c00;
  font-size: 18px;
  margin-right: 16px;
  display: inline-block;
}
.whats-new__actions {
  flex: 1 1 40%;
  min-width: 120px;
  /* max-height: 180px; */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.whats-new__action-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 4px;
}
.whats-new__action-row button {
  background: #fff;
  border: 1.5px solid #222;
  color: #222;
  padding: 8px 28px;
  border-radius: 2px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-width: 110px;
}
.whats-new__action-row button:hover {
  background: #c00;
  color: #fff;
  border-color: #c00;
}
.investor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.investor-card {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 2px solid #222;
  border-radius: 4px;
  padding: 18px 24px;
  font-size: 16px;
  color: #222;
  background: #fff;
  font-weight: 500;
  transition: border 0.2s, box-shadow 0.2s;
}
.investor-card__icon {
  font-size: 28px;
  color: #e6005c;
}
.investor-card:hover {
  border: 2px solid #e6005c;
  box-shadow: 0 2px 12px rgba(230,0,92,0.08);
}
@media (max-width: 1200px) {
  .investor-main__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }
  .investor-main__right {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .investor-main {
    padding: 24px 0 40px 0;
  }
  .investor-main__container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .investor-main__left {
    position: static;
    top: auto;
  }
  .investor-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .whats-new {
    padding: 18px 8px;
  }
  .whats-new__content {
    flex-direction: column;
    gap: 12px;
  }
  .whats-new__list li {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .whats-new__action-row button {
    font-size: 14px;
    padding: 6px 12px;
    min-width: 80px;
  }
}

/* Footer Styles */
.footer {
  background: url('../images/footer-bg.png'), #f7fafd;
  background-size: cover;
  background-repeat: repeat;
  padding: 48px 0 0 0;
  color: #222;
  font-size: 16px;
  border-top: 1px solid #e0e0e0;
}
.footer__container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 40px 32px 40px;
}
.footer__about {
  flex: 2 1 340px;
  min-width: 260px;
  margin-right: 40px;
}
.footer__about h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer__about p {
  font-size: 16px;
  color: #222;
  margin-bottom: 28px;
  line-height: 1.5;
}
.footer__socials {
  display: flex;
  gap: 24px;
}
.footer__social {
  color: #222;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer__social:hover {
  color: #e6005c;
}
.footer__links {
  flex: 5 1 700px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__col {
  min-width: 180px;
  flex: 1 1 180px;
}
.footer__col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col li {
  margin-bottom: 10px;
}
.footer__col a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer__col a:hover {
  color: #e6005c;
}
@media (max-width: 1200px) {
  .footer__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px 32px 16px;
  }
  .footer__links {
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .footer {
    padding: 32px 0 0 0;
    font-size: 15px;
  }
  .footer__container {
    flex-direction: column;
    gap: 20px;
    padding: 0 8px 24px 8px;
  }
  .footer__about {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .footer__links {
    flex-direction: column;
    gap: 16px;
  }
  .footer__col {
    min-width: 120px;
  }
}

html, body {
  overflow-x: hidden;
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
  .header {
    padding: 0 16px;
    height: 70px;
  }
  .header__nav {
    gap: 16px;
  }
  .header__icons {
    gap: 16px;
  }
  .footer__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px 32px 16px;
  }
  .footer__links {
    gap: 24px;
  }
  .investor-main__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }
  .investor-main__right {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .header {
    padding: 0 8px;
    height: 60px;
  }
  .header__logo img {
    height: 36px;
  }
  .header__nav {
    gap: 8px;
    font-size: 14px;
  }
  .header__icons {
    gap: 10px;
  }
  .banner {
    margin-bottom: 0;
  }
  .investor-main {
    padding: 16px 0 24px 0;
  }
  .investor-main__container {
    flex-direction: column;
    gap: 16px;
    padding: 0 8px;
  }
  .investor-main__left {
    max-width: 100%;
  }
  .investor-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .whats-new {
    padding: 18px 8px;
  }
  .whats-new__content {
    flex-direction: column;
    gap: 12px;
  }
  .whats-new__list li {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .whats-new__action-row button {
    font-size: 14px;
    padding: 6px 12px;
    min-width: 80px;
  }
  .footer {
    padding: 24px 0 0 0;
    font-size: 15px;
  }
  .footer__container {
    flex-direction: column;
    gap: 20px;
    padding: 0 8px 16px 8px;
  }
  .footer__about {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
  .footer__col {
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 8px 4px;
  }
  .header__nav {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    justify-content: center;
  }
  .header__icons {
    gap: 8px;
  }
  .banner__img {
    min-height: 120px;
  }
  .investor-main {
    padding: 8px 0 12px 0;
  }
  .investor-main__container {
    padding: 0 4px;
    gap: 8px;
  }
  .accordion__item {
    font-size: 13px;
    padding: 8px 8px 8px 4px;
  }
  .investor-card {
    font-size: 14px;
    padding: 10px 10px;
    gap: 10px;
  }
  .investor-card__icon {
    font-size: 20px;
  }
  .whats-new h3 {
    font-size: 16px;
  }
  .footer__about h4, .footer__col h4 {
    font-size: 14px;
  }
  .footer__about p {
    font-size: 13px;
  }
  .footer__col a {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 4px 2px;
  }
  .header__logo img {
    height: 28px;
  }
  .banner__img {
    min-height: 80px;
  }
  .investor-main__container {
    padding: 0 2px;
  }
  .footer__container {
    padding: 0 2px 8px 2px;
  }
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  margin-left: 12px;
}
.header__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }
  .header__nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1200;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .header__nav-container.open {
    display: flex;
  }
  .header__nav {
    background: #fff;
    width: 240px;
    height: 100vh;
    box-shadow: -2px 0 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0 0 24px;
    gap: 18px;
    position: relative;
    z-index: 1202;
  }
  .header__nav-link {
    font-size: 17px;
    padding: 8px 0;
  }
  .header__nav-link .header__badge {
    font-size: 13px;
    margin-right: 8px;
  }
  .header__icons {
    z-index: 1202;
  }
  body.menu-open {
    overflow: hidden;
  }
}
/* Hamburger to X animation */
.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
} 
