/* ============================================
   FINANCIAL PAGE Styles
   ============================================ */

/* Page hero styles are now in global.css */

/* --- Problem / Solution / Outcome --- */
.pso-section { padding: 100px 0; }

.pso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pso-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pso-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.pso-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pso-reality {
  background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
  border: 1px solid #FECACA;
}
.pso-reality .pso-label { color: var(--error); }

.pso-what {
  background: linear-gradient(135deg, rgba(25,75,70,0.06), rgba(25,75,70,0.1));
  border: 1px solid rgba(25,75,70,0.15);
}
.pso-what .pso-label { color: rgb(25,75,70); }

.pso-change {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1px solid #A7F3D0;
}
.pso-change .pso-label { color: var(--success); }

.pso-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* --- Financial Programs Timeline --- */
.fin-programs { padding: 100px 0; }

.fin-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.fin-module {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(25,75,70,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(25,75,70,0.06);
}

.fin-module:hover {
  box-shadow: 0 16px 48px rgba(25,75,70,0.1);
  border-color: rgba(25,75,70,0.15);
}

.fin-module:hover {
  box-shadow: 0 8px 28px rgba(25,75,70,0.12);
  border-color: rgba(25,75,70,0.18);
}

.fin-module.active {
  border-color: rgb(25,75,70);
  box-shadow: var(--shadow-lg);
}

.fin-module-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  position: relative;
}

.fin-module-header::after {
  content: '';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  transition: var(--transition-base);
}

.fin-module.active .fin-module-header::after {
  transform: translateY(-50%) rotate(180deg);
}

.fin-module-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(25,75,70), #1a5c55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.fin-module-header h3 {
  font-size: 1.125rem;
  margin: 0;
}

.fin-module-tag {
  display: none;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  font-style: italic;
}

.fin-module.active .fin-module-tag {
  display: block;
}

.fin-module-header > div:last-child {
  margin-left: auto;
}

.fin-module-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
}

.fin-module.active .fin-module-list {
  max-height: 500px;
  padding: 0 32px 28px 100px;
}

.fin-module-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.fin-module-list li:last-child {
  border-bottom: none;
}

.fin-module-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(25,75,70);
  flex-shrink: 0;
}

/* --- Final CTA (styles now in global.css) --- */

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pso-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .fin-module-header { flex-wrap: wrap; gap: 12px; padding: 20px 24px; padding-right: 56px; }
  .fin-module.active .fin-module-list { padding-left: 24px; }
}
