/* Static mirror of app.slidebean.com/financials (no API) */
.etp-fm-page {
  min-height: 100vh;
  background: #f5f6f8;
  color: #292e3b;
  font-family: Atlasgrotesk, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.etp-fm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
}

.etp-fm-topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.etp-fm-topbar__brand img {
  display: block;
  height: 30px;
  width: auto;
}

.etp-fm-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.etp-fm-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.etp-fm-shell__title {
  font-family: "Biofolio Ultimate", Biofolio, Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px;
}

.etp-fm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.etp-fm-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.etp-fm-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(41, 46, 59, 0.08);
  padding: 24px;
}

.etp-fm-card__header {
  margin-bottom: 16px;
}

.etp-fm-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.etp-fm-card__sub {
  margin: 0;
  color: #677594;
  font-size: 14px;
}

.etp-fm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.etp-fm-btn--primary {
  background: #316be8;
  color: #fff;
}

.etp-fm-btn--primary:hover {
  background: #1854d7;
}

.etp-fm-btn--ghost {
  background: transparent;
  color: #316be8;
  border: 1px solid #316be8;
}

.etp-fm-btn--ghost:hover {
  background: #eff3fd;
}

.etp-fm-service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.etp-fm-service-option {
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
  background: #fff;
  font: inherit;
  color: inherit;
  width: 100%;
}

.etp-fm-service-option:hover {
  border-color: #316be8;
  box-shadow: 0 2px 8px rgba(49, 107, 232, 0.12);
}

.etp-fm-service-option--success {
  border-color: #85d5c2;
}

.etp-fm-service-option--accent {
  border-color: #b672e5;
}

.etp-fm-service-option__illus {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.etp-fm-service-option__illus img {
  max-height: 100%;
  width: auto;
}

.etp-fm-service-option__title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
}

.etp-fm-service-option__desc {
  margin: 0 0 12px;
  color: #677594;
  font-size: 13px;
}

.etp-fm-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #eff3fd;
}

.etp-fm-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.etp-fm-journey-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.etp-fm-journey-steps li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f1f3;
  color: #677594;
  font-size: 14px;
}

.etp-fm-journey-steps li:last-child {
  border-bottom: none;
}

@media (max-width: 991px) {
  .etp-fm-grid,
  .etp-fm-service-options {
    grid-template-columns: 1fr;
  }
}
