.hero-banner {
  margin-bottom: 60px;
}

.solution-container {
  margin-top: 60px;
  margin-bottom: 120px;
}

.solution-content {
  margin-top: 20px;
  margin-bottom: 10px;
}

.solution-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.solution-header h1 {
  font-size: var(--fluid-28-48);
  font-weight: 500;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}

.solution-header h3 {
  color: rgba(30, 30, 30, 1);
  font-size: var(--fluid-20-32);
  font-weight: 500;
  letter-spacing: -0.64px;
  text-align: center;
  margin-bottom: 16px;
}

.solution-button-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  height: 56px;
  border-radius: 29px;
  background-color: rgba(209, 61, 20, 1);
  color: #fff;
  font-size: var(--font-size-base);
  font-weight: 500;
  font-style: medium;
  letter-spacing: -0.32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.solution-button-explore:hover {
  background-color: rgba(209, 61, 20, 0.9);
  transform: translateY(-2px);
}

.solution-box {
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.solution-box-title {
  font-size: var(--fluid-24-28);
  font-weight: 600;
  letter-spacing: -0.48px;
}

.solution-box-subtitle {
  font-size: var(--fluid-20-24);
  font-weight: 500;
  letter-spacing: -0.32px;
  margin-bottom: 20px;
}

.solution-box-description {
  font-size: var(--font-size-base);
  font-weight: 400;
  letter-spacing: -0.32px;
}

/* Get Stock Ideas */
.get-stock-ideas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow: auto;
}

.get-stock-ideas-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.get-stock-ideas-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.get-stock-ideas-item-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.group-invest-theme-image,
.group-top-list-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 120px;
  left: 40px;
  object-fit: cover;
}

.group-invest-theme-image img,
.group-top-list-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.bg-gray {
  background-color: #f3f3f3;
}

/* Analyze Stocks */
.analyze-stocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.analyze-stocks-item-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  grid-column: 1 / 3;
  background-color: #f3f3f3;

  .analyze-stocks-item-content {
    width: 50%;
  }
}

.analyze-stocks-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.analyze-stocks-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analyze-search-image {
  width: 480px;
  height: auto;
  object-fit: cover;
  margin-top: 20px;
}

.analyze-stocks-image {
  width: 500px;
  height: auto;
  object-fit: cover;
  margin-top: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.stock-detail-image {
  width: auto;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 135px;
  left: 16px;
}

.similar-stocks-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 100px;
  left: 8px;
}

.h-500 {
  min-height: 500px;
  text-align: center;
}

.track-stocks-item {
  background-color: #f2eeec;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.track-stocks-item-content {
  width: 50%;
  min-height: 200px;
}

.track-stocks-image {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.track-stocks-button,
.investing-insights-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 29px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.32px;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 10px;
  transition: all 0.3s ease;

  &:hover {
    background-color: var(--color-primary-hover);
  }
}

.investing-insights-item-content {
  width: 50%;
  min-height: 200px;
}

.investing-insights-image {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.solution-box:has(.investing-insights-item-content) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.investing-insights-button {
  display: flex;
}

.box-shadow {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 1239px) {
  .get-stock-ideas {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1023px) {
  .solution-container {
    margin-top: 40px;
    margin-bottom: 80px;
  }

  .solution-box {
    padding: 30px;
  }

  .solution-button-explore {
    padding: 0 24px;
    height: 48px;
  }

  .get-stock-ideas {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .analyze-stocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .analyze-stocks-item-1 {
    grid-column: 1;
    flex-direction: column;

    .analyze-stocks-item-content {
      width: 100%;
      margin-bottom: 20px;
    }
  }

  .analyze-search-image {
    width: 100%;
    max-width: 400px;
  }

  .analyze-stocks-image {
    width: 100%;
    max-width: 400px;
    position: relative;
    margin-top: 20px;
  }

  .track-stocks-item {
    flex-direction: column;
  }

  .track-stocks-item-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .track-stocks-image {
    width: 100%;
    position: relative;
  }

  .solution-box:has(.investing-insights-item-content) {
    flex-direction: column;
  }

  .investing-insights-item-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .investing-insights-image {
    width: 100%;
    position: relative;
  }

  .h-500 {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .solution-container {
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .solution-content {
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .solution-header {
    align-items: center;
    text-align: center;
  }

  .solution-button-explore {
    padding: 0 20px;
    height: 44px;
    margin-bottom: 24px;
  }

  .solution-box {
    padding: 20px;
  }

  .get-stock-ideas {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .get-stock-ideas-item {
    min-height: 200px;
  }

  .group-invest-theme-image,
  .group-top-list-image {
    position: relative;
    top: auto;
    left: auto;
  }

  .stock-detail-image {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 16px;
  }

  .similar-stocks-image {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 16px;
  }

  .h-500 {
    min-height: 300px;
  }

  .track-stocks-button,
  .investing-insights-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 16px;
  }
}

@media (max-width: 575px) {
  .solution-container {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .solution-button-explore {
    padding: 0 16px;
    height: 40px;
  }

  .solution-box {
    padding: 16px;
  }

  .get-stock-ideas {
    gap: 12px;
  }

  .analyze-stocks {
    gap: 12px;
  }

  .h-500 {
    min-height: 250px;
  }

  .track-stocks-button,
  .investing-insights-button {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 374px) {
  .solution-box {
    padding: 12px;
  }

  .h-500 {
    min-height: 200px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .solution-container {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .get-stock-ideas {
    grid-template-columns: repeat(2, 1fr);
  }

  .analyze-stocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .analyze-stocks-item-1 {
    grid-column: 1 / 3;
  }
}

@media (hover: none) and (pointer: coarse) {
  .solution-button-explore,
  .track-stocks-button,
  .investing-insights-button {
    min-height: 44px;
    padding: 12px 24px;
  }
}

@media (max-width: 1023px) {
  .container-2xl {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .container-2xl {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 575px) {
  .container-2xl {
    padding: 0 12px;
  }

  .container {
    padding: 0 12px;
  }
}

/* Investment Journey Section - Matching home.html styles */
.investment-journey-section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.investment-journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.investment-journey-header h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  font-size: var(--fluid-28-48);
  margin-bottom: 16px;
}

.investment-journey-header p {
  font-family: var(--font-family-heading);
  font-size: var(--fluid-22-32);
  font-weight: 400;
  color: #3f3b37;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.journey-card {
  background: linear-gradient(0deg, rgba(227, 218, 212, 1), rgba(249, 247, 246, 1));
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-4px);
}

.journey-card-icon {
  width: 62px;
  height: 62px;
  background-color: rgba(192, 172, 156, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.journey-number {
  font-family: "SangBleuMedium", serif;
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(to bottom, #ae734e 10%, #6b3305 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-card h3 {
  font-family: "SangBleuMedium", serif;
  font-size: 24px;
  font-weight: 500;
  color: #1f2225;
  margin: 0 0 12px 0;
  letter-spacing: -0.48px;
}

.journey-card p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f2225;
  line-height: 1.5;
  margin: 0;
}

.journey-learn-grow {
  background-color: #372214;
  background-image: url("../../img/light_bg_pricing.png");
  background-size: auto;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 48px;
  color: #fff;
}

.journey-learn-grow-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.journey-learn-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.journey-learn-badge i {
  width: 32px;
  height: 32px;
  color: #C0AC9C;
}

.journey-learn-badge h4 {
  font-family: "SangBleuMedium", serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.journey-learn-grow p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .journey-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .journey-card {
    min-height: auto;
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .investment-journey-section {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  .investment-journey-header {
    margin-bottom: 40px;
  }
  
  .investment-journey-header p {
    font-size: 18px;
  }
  
  .journey-learn-grow {
    padding: 32px 24px;
  }
  
  .journey-learn-badge h4 {
    font-size: 24px;
  }
  
  .journey-learn-grow p {
    font-size: 16px;
  }
}

/* Solutions Overview Section */
.solutions-overview-section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.solutions-overview-header {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-overview-header h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  font-size: var(--fluid-28-48);
  margin-bottom: 16px;
}

.solutions-overview-header p {
  font-family: var(--font-family-heading);
  font-size: var(--fluid-20-24);
  font-weight: 400;
  color: #3f3b37;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.solutions-overview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.solution-overview-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.solution-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.solution-overview-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.solution-overview-image {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 198px;  /* 180px * 1.1 = 198px */
  height: auto;
  opacity: 1 !important;
  pointer-events: none;
  z-index: 1;
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.solution-overview-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 165px;  /* 150px * 1.1 = 165px */
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Special sizing for Get Stock Ideas card image */
.solution-overview-card:first-child .solution-overview-image {
  width: 154px;  /* 140px * 1.1 = 154px */
}

.solution-overview-card:first-child .solution-overview-image img {
  max-height: 132px;  /* 120px * 1.1 = 132px */
}

.solution-overview-icon {
  width: 62px;
  height: 62px;
  background-color: rgba(192, 172, 156, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-overview-icon img,
.solution-overview-icon svg {
  width: 32px;
  height: 32px;
}

.solution-overview-icon i {
  width: 32px;
  height: 32px;
  color: #ae734e;
}

.solution-overview-card h3 {
  font-family: "SangBleuMedium", serif;
  font-size: 28px;
  font-weight: 500;
  color: #1f2225;
  margin: 0 0 16px 0;
  letter-spacing: -0.56px;
}

.solution-overview-card > p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f2225;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.solution-overview-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px 0;
  flex-grow: 1;
}

.solution-overview-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1f2225;
  line-height: 1.5;
  margin-bottom: 12px;
}

.solution-overview-card ul li:last-child {
  margin-bottom: 0;
}

.solution-overview-card ul li i {
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #ae734e;
}

.solution-overview-card ul li span {
  flex: 1;
}

.solution-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6b3305;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.solution-overview-link:hover {
  gap: 12px;
}

.solution-overview-link i {
  width: 16px;
  height: 16px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .solution-overview-image {
    width: 165px;  /* 150px * 1.1 = 165px */
    right: 24px;
    bottom: 24px;
  }
  
  .solution-overview-image img {
    max-height: 143px;  /* 130px * 1.1 = 143px */
  }
  
  .solution-overview-card:first-child .solution-overview-image {
    width: 132px;  /* 120px * 1.1 = 132px */
  }
  
  .solution-overview-card:first-child .solution-overview-image img {
    max-height: 110px;  /* 100px * 1.1 = 110px */
  }
}

@media (max-width: 991px) {
  .solution-overview-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .solutions-overview-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .solutions-overview-section {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  
  .solutions-overview-header {
    margin-bottom: 40px;
  }
  
  .solutions-overview-header p {
    font-size: 18px;
  }
  
  .solution-overview-card {
    padding: 30px 24px;
  }
  
  .solution-overview-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .solutions-overview-cards {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section-dark {
  background-color: #372214;
  background-image: url("../../img/light_bg_pricing.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.cta-left {
  flex: 1.2;
  max-width: 550px;
}

.cta-left h2 {
  font-family: "SangBleuRegular", serif;
  font-size: var(--fluid-28-48);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-left p {
  font-family: var(--font-family-heading);
  font-size: var(--fluid-18-24);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-white {
  background-color: #ffffff;
  color: #372214;
  padding: 12px 24px;
  border-radius: 29px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-white:hover {
  background-color: #f5f5f5;
  color: #372214 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-white:hover i,
.btn-white:hover svg {
  transform: translateX(3px);
  color: #372214 !important;
  stroke: #372214 !important;
}

.btn-link-white {
  color: #ffffff;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 29px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
}

.btn-link-white:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-link-white:hover i,
.btn-link-white:hover svg {
  transform: translateX(3px);
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.cta-feature i {
  width: 18px;
  height: 18px;
  color: #C0AC9C;
}

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  width: 100%;
  min-width: 270px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.stat-card i {
  width: 38px;
  height: 38px;
  color: #ffffff;
  flex-shrink: 0;
}

.stat-card svg {
  stroke: #ffffff;
  color: #ffffff;
  width: 38px;
  height: 38px;
}

.stat-content {
  flex: 1;
  text-align: left;
}

.stat-number {
  font-family: "SangBleuMedium", serif;
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-left {
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .cta-features {
    justify-content: center;
  }
  
  .cta-stats {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }
  
  .stat-card {
    min-width: auto;
    flex: 1;
    padding: 16px 14px;
  }
  
  .stat-card svg {
    width: 30px;
    height: 30px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .cta-section-dark {
    padding: 60px 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .solutions-overview-section {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  .cta-left h2 {
    font-size: 28px;
  }
  
  .cta-left p {
    font-size: 18px;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 14px 10px;
  }
  
  .stat-content {
    text-align: center;
  }
  
  .stat-card svg {
    width: 26px;
    height: 26px;
  }
  
  .stat-number {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-white,
  .btn-link-white {
    width: 100%;
    justify-content: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-stats {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
  }
  
  .stat-card {
    min-width: 85px;
    flex: 1;
    padding: 12px 6px;
  }
  
  .stat-card svg {
    width: 24px;
    height: 24px;
  }
  
  .stat-number {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

/* Demo Section */
.demo-section {
  background: linear-gradient(0deg, rgba(227, 218, 212, 0.3), rgba(249, 247, 246, 1));
  padding: 80px 0;
  margin-bottom: 80px;
}

.demo-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.demo-left {
  flex: 1;
  max-width: 500px;
}

.demo-left h2 {
  font-family: "SangBleuRegular", serif;
  font-size: var(--fluid-28-48);
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.demo-left p {
  font-family: var(--font-family-heading);
  font-size: var(--fluid-18-22);
  font-weight: 400;
  color: #3f3b37;
  margin-bottom: 40px;
  line-height: 1.4;
}

.demo-features {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1f2225;
}

.demo-feature i {
  width: 24px;
  height: 24px;
  color: #6b3305;
}

.btn-demo {
  background-color: #D13D14;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 29px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-demo:hover {
  background-color: #B53512;
}

.btn-demo i {
  width: 20px;
  height: 20px;
}

.demo-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 500px;
}

.demo-card-header {
  margin-bottom: 16px;
}

.demo-label {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(107, 51, 5, 0.1);
  color: #6b3305;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.demo-card h3 {
  font-family: "SangBleuMedium", serif;
  font-size: 28px;
  font-weight: 500;
  color: #1f2225;
  margin: 0 0 32px 0;
}

.rank-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rank-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rank-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #3f3b37;
}

.rank-score {
  font-family: "SangBleuMedium", serif;
  font-size: 20px;
  font-weight: 500;
  color: #1f2225;
}

.rank-bar {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.rank-fill {
  height: 100%;
  background: linear-gradient(90deg, #ae734e 0%, #6b3305 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.rank-fill-combined {
  background: linear-gradient(90deg, #ae734e 0%, #D13D14 100%);
}

/* Responsive */
@media (max-width: 991px) {
  .demo-content {
    flex-direction: column;
    gap: 48px;
  }
  
  .demo-left {
    max-width: 100%;
    text-align: center;
  }
  
  .demo-features {
    justify-content: center;
  }
  
  .demo-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .demo-section {
    padding: 60px 0;
    margin-bottom: 60px;
  }
  
  .demo-left h2 {
    font-size: 28px;
  }
  
  .demo-left p {
    font-size: 18px;
  }
  
  .demo-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .demo-card {
    padding: 24px;
  }
  
  .demo-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .demo-features {
    align-items: flex-start;
  }
  
  .demo-left {
    text-align: left;
  }
  
  .demo-card {
    padding: 20px;
  }
  
  .rank-score {
    font-size: 18px;
  }
}
