﻿/* =========================================
   Modern Base & Reset
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family:
    Klavika,
    custfont,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans TC",
    "Noto Sans CJK TC",
    "Source Han Sans TC",
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji",
    sans-serif;
  font-size: var(--fs-base);
  line-height: var(--line-height-base);
  color: var(--text-main);
  position: relative;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --fs-xs: clamp(0.75rem, 0.71vw + 0.58rem, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.81vw + 0.68rem, 1rem);
  --fs-base: clamp(1rem, 0.95vw + 0.76rem, 1.125rem);
  --fs-lg: clamp(1.125rem, 1.1vw + 0.85rem, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.34vw + 0.92rem, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.83vw + 1.04rem, 2rem);
  --fs-3xl: clamp(1.75rem, 2.75vw + 1.06rem, 2.5rem);
  --fs-4xl: clamp(2.25rem, 4.2vw + 1.2rem, 3.5rem);
  --fs-5xl: clamp(2.75rem, 6vw + 1.25rem, 4.5rem);

  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.8;

  --text-main: #212529;
  --text-muted: #40a7ec;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-top: 0;
  margin-bottom: 0.75em;
  letter-spacing: 0.1em;
}

h1 {
  font-size: var(--fs-5xl);
}
h2 {
  font-size: var(--fs-4xl);
}
h3 {
  font-size: var(--fs-3xl);
}
h4 {
  font-size: var(--fs-2xl);
}
h5 {
  font-size: var(--fs-xl);
}
h6 {
  font-size: var(--fs-lg);
}

p {
  margin-top: 0;
  margin-bottom: 1.25em;
  line-height: var(--line-height-relaxed);
}

.text-xs {
  font-size: var(--fs-xs);
}
.text-sm {
  font-size: var(--fs-sm);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}

/* --- 共用 --- */
.section-wrap {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.section-wrap img {
  width: 95%;
  max-width: 800px;
  padding: 15px 0;
  margin: 0 auto;
}

.section-wrap img.size2 {
  max-width: 1080px;
}

/* --- RWD  --- */
@media screen and (max-width: 768px) {
  .section-wrap {
    padding: 50px 15px;
  }

 .section-wrap img.size2 {
  width: 80%;
}


}

/* --- 警語與注意事項 --- */
.notes {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
  font-size: var(--fs-xs);
  line-height: var(--line-height-relaxed);
  padding: clamp(10px, 3vw, 15px) 0;
}

.text-info {
  color: #745ed3;
  font-weight: bold;
}

/*按鈕*/
.btn-wrapper {
  text-align: center;
  margin: 1.2em 0;
}

.btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  margin: 2em 0;
}

@media screen and (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-wrapper .btn,
  .btn-group .btn {
    width: 100%;
    max-width: 320px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  font-weight: bold;
  padding: 16px 90px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 2px;
}

.btn i,
.btn .btn-icon {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}
.btn:hover i,
.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-white {
  background-color: #ffffff;
  color: #3441cb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  color: #9a2cde;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-image: linear-gradient(45deg, #9a2cde 0%, #3441cb 100%);
  background-color: #3441cb;
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 3px rgba(92, 0, 198, 0.1);
}
.btn-primary:hover {
  filter: brightness(1.1);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(125, 0, 198, 0.2);
}

.btn-accent {
  background-image: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
  color: #ffffff;
  border: none;
}
.btn-accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(229, 46, 113, 0.5);
}

.btn-outline {
  background-image: none;
  background-color: transparent;
  color: #3441cb;
  border: 2px solid #3441cb;
}
.btn-outline:hover {
  background-color: #3441cb;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 163, 255, 0.3);
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  height: 100%;
}

.logo {
  width: 180px;
  display: block;
}
.logo img {
  width: 100%;
  display: block;
}

.menu-checkbox {
  display: none;
}

/* 桌機版 */
@media screen and (min-width: 992px) {
  .menu-icon,
  .menu-overlay {
    display: none;
  }

  .nav-menu {
    margin-left: auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    color: #333333;
    font-size: 19px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #3441cb;
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: #3441cb;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .dropdown-arrow {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: transform 0.3s ease;
  }

  /* --- 下拉選單  --- */
  .has-dropdown {
    position: relative;
  }

  .dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .has-dropdown:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-list li a {
    display: block;
    padding: 12px 20px;
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    transition:
      background-color 0.2s,
      color 0.2s;
  }

  .dropdown-list li a:hover {
    background-color: #f5f9ff;
    color: #3441cb;
  }
}

/* 手機版 */
@media screen and (max-width: 991px) {
  .logo {
    width: 140px;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
  }

  .menu-icon .bar {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .menu-checkbox:checked ~ .menu-icon .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-checkbox:checked ~ .menu-icon .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-checkbox:checked ~ .menu-icon .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10000;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
  }

  .menu-checkbox:checked ~ .nav-menu {
    right: 0;
  }

  .menu-checkbox:checked ~ .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-list > li {
    border-bottom: 1px solid #eeeeee;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
  }

  .dropdown-list {
    list-style: none;
    padding: 0 0 15px 0;
    margin: 0;
    background-color: #f9f9f9;
  }

  .dropdown-list li a {
    display: block;
    padding: 15px 25px 15px 45px;
    color: #666666;
    text-decoration: none;
    font-size: 15px;
    border-top: 1px dashed #e0e0e0;
  }

  .dropdown-arrow {
    display: none;
  }
}

/* --主視覺 ------------------------------------- */

.KV-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 750px;
  height: auto;
  margin: 0 auto;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}


.KV-visual {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0; 
  width: 50%;
  z-index: 1;
}


.KV-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.KV-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}


@keyframes customFadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);   
  }
}

.kv-animate-fade-right {
  opacity: 0; 
  animation: customFadeRight 1s ease-out forwards;
}

.KV-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 50%;
  padding: 0 8% 0 4%;
  margin-left: auto;
  text-align: left;
}


.main-title {
  font-size: var(--fs-5xl);
  font-weight: 800;
  line-height: var(--line-height-tight);
  margin-bottom: 15px;
  letter-spacing: 4px;
  white-space: normal;
  word-break: keep-all;

  background: linear-gradient(90deg, #9a2cde 0%, #3441cb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 5px;
}

.sub-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #9a2cde;
}

.title-divider {
  width: 100%;
  max-width: 380px;
  height: 3px;
  background: linear-gradient(90deg, #9a2cde 0%, #3441cb 100%);
  margin: 15px 0 25px 0;
}

.description {
  font-size: var(--fs-2xl); 
  color: #333333;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: var(--line-height-relaxed);
}

@media (max-width: 1024px) {
  .KV-section {
    min-height: 600px;
  }


  .KV-visual {
    width: 55%;
  }


  .KV-content {
    max-width: 45%;
    padding-left: 3%;
    padding-right: 4%;
    padding-top: 100px;
    padding-bottom: 40px;
  }

 
  .main-title {
    font-size: clamp(3.2rem, 5.5vw, 4rem);
    letter-spacing: 2px;
  }

  .sub-title {
    font-size: var(--fs-xl);
    margin-bottom: 15px;
  }


  .description {
    font-size: var(--fs-lg);
    letter-spacing: 0.5px;
  }

 
  .title-divider {
    margin: 15px 0 20px 0;
  }


  .KV-visual img {
    object-position: center center;
  }
}



@media (max-width: 768px) {
  .KV-section {
    flex-direction: column;
    min-height: auto;
    justify-content: flex-start;
  }


  .KV-content {
    max-width: 100%;
    padding: 125px 40px 0px 35px;
    order: 1; 
    margin-top: 0;
    text-align: left; 
  }

  .KV-content .main-title {

    margin-bottom: 8px; 
    letter-spacing: 1px;
  }

  .KV-content .sub-title {
  
    font-size: var(--fs-xl);
    margin-bottom: 8px; 
    letter-spacing: 1px;
  }

  .KV-content .title-divider {
    max-width: 100%;
    margin: 8px 0 15px 0;
  }

  .KV-content p.description {
    font-size: var(--fs-lg);
    margin-bottom: 0;
  }


  .KV-visual {
    position: relative;
    width: 100%;
    height: 390px; 
    order: 2; 
  }

  .KV-visual img {
    object-position: center center;
  }
}
@media screen and (min-width: 542px) and (max-width: 768px) {
  .KV-visual {
    min-height: 650px;
    margin-top: -50px;
  }
}

@media screen and (min-width: 446px) and (max-width: 541px) {
  .KV-visual {
    min-height: 480px;
    margin-top: -30px;
  }
}

@media (max-width: 445px) {
  .KV-visual {
    margin-top: -50px;
  }
  .KV-visual img {
    object-position: center center;
  }
}


.KV-geometry-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%; 
  height: 100%;
  background-image: url("image/KV-geometry.svg");
  background-position: right center; 
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none; 
  opacity: 1; 
  animation: float-breathing 10s ease-in-out infinite;
  transform-origin: center right; 
}


@keyframes float-breathing {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-20px) scale(1.03);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.9;
  }
}


@media (max-width: 1024px) {
  .KV-geometry-bg {
    width: 60%;
    animation-name: float-breathing-tablet;
  }
}


@keyframes float-breathing-tablet {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1.02);
    opacity: 0.1;
  }
}


@media (max-width: 768px) {
  .KV-geometry-bg {
    width: 100%;
    height: 50%;
    background-position: right top;
    animation-name: float-breathing-mobile;
  }
}


@keyframes float-breathing-mobile {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
  }
}

.quote-banner {
  width: 100%;
  background: linear-gradient(90deg, #9a2cde 0%, #3441cb 100%);
  padding: clamp(3.125rem, 5vw + 1.875rem, 5rem) 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.quote-wrapper {
  position: relative;
  max-width: 800px;
  padding: 0 clamp(2rem, 4vw, 3.75rem);
  text-align: center;
}

.quote-text {
  color: #ffffff;
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: var(--line-height-base);
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  color: #ffffff;
  font-size: clamp(3.125rem, 4vw + 2rem, 5rem);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
  opacity: 0.9;
}

.left-quote {
  top: -0.2em;
  left: 0;
}
.right-quote {
  bottom: -0.4em;
  right: 0;
}

@media screen and (max-width: 500px) {
  .quote-banner {
  padding: clamp(3.125rem, 5vw + 1.875rem, 5rem) 12px;
}

 .quote-wrapper {
  padding: 0 clamp(1.6rem, 4vw, 3.75rem);
}
}

/* --駕馭多變市場------------------------------------ */
.split-bg-section {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.strategy-container {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
}

.strategy-intro {
  flex: 0 0 38%;
  position: relative;
  background-color: #3441cb;
  padding: 80px 40px;
  z-index: 5;
}

.strategy-intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; 
  width: 100vw;
  background-color: #3441cb;
  z-index: -1;
}

.strategy-intro::after {
  content: "";
  position: absolute;
  display: block;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 24px solid #3441cb; 
  left: -24px; 
  top: 100px;
  width: 0;
  height: 0;
  z-index: 10;
}

.intro-title {
  font-size: var(--fs-3xl);
  color: #ffffff;
}

.intro-text {
  font-size: var(--fs-lg);
  color: #ffffff;
  margin-bottom: 0;
  text-align: justify;
}

.strategy-features {
  flex: 0 0 60%;
  position: relative;
  background-color: #f6f7f9;
  padding: 80px 100px 80px 20px; 
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.strategy-features::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0; 
  width: 100vw;
  background-color: #f6f7f9;
  z-index: -1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.feature-icon {
  flex: 0 0 120px;
}

.feature-icon img {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
}

.feature-title {
  font-size: var(--fs-xl);
  color: var(--text-main);
  margin-bottom: 0.25em;
  letter-spacing: 2px;
}

.feature-desc {
  font-size: var(--fs-lg);
  color: #555555;
  margin-bottom: 0;
}


@media screen and (max-width: 850px) {
  .strategy-container {
    flex-direction: column; 
  }

  .strategy-intro {
    flex: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .strategy-intro::after {
    right: 50%;
    transform: translateX(50%);
    top: auto;
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #3441cb; 
    border-bottom: none;
    left: auto; 
  }

  .strategy-features {
    flex: auto;
    padding: 60px 20px;
  }
}

@media screen and (max-width: 500px) {
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}

/* --績效表格------------------------------------- */

.table-responsive {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

/* --- 表格基礎設定 --- */
.performance-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: var(--fs-base);
  line-height: var(--line-height-base);
}

/* --- 儲存格共用設定 --- */
.performance-table th,
.performance-table td {
  padding: clamp(10px, 1.5vw, 15px) 10px;
  text-align: center;
  border-bottom: 1px solid #eef0ff;
}

.performance-table th {
  background-color: #3441cb;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.performance-table span {
  color: #0099ff;
  font-weight: bold;
}

.performance-table tbody tr:nth-child(even) td {
  background-color: #f8fafc;
}
.performance-table tbody tr:nth-child(odd) td {
  background-color: #ffffff;
}

.performance-table th:first-child,
.performance-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 2;
}

.performance-table th:first-child {
  background-color: #3441cb;
  z-index: 3;
}
.performance-table tbody tr:nth-child(even) td:first-child {
  background-color: #f8fafc;
}
.performance-table tbody tr:nth-child(odd) td:first-child {
  background-color: #ffffff;
}


@media screen and (max-width: 600px) {

  .performance-table th:first-child,
  .performance-table td:first-child {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
  }
}

/* 關注核心國家 共築AI全球夢幻隊 */
#global-ai{
  background: url(image/global-ai-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {

#global-ai{
  background-size: cover;
}
}

/* 推薦基金 */

#fund-cta {
  background-color: transparent; 
  padding: 80px 20px;
}


.fund-card-container {
  display: flex;
  align-items: center;
  max-width: 1200px; 
  margin: 0 auto;
  position: relative;
}


.fund-card-image {
  flex: 0 0 45%;
  position: relative;
  z-index: 2; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  margin-bottom: 100px;
}


.section-wrap .fund-card-container .fund-card-image img {
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  margin: 0;
  display: block;
  object-fit: cover; 
}

.fund-card-content {
  flex: 1;
  background: linear-gradient(45deg, #9a2cde 0%, #3441cb 100%);
  padding: 95px 50px 95px 10%; 
  margin-left: -8%; 
  border-radius: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fund-card-title {
  color: #ffffff;
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: 4px; 
  margin-bottom: 25px;
}

.fund-card-content .btn-wrapper {
  margin: 0;
}
.fund-card-content .btn {
  padding: 14px 60px;
  letter-spacing: 4px;
}


@media screen and (max-width: 1024px) {
  #fund-cta {
    padding: 50px 15px;
  }

  .fund-card-container {
    flex-direction: column;
    max-width: 500px;
  }

  .fund-card-image {
    width: 90%;
    margin: 0 auto;
    margin-bottom: -10%; 
  }

  .fund-card-content {
    width: 100%;
    margin-left: 0;
    padding: 15% 25px 50px; 
  }

  .fund-card-title {
    font-size: var(--fs-xl);
    letter-spacing: 2px;
  }
}

/* Footer*/
#site-footer {
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
}

.footer-top-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.footer-brand {
  flex: 0 0 200px;
}
.footer-brand img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
.brand-license {
  border-top: 4px solid #d25b20;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 1px;
}

.footer-info {
  flex: 1;
  min-width: 280px;
  padding: 0 20px;
}
.info-title {
  color: #005598;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.info-details {
  font-size: 13px;
  color: #222222;
  line-height: 1.6;
}

.footer-hotline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.hotline-text {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}
.hotline-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #f8801a;
  letter-spacing: 1px;
}

.disclaimer-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #666666;
  text-align: justify;
  line-height: var(--line-height-relaxed);
}

.disclaimer-list span {
  font-weight: bold;
  color: #0099ff;
}
.disclaimer-list li {
  margin-bottom: 8px;
}

@media screen and (max-width: 992px) {
  .footer-top-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-info {
    padding: 0;
  }

  .footer-brand {
    flex: 0 0 60px;
  }
}

@media screen and (max-width: 500px) {
  .footer-hotline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-brand {
    flex: 0 0 60px;
  }
}
