/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
} */

.hero-section {
  background: linear-gradient(
    135deg,
    #1a237e 0%,
    #283593 30%,
    #3949ab 70%,
    #5c6bc0 100%
  );
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-content {
  max-width: 700px;
  /* margin: 0 auto; */
  height: 100%;
  padding: 2rem;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  background: #4285f4;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.cta-button:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #ffffff;
  clip-path: ellipse(100% 100% at 50% 100%);
}

/* Decorative elements */
.hero-section::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

/* Investment Options Section */
.investment-options {
  padding: 4rem 0;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.risk-spectrum {
  margin-bottom: 3rem;
}

.risk-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.risk-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.risk-gradient {
  height: 100%;
  background: linear-gradient(
    to right,
    #4db6ac,
    #26a69a,
    #00897b,
    #00695c,
    #004d40
  );
  width: 100%;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.investment-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.investment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-category {
  background: #e8f5e8;
  color: #2e7d32;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.cash-icon {
  background: #4285f4;
}

.bonds-icon {
  background: #34a853;
}

.stocks-icon {
  background: #ea4335;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.card-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-details {
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.detail-label {
  font-weight: 500;
  color: #666;
  font-size: 0.9rem;
  min-width: 80px;
}

.detail-value {
  color: #2c3e50;
  font-size: 0.9rem;
  text-align: right;
  flex: 1;
}

.detail-value.link {
  color: #4285f4;
  cursor: pointer;
  text-decoration: underline;
}

.detail-value sup {
  font-size: 0.7rem;
}

.card-button {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
}

.card-button.primary {
  background: #4285f4;
  color: white;
  border: none;
}

.card-button.primary:hover {
  background: #3367d6;
}

.card-button.secondary {
  background: transparent;
  color: #4285f4;
  border: 1px solid #4285f4;
}

.card-button.secondary:hover {
  background: #f8f9ff;
}

.disclaimer {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Risk Return Section */
.risk-return-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.risk-return-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.risk-return-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.risk-return-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.risk-return-button {
  background: transparent;
  color: #4285f4;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.risk-return-button:hover {
  color: #3367d6;
}

.risk-return-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.balance-illustration {
  position: relative;
  width: 300px;
  height: 200px;
}

.balance-base {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #37474f;
  border-radius: 50% 50% 0 0;
  clip-path: polygon(20% 100%, 80% 100%, 60% 50%, 40% 50%);
}

.balance-bar {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 200px;
  height: 8px;
  background: #5d99d3;
  border-radius: 4px;
}

.balance-left {
  position: absolute;
  bottom: 78px;
  left: 50px;
  transform: translateY(-10px);
}

.balance-right {
  position: absolute;
  bottom: 88px;
  right: 50px;
  transform: translateY(-5px);
}

.warning-icon {
  width: 40px;
  height: 35px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.growth-plant {
  position: relative;
  width: 40px;
  height: 50px;
}

.plant-stem {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: #4caf50;
  border-radius: 2px;
}

.plant-leaf {
  position: absolute;
  width: 20px;
  height: 12px;
  background: #66bb6a;
  border-radius: 50% 10px;
}

.leaf1 {
  top: 10px;
  left: 5px;
  transform: rotate(-30deg);
}

.leaf2 {
  top: 5px;
  right: 5px;
  transform: rotate(30deg);
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  color: #ffd54f;
  font-size: 1.2rem;
  animation: twinkle 2s ease-in-out infinite alternate;
}

.star1 {
  top: 20px;
  right: 30px;
}

.star2 {
  top: 40px;
  right: 10px;
  animation-delay: 0.5s;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #90caf9;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.dot1 {
  top: 60px;
  left: 20px;
}

.dot2 {
  top: 30px;
  left: 10px;
  animation-delay: 1s;
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Resources Section */
.resources-section {
  padding: 4rem 0;
  background: #ffffff;
}

.resources-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.resource-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.resource-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4285f4;
  margin: 1.5rem 1.5rem 1rem;
  line-height: 1.3;
}

.resource-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 1.5rem 1.5rem;
}

/* Mountain Scene */
.mountain-scene {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(to bottom, #87ceeb 0%, #e0f6ff 100%);
}

.mountains {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
}

.mountain {
  position: absolute;
  bottom: 0;
}

.mountain1 {
  left: 0;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 120px solid #2d5a3d;
}

.mountain2 {
  left: 100px;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 90px solid #4a7c59;
}

.mountain3 {
  right: 0;
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 100px solid #1e3a2e;
}

.hiker {
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 10;
}

.hiker-body {
  width: 20px;
  height: 30px;
  background: #8b4513;
  border-radius: 10px;
}

.hiker-head {
  width: 15px;
  height: 15px;
  background: #ddbea9;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 2.5px;
}

.hiker-backpack {
  width: 12px;
  height: 18px;
  background: #654321;
  border-radius: 4px;
  position: absolute;
  top: 5px;
  left: -8px;
}

.hiker-arm {
  width: 8px;
  height: 15px;
  background: #ddbea9;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  right: -5px;
  transform: rotate(-30deg);
}

.dip-sign {
  position: absolute;
  top: 30px;
  right: 80px;
  z-index: 10;
}

.sign-post {
  width: 4px;
  height: 60px;
  background: #8b4513;
  margin: 0 auto;
}

.sign-board {
  background: #ffd700;
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid #b8860b;
  transform: rotate(-10deg);
  text-align: center;
  font-weight: bold;
  color: #333;
  font-size: 0.8rem;
}

.ahead {
  display: block;
  font-size: 0.6rem;
}

/* Q&A Scene */
.qa-scene {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb74d 100%);
}

.clouds {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: 0.8;
}

.cloud1 {
  top: 20px;
  left: 20px;
  width: 60px;
  height: 20px;
}

.cloud1::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
}

.cloud2 {
  top: 40px;
  right: 30px;
  width: 40px;
  height: 15px;
}

.qa-person {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.person-body {
  width: 30px;
  height: 40px;
  background: #ff7043;
  border-radius: 15px;
}

.person-head {
  width: 25px;
  height: 25px;
  background: #ddbea9;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: 2.5px;
}

.person-hair {
  width: 20px;
  height: 15px;
  background: #8b4513;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: -20px;
  left: 5px;
}

.qa-bubbles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.q-bubble,
.a-bubble {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  position: absolute;
}

.q-bubble {
  background: #1565c0;
  top: -20px;
  left: -60px;
}

.a-bubble {
  background: #2e7d32;
  top: 10px;
  left: 20px;
}

.qa-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* BlackRock Scene */
.blackrock-scene {
  width: 100%;
  height: 100%;
  background: #1a237e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.blackrock-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 250px;
}

.blackrock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.blackrock-logo {
  width: 40px;
  height: 40px;
}

.logo-circle {
  width: 100%;
  height: 100%;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.blackrock-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.risk-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.risk-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}

.risk-value {
  color: #26a69a;
  font-weight: 500;
  font-size: 1rem;
}

/* Cash Scene */
.cash-scene {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hand {
  position: relative;
  z-index: 10;
}

.hand-palm {
  width: 40px;
  height: 50px;
  background: #d4a574;
  border-radius: 20px 20px 15px 15px;
}

.hand-thumb {
  position: absolute;
  top: 10px;
  left: -15px;
  width: 20px;
  height: 30px;
  background: #d4a574;
  border-radius: 10px;
  transform: rotate(-30deg);
}

.hand-fingers {
  position: absolute;
  top: -10px;
  left: 5px;
  width: 30px;
  height: 20px;
  background: #d4a574;
  border-radius: 15px 15px 0 0;
}

.coin {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 30px;
  height: 30px;
  background: #ffd700;
  border-radius: 50%;
  border: 3px solid #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.coin-face {
  font-weight: bold;
  color: #b8860b;
  font-size: 1.2rem;
}

.cash-layers {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.cash-layer {
  width: 60px;
  height: 8px;
  border-radius: 4px;
  position: absolute;
}

.layer1 {
  background: #4caf50;
  bottom: 0;
}

.layer2 {
  background: #66bb6a;
  bottom: 6px;
}

.layer3 {
  background: #81c784;
  bottom: 12px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .investment-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .investment-card {
    padding: 1.25rem;
  }

  .detail-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .detail-value {
    text-align: left;
  }

  .risk-return-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .risk-return-title {
    font-size: 2rem;
  }

  .balance-illustration {
    width: 250px;
    height: 180px;
  }

  .balance-bar {
    width: 160px;
  }

  .resources-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .resource-image {
    height: 180px;
  }
}
