/* ==========================================================================
   FUND PAGE — ВФП Премиум Акции
   ========================================================================== */

/* Smooth scroll for anchor links */
.hp-landing {
  scroll-behavior: smooth;
}

/* ==========================================================================
   SECTION 1: Red Hero Banner
   ========================================================================== */

.fp-hero {
  background-color: var(--hp-navy, #1f2f3f);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0 80px;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.fp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 47, 63, 0.65);
}

.fp-hero .hp-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fp-hero__title {
  color: var(--hp-white, #fff);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 700px;
}

/* ==========================================================================
   SECTION 2: Што се ВФП премиум акции?
   ========================================================================== */

.fp-intro {
  background: var(--hp-white, #fff);
  padding: var(--hp-section-py, 80px) 0;
}

.fp-intro__grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.fp-intro__title {
  flex: 0 0 50%;
  color: var(--hp-red, #cd2c2a);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.fp-intro__right {
  flex: 1;
  display: flex;
  align-items: center;
}

.fp-intro__text {
  color: var(--hp-navy, #1f2f3f);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.fp-intro__cta {
  display: block;
  width: 100%;
  background: var(--hp-red, #cd2c2a);
  color: var(--hp-white, #fff) !important;
  text-align: center;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: var(--hp-radius-pill, 50px);
  transition: all 0.2s;
}

.fp-intro__cta:hover {
  background: var(--hp-red-dark, #A82523);
}

/* ==========================================================================
   SECTION 3: Зошто ВФП премиум акции? + Chart + Tabs
   ========================================================================== */

.fp-why {
  background: var(--hp-gray-light, #f8f8f8);
  padding: var(--hp-section-py, 80px) 0;
}


.fp-why__title {
  color: var(--hp-red, #cd2c2a);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
}

.fp-why__desc {
  color: var(--hp-navy, #1f2f3f);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

/* Stats row — full width cards */
.fp-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.fp-stats-card {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--hp-white, #fff);
  border-radius: var(--hp-radius-card, 8px);
  border: 1px solid var(--hp-gray-border, #e0e0e0);
  transition: all 0.3s;
}

.fp-stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--hp-red, #cd2c2a);
}

.fp-stats-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--hp-red, #cd2c2a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-stats-card__icon i {
  color: var(--hp-white, #fff);
  font-size: 22px;
}

.fp-stats-card__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-red, #cd2c2a);
  margin: 0 0 4px;
}

.fp-stats-card__content p {
  font-size: 14px;
  color: var(--hp-gray, #666);
  margin: 0;
  line-height: 1.5;
}

/* Chart */
.fp-why__chart {
  margin-top: 40px;
  margin-bottom: 32px;
}

.fp-why__chart .chart-wrap {
  background: var(--hp-white, #fff);
  border: 1px solid var(--hp-gray-border, #e0e0e0);
  border-radius: var(--hp-radius-card, 8px);
  padding: 20px;
}

/* Tabs — segmented control style */
.fp-tabs {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-tabs__btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--hp-white, #fff);
  color: var(--hp-navy, #1f2f3f);
  transition: all 0.2s;
  font-family: var(--hp-font, inherit);
}

.fp-tabs__btn + .fp-tabs__btn {
  border-left: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-tabs__btn.is-active {
  background: var(--hp-red, #cd2c2a);
  color: var(--hp-white, #fff);
}

.fp-tabs__btn:hover:not(.is-active) {
  background: var(--hp-gray-light, #f8f8f8);
}

/* Tab panels */
.fp-tabs__panels {
  margin-top: 24px;
}

.fp-tabs__panel {
  display: none;
}

.fp-tabs__panel.is-active {
  display: block;
}

.fp-tabs__placeholder {
  color: var(--hp-gray, #666);
  font-size: 16px;
  font-style: italic;
  padding: 24px 0;
}

/* Fund facts inside tab */
.fp-fund-facts {
  display: flex;
  gap: 24px;
}

.fp-fund-facts__item {
  flex: 1;
  background: var(--hp-white, #fff);
  border: 1px solid var(--hp-gray-border, #e0e0e0);
  border-radius: var(--hp-radius-card, 8px);
  padding: 20px;
  text-align: center;
}

.fp-fund-facts__item label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hp-gray, #666);
  margin-bottom: 8px;
}

.fp-fund-facts__value {
  font-size: 22px;
  font-weight: 700;
  color: var(--hp-navy, #1f2f3f);
}

.fp-fund-facts__value small {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}

.fp-fund-facts__item .udel-date {
  display: block;
  font-size: 12px;
  color: var(--hp-gray, #666);
  margin-top: 4px;
}

/* Risk bar inside fund facts */
.fp-fund-facts__risk {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  justify-content: center;
}

.fp-fund-facts__risk span {
  width: 14px;
  background: var(--hp-gray-border, #e0e0e0);
  border-radius: 2px;
}

.fp-fund-facts__risk span:nth-child(1) { height: 10px; }
.fp-fund-facts__risk span:nth-child(2) { height: 15px; }
.fp-fund-facts__risk span:nth-child(3) { height: 20px; }
.fp-fund-facts__risk span:nth-child(4) { height: 25px; }
.fp-fund-facts__risk span:nth-child(5) { height: 30px; }
.fp-fund-facts__risk span:nth-child(6) { height: 35px; }
.fp-fund-facts__risk span:nth-child(7) { height: 40px; }

.fp-fund-facts__risk.risk-1 span:nth-child(1),
.fp-fund-facts__risk.risk-2 span:nth-child(-n+2),
.fp-fund-facts__risk.risk-3 span:nth-child(-n+3),
.fp-fund-facts__risk.risk-4 span:nth-child(-n+4),
.fp-fund-facts__risk.risk-5 span:nth-child(-n+5),
.fp-fund-facts__risk.risk-6 span:nth-child(-n+6),
.fp-fund-facts__risk.risk-7 span {
  background: var(--hp-red, #cd2c2a);
}

.fp-fund-facts__risk-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-red, #cd2c2a);
  margin-top: 6px;
}

/* ==========================================================================
   TAB CONTENT — Restyle WPBakery output
   ========================================================================== */

/* General tab content reset */
.fp-tabs__panel h2,
.fp-tabs__panel h3 {
  color: var(--hp-red, #cd2c2a);
  font-weight: 700;
  margin: 28px 0 12px;
}

.fp-tabs__panel h2:first-child,
.fp-tabs__panel h3:first-child {
  margin-top: 0;
}

.fp-tabs__panel h2 { font-size: 24px; }
.fp-tabs__panel h3 { font-size: 20px; }

.fp-tabs__panel p {
  color: var(--hp-navy, #1f2f3f);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.fp-tabs__panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fp-tabs__panel ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
  font-size: 18px;
  color: var(--hp-navy, #1f2f3f);
  line-height: 1.5;
}

.fp-tabs__panel ul li:last-child {
  border-bottom: none;
}

.fp-tabs__panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--hp-red, #cd2c2a);
  border-radius: 50%;
}

.fp-tabs__panel ul li a {
  color: var(--hp-navy, #1f2f3f);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.fp-tabs__panel ul li a:hover {
  color: var(--hp-red, #cd2c2a);
}

/* Tables inside tabs */
.fp-tabs__panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.fp-tabs__panel table td,
.fp-tabs__panel table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-tabs__panel table tr:first-child td,
.fp-tabs__panel table tr:first-child th {
  font-weight: 700;
  color: var(--hp-red, #cd2c2a);
  border-bottom: 2px solid var(--hp-gray-border, #e0e0e0);
}

/* WPBakery progress bars (Top 10) — restyle */
.fp-tabs__panel .vc_progress_bar .vc_single_bar {
  background: var(--hp-gray-light, #f8f8f8) !important;
  border-radius: 6px !important;
  margin-bottom: 8px !important;
  overflow: hidden;
}

.fp-tabs__panel .vc_progress_bar .vc_single_bar .vc_bar {
  background: var(--hp-red, #cd2c2a) !important;
  border-radius: 6px !important;
  height: 100% !important;
}

.fp-tabs__panel .vc_progress_bar .vc_single_bar .vc_label {
  color: var(--hp-white, #fff) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 14px !important;
  position: relative;
  z-index: 1;
}

.fp-tabs__panel .vc_progress_bar .vc_single_bar .vc_label .vc_label_units {
  background: var(--hp-white, #fff) !important;
  color: var(--hp-red, #cd2c2a) !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  margin-left: 8px;
}

/* Hide WPBakery counter styling, use clean look */
.fp-tabs__panel .wpsm_counter_b_row {
  display: none;
}

/* Remove WPBakery spacing elements */
.fp-tabs__panel .vc_empty_space {
  display: none !important;
}

/* Clean up WPBakery row/column padding */
.fp-tabs__panel .vc_row,
.fp-tabs__panel .wpb_row {
  margin: 0 !important;
  padding: 0 !important;
}

.fp-tabs__panel .vc_column-inner,
.fp-tabs__panel .wpb_wrapper {
  padding: 0 !important;
}

.fp-tabs__panel .vc_column_container {
  padding: 0 !important;
}

/* Hide WPBakery native tab navigation (we use our own) */
.fp-tabs__panel .vc_tta-tabs-list,
.fp-tabs__panel .vc_tta-tabs-container {
  display: none !important;
}

/* Reports grid — 3 per row */
.fp-reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.fp-report-year {
  background: var(--hp-white, #fff);
  border: 1px solid var(--hp-gray-border, #e0e0e0);
  border-radius: var(--hp-radius-card, 8px);
  padding: 24px;
  transition: all 0.3s;
}

.fp-report-year:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--hp-red, #cd2c2a);
}

.fp-report-year h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--hp-red, #cd2c2a);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hp-red, #cd2c2a);
}

.fp-report-year ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-report-year li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
  font-size: 14px;
}

.fp-report-year li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fp-report-year li a {
  color: var(--hp-navy, #1f2f3f);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.fp-report-year li a:hover {
  color: var(--hp-red, #cd2c2a);
}

@media (max-width: 992px) {
  .fp-reports-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .fp-reports-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TAB 2: Top 10 Companies Table
   ========================================================================== */

.fp-top10 {
  width: 100%;
  border-collapse: collapse;
}

.fp-top10 thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hp-gray, #666);
  padding: 0 0 12px;
  border-bottom: 2px solid var(--hp-gray-border, #e0e0e0);
}

.fp-top10 thead th:first-child {
  width: 40px;
}

.fp-top10 thead th:last-child {
  width: 180px;
}

.fp-top10 tbody td {
  padding: 14px 0;
  font-size: 15px;
  color: var(--hp-navy, #1f2f3f);
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-top10 tbody td:first-child {
  font-weight: 700;
  color: var(--hp-red, #cd2c2a);
  width: 40px;
}

.fp-top10__bar {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  color: var(--hp-red, #cd2c2a);
  padding: 6px 12px;
  background: var(--hp-gray-light, #f8f8f8);
  border-radius: 4px;
  overflow: hidden;
}

.fp-top10__bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--pct);
  background: rgba(205, 44, 42, 0.12);
  border-radius: 4px;
}

.fp-top10__date {
  font-size: 13px;
  color: var(--hp-gray, #666);
  margin-top: 16px;
  font-style: italic;
}

/* ==========================================================================
   TAB 3: Portfolio Reports
   ========================================================================== */

.fp-reports {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fp-reports__year h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-red, #cd2c2a);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hp-red, #cd2c2a);
  display: inline-block;
}

.fp-reports__year ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fp-reports__year li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
  font-size: 15px;
  color: var(--hp-navy, #1f2f3f);
  cursor: pointer;
  transition: color 0.2s;
}

.fp-reports__year li:hover {
  color: var(--hp-red, #cd2c2a);
}

.fp-reports__year li span {
  font-weight: 600;
}

.fp-reports__year li small {
  font-size: 13px;
  color: var(--hp-gray, #666);
  font-weight: 400;
}

/* ==========================================================================
   TAB 4: Documents
   ========================================================================== */

.fp-docs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fp-docs__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
  cursor: pointer;
  transition: all 0.2s;
}

.fp-docs__item:first-child {
  border-top: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-docs__item:hover {
  padding-left: 8px;
}

.fp-docs__item i {
  font-size: 28px;
  color: var(--hp-red, #cd2c2a);
  flex-shrink: 0;
}

.fp-docs__item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--hp-navy, #1f2f3f);
}

.fp-docs__item small {
  font-size: 12px;
  color: var(--hp-gray, #666);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fp-docs__item:hover strong {
  color: var(--hp-red, #cd2c2a);
}

/* ==========================================================================
   TAB responsive
   ========================================================================== */

@media (max-width: 768px) {
  .fp-top10 thead th:last-child { width: 120px; }
  .fp-top10 tbody td { font-size: 14px; padding: 12px 0; }
  .fp-reports__year li { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 576px) {
  .fp-top10 tbody td { font-size: 13px; padding: 10px 0; }
  .fp-top10__bar { font-size: 12px; padding: 4px 8px; }
  .fp-docs__item strong { font-size: 14px; }
}

/* ==========================================================================
   SECTION 4: Клучни предности — red left bar accent
   ========================================================================== */

.fp-benefits {
  background: var(--hp-white, #fff);
  padding: var(--hp-section-py, 80px) 0;
}

.fp-benefits__grid {
  display: flex;
  border-radius: var(--hp-radius-card, 8px);
  overflow: hidden;
}

.fp-benefits__left {
  flex: 0 0 50%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-benefits__title {
  color: var(--hp-red, #cd2c2a);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.fp-benefits__text {
  color: var(--hp-navy, #1f2f3f);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 28px;
}

.fp-benefits__image {
  flex: 0 0 50%;
  overflow: hidden;
}

.fp-benefits__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.fp-benefits__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 2px solid var(--hp-red, #cd2c2a);
  color: var(--hp-red, #cd2c2a) !important;
  background: transparent;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s;
}

.fp-benefits__cta i {
  font-size: 18px;
}

.fp-benefits__cta:hover {
  background: var(--hp-red, #cd2c2a);
  color: var(--hp-white, #fff) !important;
}

/* ==========================================================================
   SECTION 5: Ризик
   ========================================================================== */

.fp-risk {
  background: var(--hp-red, #cd2c2a);
  padding: var(--hp-section-py, 80px) 0;
}

.fp-risk__title {
  color: var(--hp-white, #fff);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.fp-risk__text {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 32px;
}

.fp-risk__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 24px;
}

.fp-risk__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-white, #fff);
}

.fp-risk__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hp-white, #fff);
  color: var(--hp-red, #cd2c2a) !important;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s;
}

.fp-risk__cta i {
  font-size: 18px;
}

.fp-risk__cta:hover {
  background: var(--hp-navy, #1f2f3f);
  color: var(--hp-white, #fff) !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTION 6: FAQ
   ========================================================================== */

.fp-faq {
  background: var(--hp-white, #fff);
  padding: var(--hp-section-py, 80px) 0;
}

.fp-faq__title {
  color: var(--hp-navy, #1f2f3f);
  font-size: 50px;
  font-weight: 800;
  margin: 0 0 36px;
}

.fp-faq__list {
  display: flex;
  flex-direction: column;
}

.fp-faq__item {
  border-bottom: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-faq__item:first-child {
  border-top: 1px solid var(--hp-gray-border, #e0e0e0);
}

.fp-faq__item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--hp-navy, #1f2f3f);
  list-style: none;
  transition: color 0.2s;
}

.fp-faq__item summary::-webkit-details-marker {
  display: none;
}

.fp-faq__item summary::before {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--hp-red, #cd2c2a);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s;
}

.fp-faq__item[open] summary::before {
  transform: rotate(45deg);
}

.fp-faq__item summary:hover {
  color: var(--hp-red, #cd2c2a);
}

.fp-faq__item p {
  color: var(--hp-gray, #666);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  padding: 0 0 18px 48px;
}

/* ==========================================================================
   RESPONSIVE — Tablet (992px)
   ========================================================================== */

@media (max-width: 992px) {
  .fp-hero__title,
  .fp-intro__title,
  .fp-why__title,
  .fp-benefits__title,
  .fp-risk__title,
  .fp-faq__title {
    font-size: 36px;
  }

  .fp-stats-card__content h3 { font-size: 16px; }

  .fp-fund-facts { flex-wrap: wrap; }
  .fp-fund-facts__item { flex: 1 1 45%; }
}

/* ==========================================================================
   RESPONSIVE — Mobile (768px)
   ========================================================================== */

@media (max-width: 768px) {
  .fp-hero { padding: 140px 0 52px; min-height: auto; }

  .fp-hero__title,
  .fp-intro__title,
  .fp-why__title,
  .fp-benefits__title,
  .fp-risk__title,
  .fp-faq__title {
    font-size: 30px;
  }

  .fp-intro__text,
  .fp-why__desc,
  .fp-benefits__text,
  .fp-risk__text,
  .fp-faq__item summary,
  .fp-faq__item p,
  .fp-tabs__panel p,
  .fp-tabs__panel ul li {
    font-size: 16px;
  }

  .fp-intro__grid { flex-direction: column; gap: 20px; }
  .fp-intro__title { flex: none; }

  .fp-stats-row { flex-direction: column; gap: 12px; }

  .fp-tabs__btn { font-size: 13px; padding: 12px 8px; }

  .fp-fund-facts { flex-direction: column; gap: 12px; }
  .fp-fund-facts__item { flex: none; }

  .fp-benefits__grid { flex-direction: column; }
  .fp-benefits__left { flex: none; padding: 52px var(--hp-section-px, 24px); }
  .fp-benefits__image { flex: none; max-height: 300px; }

  .fp-risk__row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fp-risk__cta { width: 100%; justify-content: center; }
}

/* ==========================================================================
   RESPONSIVE — Small Mobile (576px)
   ========================================================================== */

@media (max-width: 576px) {
  .fp-hero { padding: 100px 0 36px; }

  .fp-hero__title,
  .fp-intro__title,
  .fp-why__title,
  .fp-benefits__title,
  .fp-risk__title,
  .fp-faq__title {
    font-size: 26px;
  }

  .fp-intro__text,
  .fp-why__desc,
  .fp-benefits__text,
  .fp-risk__text,
  .fp-faq__item summary,
  .fp-faq__item p,
  .fp-tabs__panel p,
  .fp-tabs__panel ul li {
    font-size: 15px;
  }

  .fp-intro__cta { font-size: 16px; padding: 14px 24px; }

  .fp-stats-card { padding: 16px; }
  .fp-stats-card__content h3 { font-size: 15px; }

  .fp-tabs__btn { font-size: 12px; padding: 10px 6px; }

  .fp-faq__item summary::before { width: 28px; height: 28px; }
  .fp-faq__item p { padding-left: 40px; }
  }
