/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
  padding: 80px 0;
  background: var(--white);
}

/* --- Card shell --- */
.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.solution-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* --- Blue header banner --- */
.solution-card-header {
  background: var(--accent);
  padding: 40px 48px 36px;
  position: relative;
  overflow: hidden;
}

.solution-card-header::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.solution-card-header .solution-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.solution-card-header h3 {
  font-size: 28px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.solution-card-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

/* --- Card body --- */
.solution-card-body {
  padding: 40px 48px 48px;
}

/* --- Highlight metrics row --- */
.hf-highlights {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.hf-highlight-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
  background: var(--gray-100);
  transition: background 0.3s ease;
}

.hf-highlight-item:not(:last-child) {
  border-right: 1px solid var(--gray-200);
}

.hf-highlight-item:hover {
  background: rgba(28, 96, 167, 0.04);
}

.hf-highlight-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hf-highlight-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- Highlighted table cells --- */
.highlight-cell {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

/* --- Objective block --- */
.objective {
  background: var(--gray-100);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 0 8px 8px 0;
}

.objective .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}

.objective p {
  color: var(--black);
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.solution-desc {
  color: var(--gray-600);
  line-height: 1.8;
  font-weight: 300;
}

.track-record {
  margin-top: 20px;
}

.track-badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
}

/* --- Content layouts --- */
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.solution-content.solution-content-etf {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.etf-top-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.etf-performance-full {
  width: 100%;
  margin-top: 0;
}

.solution-content.solution-content-hedgefund {
  display: block;
}

/* --- Performance Table --- */
.performance-dashboard h4 {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0 0 2px 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-main);
  font-weight: 600;
}

.performance-dashboard-hedgefund {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 24px;
  row-gap: 0;
  align-items: stretch;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.performance-dashboard-hedgefund h4 {
  grid-column: 1 / -1;
  margin: 0 0 2px 0;
}

.performance-dashboard-hedgefund .performance-asof {
  grid-column: 1 / -1;
  margin: 0 0 12px 0;
}

.performance-dashboard-hedgefund .performance-chart {
  grid-column: 1;
  margin-bottom: 0;
  height: 100%;
  object-fit: cover;
}

.performance-dashboard-hedgefund .performance-table-wrapper {
  grid-column: 2;
  display: flex;
  flex-direction: column;
}

.performance-dashboard-hedgefund .performance-table-wrapper .performance-table {
  flex: 1;
}

.performance-dashboard-hedgefund .table-note {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.performance-chart {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.performance-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.performance-table th {
  text-align: left;
  padding: 13px 16px;
  background: var(--accent);
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.performance-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--black);
  font-weight: 400;
  transition: background 0.2s ease;
  font-size: 13px;
}

.performance-table tbody tr:last-child td {
  border-bottom: none;
}

.performance-table tr:hover td {
  background: rgba(28, 96, 167, 0.03);
}

.performance-table .positive {
  color: var(--accent);
  font-weight: 600;
}

.table-note {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  color: var(--gray-500);
  font-style: italic;
}

.performance-asof {
  font-size: 11px;
  color: var(--gray-500);
  margin: 0 0 12px 0;
  padding: 0;
}

.etf-performance {
  margin-top: 0;
}

/* --- Key Points --- */
.key-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.key-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.key-point:hover {
  background: var(--gray-100);
}

.key-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 96, 167, 0.08);
  border-radius: 10px;
}

.key-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.key-point h5 {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 600;
}

.key-point p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}

/* --- Partner Logos --- */
.key-point:has(.partner-logos) {
  align-items: center;
  flex: 1;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  height: 48px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.partner-logo {
  height: 82px;
  width: auto;
  object-fit: contain;
}
