@charset "UTF-8";

@font-face {
  font-family: "General Sans";
  src: local("General Sans"), local("Inter");
  font-weight: 400 700;
  font-style: normal;
}

@font-face {
  font-family: "PP Mori";
  src: local("PP Mori"), local("Inter");
  font-weight: 400 700;
  font-style: normal;
}

/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* ============================================
   FUNDING PIPS HOME CUSTOM PAGE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.5;
  color: #000035;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.fp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: padding-top 0.3s ease;
}

/* Liquid Glass — Scrolled State */
.fp-header.scrolled {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(0, 20, 60, 0.55) 100%
  ) !important;
  backdrop-filter: blur(32px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 32px rgba(0, 0, 0, 0.28) !important;
  padding-top: 0;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.fp-header:has(.fp-mobile-menu.active) {
  padding-top: 0;
}

.fp-header-container {
  max-width: 120rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.fp-logo {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  color: #ffffff;
  font-family: "PP Mori", "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.05rem;
  flex-shrink: 0;
  z-index: 20;
  height: 2.375rem;
}

.fp-logo svg {
  width: 1.375rem;
  height: 1.5rem;
}

.fp-logo sup {
  font-size: 0.8rem;
  vertical-align: super;
}

.fp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  height: 2.6875rem;
}

.fp-header-nav-container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.fp-nav-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}

.fp-nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 1.25rem;
  height: 0.125rem;
  background: #2d47d6;
  border-radius: 6.25rem;
  transition: transform 0.2s ease;
}


.fp-nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.fp-nav-dropdown svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}

.fp-nav-dropdown:hover svg {
  transform: rotate(180deg);
}

.fp-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  z-index: 10;
}

.fp-header-divider {
  width: 0.0625rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.fp-btn.fp-get-started {
  padding: 1.25rem 1.5rem;
}

.fp-lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f7f8f8;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.fp-lang-selector:hover {
  color: #ffffff;
}

.fp-lang-selector svg {
  width: 0.875rem;
  height: 0.875rem;
}

.fp-lang-flag {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-dropdown {
  position: relative;
}

.fp-dropdown-trigger {
  cursor: pointer;
}

.fp-dropdown-chevron {
  transition: transform 0.25s ease;
}

.fp-dropdown:hover .fp-dropdown-chevron {
  transform: rotate(180deg);
}

.fp-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.25rem);
  min-width: 12rem;
  background: rgba(10, 10, 40, 0.92);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
}

.fp-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.fp-dropdown:hover > .fp-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fp-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.fp-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.fp-dropdown-panel--lang {
  min-width: 10rem;
}

.fp-dropdown-item--lang svg {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-dropdown .fp-nav-link::after {
  display: none;
}

.fp-login-link {
  color: #f7f8f8;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(1rem);
  border-radius: 62.5rem;
}

.fp-login-link:hover {
  color: #ffffff;
}

.fp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  z-index: 20;
  cursor: pointer;
}

.fp-hamburger span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: #ffffff;
  border-radius: 0.125rem;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.fp-hamburger.active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.fp-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.fp-hamburger.active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.fp-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000018;
  padding: 5rem 1.5rem 1.5rem;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 15;
}

.fp-mobile-menu.active {
  display: flex;
  opacity: 1;
}

.fp-mobile-nav {
  display: flex;
  flex-direction: column;
}

.fp-mobile-nav-link {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02rem;
  padding: 1.125rem 0;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fp-mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.fp-mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.fp-mobile-dropdown-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.fp-mobile-dropdown-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.4;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.fp-mobile-dropdown.active .fp-mobile-dropdown-trigger svg {
  transform: rotate(180deg);
}

.fp-mobile-dropdown-panel {
  display: none;
  flex-direction: column;
  margin-left: 0.75rem;
  padding-left: 1rem;
  border-left: 0.125rem solid rgba(45, 71, 214, 0.5);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.fp-mobile-dropdown.active .fp-mobile-dropdown-panel {
  display: flex;
}

.fp-mobile-sub-link {
  font-size: 1.0625rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 0.75rem 0 !important;
  border-bottom: none !important;
}

.fp-mobile-sub-link:hover {
  color: #ffffff !important;
}

.fp-mobile-lang {
  display: flex;
  flex-direction: column;
}

.fp-mobile-lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fp-mobile-lang-trigger:hover {
  color: #ffffff;
}

.fp-mobile-lang-flag {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-mobile-lang-chevron {
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  opacity: 0.4;
  transition: transform 0.25s ease;
}

.fp-mobile-lang.active .fp-mobile-lang-chevron {
  transform: rotate(180deg);
}

.fp-mobile-lang-panel {
  display: none;
  flex-direction: column;
  margin-left: 0.75rem;
  padding-left: 1rem;
  border-left: 0.125rem solid rgba(45, 71, 214, 0.5);
  gap: 0.125rem;
  margin-bottom: 0.5rem;
}

.fp-mobile-lang.active .fp-mobile-lang-panel {
  display: flex;
}

.fp-mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.625rem 0;
  transition: color 0.15s ease;
}

.fp-mobile-lang-option:hover {
  color: #ffffff;
}

.fp-mobile-lang-option svg {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 2rem;
}

.fp-mobile-login {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 62.5rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.fp-mobile-login:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.fp-mobile-cta {
  width: 100%;
  justify-content: center;
  height: 3rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.fp-btn-primary {
  background: #ffffff;
  color: #000000;
  height: 2.75rem;
  padding: 0 1.75rem;
  border-radius: 62.5rem;
}

.fp-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-0.0625rem);
}

.fp-btn-white {
  background: #ffffff;
  color: #000000;
  border-radius: 0.3125rem;
  height: 2.375rem;
  width: 6.375rem;
}

.fp-btn-white:hover {
  background: #f0f0f0;
}

.fp-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 0.0625rem solid rgba(255, 255, 255, 0.34);
  height: 2.6875rem;
  padding: 0.625rem 0.875rem;
  border-radius: 625rem;
}

.fp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.fp-btn-outline-dark {
  background: #ffffff;
  color: #000000;
  height: 2.6875rem;
  padding: 0.625rem 0.875rem;
  border-radius: 625rem;
}

.fp-btn-outline-dark:hover {
  background: #f5f5f5;
}

.fp-btn-text {
  background: #ffffff;
  color: #000035;
  height: 2.6875rem;
  padding: 0.625rem 0.875rem;
  border-radius: 625rem;
}

.fp-btn-text:hover {
  background: #f5f5f5;
}

.fp-btn-dark {
  background: #2d47d6;
  color: #ffffff;
  height: 2.6875rem;
  width: 12.4375rem;
  border-radius: 0.75rem;
}

.fp-btn-dark:hover {
  background: #2339b8;
}

/* ============================================
   HERO SECTION
   ============================================ */
.fp-hero {
  position: relative;
  padding-top: 9rem;
  background: #000035;
}

.fp-hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 0%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 100%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 100%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.fp-hero-content {
  position: relative;
  margin: 9.875rem auto 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5625rem;
}

.fp-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.3125rem;
  width: 100%;
}

.fp-hero-title {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 6.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 0.9;
  letter-spacing: -0.3125rem;
  width: 100%;
}

.fp-hero-subtitle {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #ced4ed;
  line-height: 1.4;
  text-align: center;
}

.fp-search-container {
  width: 50rem;
}

.fp-search-outer {
  width: 100%;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2.8125rem);
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 1.188rem 0.625rem 0.625rem;
}

.fp-search-tabs {
  display: flex;
  gap: 3.5rem;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}

.fp-search-tab {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0;
  position: relative;
}

.fp-search-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.fp-search-tab.active {
  color: #ffffff;
}

.fp-search-tab.active::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 0.25rem;
  background: #2d47d6;
  border-radius: 6.25rem;
}

.fp-search-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.fp-search-box {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(25, 25, 71, 0.83) 0%,
    rgba(20, 20, 56, 0.83) 100%
  );
  backdrop-filter: blur(2.8125rem);
  border: 0.0625rem solid #ffffff;
  border-radius: 0.625rem;
  overflow: hidden;
  padding: 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
}

.fp-search-input > input#query {
  width: 100%;
  min-height: 3.75rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.59);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  resize: none;
  outline: none;
  margin-bottom: 1.6875rem;
}

.fp-search-input > .clear-button {
  display: none;
}

.fp-search-input::placeholder {
  color: rgba(255, 255, 255, 0.59);
  font-family: "Inter", sans-serif;
}

.fp-search-box input[type="search"]:-webkit-autofill,
.fp-search-box input[type="text"]:-webkit-autofill,
.fp-search-box input[type="search"]:-webkit-autofill:hover,
.fp-search-box input[type="text"]:-webkit-autofill:hover,
.fp-search-box input[type="search"]:-webkit-autofill:focus,
.fp-search-box input[type="text"]:-webkit-autofill:focus,
.fp-search-box input[type="search"]:-webkit-autofill:active,
.fp-search-box input[type="text"]:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.fp-search-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.fp-search-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0;
}

.fp-search-action svg {
  width: 1.125rem;
  height: 1.125rem;
}

.fp-search-action:hover {
  color: rgba(255, 255, 255, 0.9);
}

.fp-search-actions-right {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}

.fp-search-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.59);
  text-align: center;
  width: 100%;
  margin-top: 1.25rem;
}

/* ============================================
   BANNER PLACEHOLDER
   ============================================ */
.fp-banner-placeholder {
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2.8125rem);
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: 0 8rem 2.5rem;
}

.fp-banner-placeholder p {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   INFO SECTION
   ============================================ */
.fp-info-section {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 6rem;
}

.fp-info-cards-grid {
  max-width: 104.125rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fp-info-card {
  background: #ffffff;
  border: 0.0625rem solid rgba(0, 0, 52, 0.08);
  border-radius: 1.25rem;
  padding: 2.25rem 2.25rem 2rem;
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 52, 0.04);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fp-info-card:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 52, 0.09);
}

.fp-info-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fp-info-card-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 6.25rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.fp-info-card .fp-info-card-label {
  color: #2d47d6;
  background: rgba(45, 71, 214, 0.08);
}

.fp-info-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.fp-info-card-title {
  font-family: "General Sans", "Inter", sans-serif;
  color: #000035;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.055rem;
}

.fp-info-card-description {
  color: rgba(0, 0, 52, 0.55);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
}

.fp-info-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.75rem;
  transition: gap 0.2s ease;
}

.fp-info-card .fp-info-card-link {
  color: #2d47d6;
}

.fp-info-card-link:hover {
  gap: 0.65rem;
}

/* ============================================
   HOW TO GET STARTED SECTION
   ============================================ */
.fp-how-to-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.07);
}

.fp-how-to-container {
  max-width: 104.125rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.fp-how-to-heading-block {
  flex-shrink: 0;
  padding-right: 3rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.18);
  min-width: 10rem;
}

.fp-how-to-title {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.05rem;
}

.fp-how-to-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding-left: 1.5rem;
  cursor: pointer;
}

.fp-how-to-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  flex: 1;
  min-width: 0;
}

.fp-how-to-icon-wrap {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.3),
    0 0.25rem 0.75rem rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.fp-how-to-step-title {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01rem;
}

.fp-how-to-step-desc {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.55;
}

.fp-how-to-arrow {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================================
   MODEL SECTION
   ============================================ */
.fp-model-section {
  background: #ffffff;
  padding: 3.75rem 7.9375rem 0;
  position: relative;
  z-index: 10;
}

.fp-model-section::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 2.5rem;
  background: inherit;
  border-radius: 2.5rem 2.5rem 0 0;
}

.fp-model-container {
  max-width: 104.125rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4.0625rem;
}

.fp-model-header {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  align-items: center;
  justify-content: center;
}

.fp-model-title {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #000035;
  text-align: center;
  line-height: 1.02;
  letter-spacing: -0.14rem;
}

.fp-model-tabs {
  width: 38.5rem;
  height: 2.75rem;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 1rem;
  padding: 0.375rem 0.5rem;
  display: flex;
}

.fp-model-tab {
  flex: 1;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000035;
  border-radius: 0.75rem;
  padding: 0.625rem;
}

.fp-model-tab:hover {
  background: rgba(0, 0, 0, 0.05);
}

.fp-model-tab.active {
  background: #2d47d6;
  color: #ffffff;
}

.fp-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem 1.25rem;
}

.fp-feature-card {
  background: rgba(42, 42, 42, 0.05);
  backdrop-filter: blur(1.875rem);
  border-radius: 1.125rem;
  padding: 2.125rem;
  overflow: hidden;
}

.fp-feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
}

.fp-feature-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}

.fp-feature-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.12;
  letter-spacing: -0.06rem;
}

.fp-feature-card-description {
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.4;
  opacity: 0.75;
}

/* ============================================
   SUBHEADING SECTION
   ============================================ */
.fp-subheading-section {
  background: #ffffff;
  padding: 8.8rem 8.0625rem;
}

.fp-subheading-container {
  max-width: 104.125rem;
  margin: 0 auto;
  display: flex;
  gap: 6.625rem;
  align-items: flex-start;
}

.fp-subheading-image {
  width: 51.5625rem;
  height: 29.3125rem;
  flex-shrink: 0;
}

.fp-subheading-image img {
  width: 100%;
  height: 100%;
  border-radius: 1.125rem;
  object-fit: cover;
}

.fp-subheading-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  max-width: 45.3125rem;
}

.fp-subheading-title {
  font-family: "PP Mori", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.02;
  letter-spacing: -0.08rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.fp-subheading-text {
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.4;
  opacity: 0.9;
}

.fp-subheading-text + .fp-subheading-text {
  margin-top: 1.25rem;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.fp-quote-section {
  background: #ffffff;
  padding: 0 1.5rem 5.125rem;
}

.fp-quote-container {
  width: 56.1875rem;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
}

.fp-quote-label {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d47d6;
  line-height: 1.02;
  letter-spacing: -0.08rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.fp-quote-text {
  font-family: "Inter", sans-serif;
  font-size: 2.375rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.2;
}

/* ============================================
   SEARCH TOPICS
   ============================================ */
.fp-search-topics {
  background: #ffffff;
  padding: 0 1.5rem 8.125rem;
}

.fp-search-topics-container {
  width: 56.1875rem;
  max-width: 100%;
  margin: 0 auto;
}

.fp-search-topics-btn {
  width: 100%;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #2d47d6;
  color: #ffffff;
  border-radius: 62.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.fp-search-topics-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fp-search-topics-btn:hover {
  background: #2339b8;
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.fp-articles-section {
  background: #ffffff;
  padding: 0 1.5rem 5rem;
}

.fp-articles-container {
  width: 56.25rem;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5.125rem;
  align-items: center;
}

.fp-articles-title {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #000035;
  text-align: center;
  line-height: 1.02;
  letter-spacing: -0.14rem;
  width: 100%;
}

.fp-articles-content {
  display: flex;
  flex-direction: column;
  gap: 4.9375rem;
  width: 100%;
  align-items: center;
}

.fp-articles-list {
  display: flex;
  flex-direction: column;
  gap: 4.9375rem;
  width: 100%;
}

.fp-article-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.fp-article-content {
  width: 35.375rem;
  flex-shrink: 0;
}

.fp-article-meta {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  opacity: 0.6;
  line-height: 1.4;
  margin-bottom: 0.4375rem;
}

.fp-article-card-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.4;
  margin-bottom: 0.8125rem;
  display: block;
  transition: color 0.2s ease;
}

.fp-article-card-title:hover {
  color: #2d47d6;
}

.fp-article-card-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.4;
  opacity: 0.9;
  width: 34.375rem;
  max-width: 100%;
}

.fp-article-image {
  width: 16.0625rem;
  height: 10rem;
  flex-shrink: 0;
}

.fp-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.fp-contact-section {
  background: #ffffff;
  padding: 9.625rem 7.9375rem 0;
}

.fp-contact-container {
  max-width: 104.125rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.375rem;
}

.fp-contact-card {
  flex: 1 1 14rem;
  background: rgba(237, 237, 237, 0.63);
  backdrop-filter: blur(2.8125rem);
  border: 0.0625rem solid #ededed;
  border-radius: 1.125rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.fp-contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fp-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.fp-contact-icon img {
  width: 100%;
  height: 100%;
}

.fp-contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

.fp-contact-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
}

.fp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}

.fp-contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.12;
  letter-spacing: -0.06rem;
}

.fp-contact-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  opacity: 0.5;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fp-contact-subtitle .fp-online-dot {
  width: 0.3125rem;
  height: 0.3125rem;
  background: #22c55e;
  border-radius: 50%;
}

/* ============================================
   FOOTER
   ============================================ */
.fp-footer {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding-top: 9.625rem;
}

.fp-footer-container {
  max-width: 104.125rem;
  margin: 0 auto;
}

.fp-footer-links {
  display: flex;
  gap: 3.8125rem;
  padding-bottom: 2.75rem;
  max-width: 85rem;
}

.fp-footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  line-height: 1.12;
}

.fp-footer-column-title {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  opacity: 0.7;
  letter-spacing: -0.04rem;
  width: 14.8125rem;
}

.fp-footer-column a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.045rem;
  width: 17.25rem;
  transition: opacity 0.2s ease;
}

.fp-footer-column a:hover {
  opacity: 0.7;
}

.fp-footer-iso {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 12.375rem;
}

.fp-footer-iso-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fp-footer-iso-icon {
  width: 3.05rem;
  height: 2.5rem;
  background: #f0f0f0;
  border-radius: 0.25rem;
}

.fp-footer-iso-text {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  line-height: 1.12;
}

.fp-footer-iso-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000000;
  opacity: 0.7;
  letter-spacing: -0.0325rem;
}

.fp-footer-iso-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.045rem;
  max-width: 17.25rem;
}

.fp-footer-divider {
  height: 0.0625rem;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0.2;
  max-width: 85rem;
}

.fp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.0625rem 0;
  max-width: 85rem;
  height: 3.375rem;
}

.fp-footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fp-logo-dark {
  color: #000000;
}

.fp-footer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.5rem;
}

.fp-footer-lang-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}

.fp-footer-social {
  display: flex;
  gap: 3.125rem;
  justify-content: center;
}

.fp-footer-social a {
  color: #000000;
  transition: opacity 0.2s ease;
}

.fp-footer-social a:hover {
  opacity: 0.7;
}

.fp-footer-social svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fp-footer-social .fp-x-icon {
  width: 1rem;
  height: 1rem;
}

.fp-footer-rating {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.fp-social-ratings {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fp-footer-rating-divider {
  width: 0.0625rem;
  height: 3.375rem;
  background: rgba(255, 255, 255, 0.18);
}

.fp-google-rating-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.fp-rating-google {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.fp-rating-google-icon {
  width: 2.5625rem;
  height: 2.5625rem;
}

.fp-rating-google-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.fp-rating-google-score {
  display: flex;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.163;
}

.fp-rating-google-stars {
  width: 6.25rem;
  height: 1.25rem;
}

.fp-rating-trustpilot {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
}

.fp-rating-trustpilot-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.625rem;
}

.fp-rating-trustpilot-stars {
  width: 6.667rem;
  height: 1.25rem;
}

.fp-rating-trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fp-rating-trustpilot-icon {
  width: 0.875rem;
  height: 0.828rem;
}

.fp-footer-disclaimer {
  padding: 3.3125rem 4.3125rem;
  max-width: 76.375rem;
  margin: 0 auto;
  text-align: center;
}

.fp-footer-disclaimer p {
  color: #000000;
  line-height: 1.12;
  letter-spacing: -0.035rem;
}

.fp-footer-disclaimer p:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.fp-footer-disclaimer p:last-child {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.5;
  line-height: 1.3;
  letter-spacing: 0.0075rem;
}

.fp-footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  padding-top: 3.25rem;
  max-width: 44.875rem;
  margin: 0 auto;
}

.fp-footer-payments img {
  height: 2.5rem;
  width: 5rem;
  object-fit: contain;
}

.fp-footer-payments img.fp-skrill-logo {
  height: 0.875rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 100rem) {
  .fp-content-padding {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .fp-feature-cards {
    grid-template-columns: 1fr 1fr;
  }
  .fp-model-section {
    padding: 6.25rem 4rem 0;
  }
  .fp-subheading-section {
    padding: 5rem 4rem;
  }
  .fp-subheading-container {
    gap: 4rem;
  }
  .fp-subheading-image {
    width: 50%;
  }
  .fp-contact-section,
  .fp-footer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 85rem) {
  .fp-content-padding {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .fp-nav,
  .fp-header-actions {
    display: none;
  }
  .fp-hamburger {
    display: flex;
  }
  .fp-hero {
    height: auto;
  }
  .fp-hero-title {
    font-size: 4rem;
    letter-spacing: -0.1875rem;
  }
  .fp-hero-subtitle {
    font-size: 1.375rem;
  }
  .fp-hero-content {
    margin-top: 6rem;
  }
  .fp-info-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fp-search-container {
    width: 100%;
    max-width: 50rem;
  }
  .fp-model-section {
    padding: 6.25rem 2rem 0;
  }
  .fp-model-title,
  .fp-articles-title {
    font-size: 2.5rem;
  }
  .fp-subheading-section {
    padding: 5rem 2rem;
  }
  .fp-subheading-container {
    flex-direction: column;
  }
  .fp-subheading-image {
    width: 100%;
    height: 25rem;
  }
  .fp-quote-text {
    font-size: 1.75rem;
  }
  .fp-contact-section,
  .fp-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .fp-footer-links {
    flex-wrap: wrap;
  }
  .fp-how-to-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .fp-how-to-heading-block {
    border-right: none;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.18);
    padding-right: 0;
    padding-bottom: 1rem;
    min-width: unset;
    width: 100%;
  }
  .fp-how-to-title {
    font-size: 1.5rem;
  }
  .fp-how-to-steps {
    padding-left: 0;
    gap: 0.75rem;
    justify-content: space-between;
    width: 100%;
  }
  .fp-how-to-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
  }
  .fp-how-to-step-title {
    font-size: 0.75rem;
  }
  .fp-how-to-step-desc {
    font-size: 0.6875rem;
  }
  .fp-info-section {
    padding-bottom: 4rem;
  }
  .fp-subheading-content {
    max-width: none;
  }
  .fp-trial-banner {
    padding: 48px 2rem;
  }
  .fp-trial-disclaimer {
    padding: 0 2rem;
  }
}

@media (max-width: 64rem) {
  .fp-feature-cards {
    grid-template-columns: 1fr;
  }
  .fp-info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-how-to-arrow {
    display: none;
  }
  .fp-how-to-steps {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.25rem 0.5rem;
  }
  .fp-how-to-step {
    flex: 0 0 calc(20% - 0.5rem);
    min-width: 6rem;
  }
  .fp-how-to-step-desc {
    display: none;
  }
  .fp-how-to-icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
  }
  .fp-how-to-title {
    font-size: 1.25rem;
  }
  .fp-how-to-step-title {
    font-size: 0.6875rem;
  }
}

@media (max-width: 48rem) {
  .fp-header {
    padding-top: 1.5rem;
  }
  .fp-header-container {
    padding: 0;
    height: 3.75rem;
  }
  .fp-mobile-menu {
    padding: 4.25rem 1.5rem 1.5rem;
  }
  .fp-hero {
    padding-top: 7.5rem;
    min-height: auto;
    height: auto;
  }
  .fp-hero-content {
    margin-top: 3rem;
    gap: 2.5rem;
  }
  .fp-hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.125rem;
  }
  .fp-hero-subtitle {
    font-size: 1.125rem;
  }
  .fp-search-outer {
    height: auto;
    min-height: 16.25rem;
  }
  .fp-search-tabs {
    gap: 1.5rem;
  }
  .fp-search-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .fp-search-actions-right {
    width: 100%;
    justify-content: space-between;
  }
  .fp-info-cards-grid {
    grid-template-columns: 1fr;
  }
  .fp-info-section {
    padding-bottom: 3rem;
  }
  .fp-banner-placeholder {
    margin: 1.25rem 1.5rem;
  }
  .fp-model-section {
    padding: 0 1.5rem 0;
  }
  .fp-model-tabs {
    width: 100%;
    max-width: 25rem;
  }
  .fp-model-tab {
    font-size: 0.875rem;
  }
  .fp-feature-card {
    padding: 1.5rem;
  }
  .fp-subheading-section {
    padding: 2.5rem 1.5rem;
  }
  .fp-quote-section,
  .fp-search-topics,
  .fp-articles-section {
    padding: 2.5rem 1.5rem;
  }
  .fp-quote-label {
    font-size: 1.5rem;
  }
  .fp-quote-text {
    font-size: 1.375rem;
  }
  .fp-search-topics-btn {
    height: 3.75rem;
    font-size: 1rem;
  }
  .fp-article-card-description {
    width: 100%;
  }
  .fp-contact-section {
    padding: 3.75rem 1.5rem 0;
  }
  .fp-contact-container {
    flex-direction: column;
  }
  .fp-contact-card {
    flex: 1 1 100%;
  }
  .fp-footer {
    padding: 3.75rem 0.5rem;
  }
  .fp-footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  .fp-footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    padding: 1.5rem 0;
  }
  .fp-footer-social {
    gap: 1.5rem;
  }
  .fp-footer-rating {
    flex-direction: column;
    gap: 1rem;
  }
  .fp-footer-disclaimer {
    padding: 2rem 0;
  }
  .fp-footer-payments {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .fp-footer-payments img {
    height: 1.875rem;
  }
  .fp-how-to-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .fp-how-to-steps {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    flex-direction: column;
    justify-content: flex-start;
  }
  .fp-how-to-steps::-webkit-scrollbar {
    display: none;
  }
  .fp-how-to-step {
    flex: 0 0 6.5rem;
    min-width: 6.5rem;
  }
  .fp-how-to-arrow {
    display: none;
  }
  .fp-trial-banner {
    padding: 48px 1.5rem;
  }
  .fp-trial-banner-inner {
    padding: 28px 20px;
    gap: 28px;
  }
  .fp-trial-stats {
    width: 100%;
  }
  .fp-trial-disclaimer {
    padding: 0 1.5rem;
  }
}

/* ============================================
   HELP CENTER FOOTER (footer.hbs)
   ============================================ */
.fp-hc-footer {
  background-color: #ffffff !important;
  color: rgba(0, 0, 53, 0.55) !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 3.75rem 1.5rem 2.5rem;
  border-top: 0.0625rem solid rgba(0, 0, 53, 0.08) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fp-hc-footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.fp-hc-footer .fp-footer-top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 53, 0.08);
  margin-bottom: 2.5rem;
}

.fp-hc-footer .fp-footer-logo { justify-self: start; }
.fp-hc-footer .fp-footer-main-logo { height: 2rem; width: auto; display: block; }

.fp-hc-footer .fp-footer-nav {
  justify-self: center;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.fp-hc-footer .fp-footer-nav a {
  color: rgba(0, 0, 53, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02rem;
  transition: color 0.2s ease;
}

.fp-hc-footer .fp-footer-nav a:hover { color: #000035; }

.fp-hc-footer .fp-footer-socials {
  justify-self: end;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.fp-hc-footer .fp-footer-socials a {
  color: rgba(0, 0, 53, 0.5);
  display: flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.fp-hc-footer .fp-footer-socials a:hover { color: #2d47d6; transform: translateY(-0.125rem); }
.fp-hc-footer .fp-footer-socials svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }

.fp-hc-footer .fp-disclaimers h4 {
  color: #000035;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.fp-hc-footer .fp-disclaimers h5 {
  color: #000035;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.fp-hc-footer .fp-disclaimers p { margin-top: 0; margin-bottom: 0.75rem; }
.fp-hc-footer .fp-disclaimers strong { color: #000035; font-weight: 600; }
.fp-hc-footer .fp-disclaimers em { font-style: italic; color: rgba(0, 0, 53, 0.45); }

.fp-hc-footer .fp-footer-divider {
  height: 0.0625rem;
  background-color: rgba(0, 0, 53, 0.08);
  margin: 2.5rem 0;
}

.fp-hc-footer .fp-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3vw;
  padding: 1.25rem 0;
  width: 100%;
}

.fp-hc-footer .fp-payments > * { transition: transform 0.2s ease; display: block; }
.fp-hc-footer .fp-payments > *:hover { transform: translateY(-0.125rem); }
.fp-hc-footer .fp-payments img { width: auto; object-fit: contain; }

.fp-hc-footer .fp-payments img[alt="Apple Pay"],
.fp-hc-footer .fp-payments img[alt="Google Pay"] { filter: none; }

.fp-hc-footer .fp-payments svg.fp-visa { height: 1.25rem; width: auto; }
.fp-hc-footer .fp-payments img[alt="Mastercard"] { height: 1.75rem; }
.fp-hc-footer .fp-payments img[alt="Apple Pay"] { height: 1.625rem; }
.fp-hc-footer .fp-payments img[alt="Google Pay"] { height: 1.625rem; }
.fp-hc-footer .fp-payments img[alt="Skrill"] { height: 1.25rem; }
.fp-hc-footer .fp-payments img[alt="Neteller"] { height: 1rem; }
.fp-hc-footer .fp-payments img[alt="PayPal"] { height: 1.5rem; filter: none; }
.fp-hc-footer .fp-payments img[alt="Bitcoin"] { height: 1.75rem;  filter: none;}
.fp-hc-footer .fp-payments img[alt="Paysafe Card"] { height: 1.625rem; }
.fp-hc-footer .fp-payments svg.fp-astropay { height: 1.5rem; width: auto; }

.fp-hc-footer .fp-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.fp-hc-footer .fp-bottom-left p { margin: 0 0 0.25rem 0; }
.fp-hc-footer .fp-bottom-left .fp-heart { color: #ef4444; font-size: 0.875rem; }

.fp-hc-footer .fp-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.fp-hc-footer .fp-bottom-right a {
  color: rgba(0, 0, 53, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fp-hc-footer .fp-bottom-right a:hover { color: #000035; }

.fp-hc-footer .fp-vertical-divider {
  color: rgba(0, 0, 53, 0.2);
  font-size: 0.875rem;
  user-select: none;
}

.fp-hc-footer .fp-lang-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: rgba(0, 0, 53, 0.55);
  transition: color 0.2s ease;
}

.fp-hc-footer .fp-lang-select:hover { color: #000035; }
.fp-hc-footer .fp-lang-select svg.fp-flag { width: 1.25rem; height: 0.875rem; border-radius: 0.125rem; }
.fp-hc-footer .fp-lang-select svg.fp-chevron { width: 0.75rem; height: 0.75rem; opacity: 0.7; }

@media (max-width: 68.75rem) {
  .fp-hc-footer .fp-footer-top-bar {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    text-align: center;
  }
  .fp-hc-footer .fp-footer-logo,
  .fp-hc-footer .fp-footer-nav,
  .fp-hc-footer .fp-footer-socials { justify-self: center; }
  .fp-hc-footer .fp-footer-nav { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
  .fp-hc-footer .fp-payments { gap: 1.5rem; }
}

@media (max-width: 48rem) {
  .fp-hc-footer { padding: 2.5rem 1rem 1.5rem; }
  .fp-hc-footer .fp-bottom-bar { flex-direction: column; align-items: flex-start; }
  .fp-hc-footer .fp-payments > * { transform: scale(0.85); }
  .fp-hc-footer .fp-payments > *:hover { transform: scale(0.85) translateY(-0.125rem); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.fp-content-padding {
  padding-left: 8rem;
  padding-right: 8rem;
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

.fp-article-hero {
  position: relative;
  background: radial-gradient(
    308.43% 133.37% at 100% 100%,
    #000035 0%,
    #000035 67.79%
  );
  padding: 3.75rem 8rem 1.5rem;
  min-height: 16.5rem;
}

.fp-article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.fp-article-hero-content {
  position: relative;
  max-width: 104rem;
}

.fp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.fp-breadcrumb-link {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.fp-breadcrumb-link:hover {
  color: #ffffff;
}

.fp-breadcrumb-chevron {
  width: 0.75rem;
  height: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.fp-breadcrumb-current {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
}

.fp-article-main {
  background: #ffffff;
  border-radius: 2rem 2rem 0 0;
  margin-top: -2rem;
  position: relative;
  padding: 6.0625rem 8rem 5rem;
}

.fp-article-layout {
  max-width: 104rem;
  margin: 0 auto;
  margin-top: 10rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(16rem, 1fr);
  gap: 8rem;
}

.fp-article-content {
  min-width: 0;
  width: 100%;
}

.fp-article-header {
  margin-bottom: 2.25rem;
}

.fp-article-title {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.2;
  letter-spacing: -0.16rem;
  margin-bottom: 1.6875rem;
}

.fp-article-lead {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.4;
  opacity: 0.9;
}

.fp-article-body {
  font-family: "Inter", sans-serif;
}

.fp-article-body p {
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.fp-article-body img {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.fp-article-body::after {
  content: "";
  display: table;
  clear: both;
}

figure.wysiwyg-image {
  margin: 1rem;
}

.fp-article-subheading {
  font-family: "PP Mori", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.25;
  letter-spacing: -0.08rem;
  margin-top: 2.5rem;
  margin-bottom: 1.125rem;
}

.fp-article-model-section {
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: 1.125rem;
  padding: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.fp-article-model-tabs {
  margin-bottom: 2.5rem;
}

.fp-article-model-tabs-inner {
  display: flex;
  background: #ffffff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  padding: 8px;
  gap: 10px;
  overflow-x: auto;
}

.fp-article-model-tab {
  flex: 1;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000035;
  background: transparent;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 20px;
}

.fp-article-model-tab:hover:not(.active) {
  background: #f0f7ff;
}

.fp-article-model-tab.active {
  background: #000035;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 53, 0.2);
}

.fp-article-model-content {
  padding: 0;
}

.fp-article-model-title {
  font-family: "PP Mori", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.25;
  letter-spacing: -0.08rem;
  margin-bottom: 1.125rem;
}

.fp-article-model-content p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.5;
  margin: 0;
}

.fp-article-faq {
  margin-top: 5rem;
}

.fp-article-faq-title {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.2;
  letter-spacing: -0.09rem;
  margin-bottom: 1rem;
}

.fp-article-faq-list {
  display: flex;
  flex-direction: column;
}

.fp-faq-item {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.fp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 0;
  cursor: pointer;
  text-align: left;
}

.fp-faq-question span {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000035;
  line-height: 1.22;
}

.fp-faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #000035;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.fp-faq-item.active .fp-faq-chevron {
  transform: rotate(180deg);
}

.fp-faq-answer {
  display: none;
  padding-bottom: 1.375rem;
}

.fp-faq-item.active .fp-faq-answer {
  display: block;
}

.fp-faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.375;
  margin: 0;
}

summary.fp-faq-question {
  list-style: none;
}

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

summary.fp-faq-question::marker {
  display: none;
  content: "";
}

summary.fp-faq-question::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23000035' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}

details[open] > summary.fp-faq-question::after {
  transform: rotate(180deg);
}

details[open] > .fp-faq-answer {
  display: block;
}

.fp-article-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.fp-sidebar-title {
  font-family: "PP Mori", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.25;
  letter-spacing: -0.08rem;
  margin-bottom: 3.4375rem;
}

.fp-categories-list {
  display: flex;
  flex-direction: column;
}

.fp-category-item {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.fp-category-item:first-child {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.fp-category-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
  text-align: left;
}

.fp-category-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fp-category-chevron {
  width: 1rem;
  height: 1rem;
  color: #000035;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.fp-category-item.active .fp-category-chevron {
  transform: rotate(90deg);
}

.fp-category-name {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000035;
  line-height: 1.56;
}

.fp-category-count {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.375;
}

.fp-category-articles {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.5rem 0 1.5rem 1.5rem;
}

.fp-category-item.active .fp-category-articles {
  display: flex;
}

.fp-category-article {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000035;
  line-height: 1.375;
  transition: color 0.2s ease;
}

.fp-category-article:hover {
  color: #2d47d6;
}

.fp-article-contact {
  padding-top: 0;
  padding-bottom: 5rem;
}

.fp-article-contact .fp-contact-container {
  max-width: 104rem;
}

@media (max-width: 100rem) {
  .fp-article-hero {
    padding: 3.75rem 4rem 1.5rem;
  }
  .fp-article-main {
    padding: 4rem 4rem 4rem;
  }
  .fp-article-layout {
    gap: 4rem;
  }
  .fp-article-contact {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 95rem) {
  .fp-article-content {
    width: auto;
  }
}

@media (max-width: 85rem) {
  .fp-article-hero {
    padding: 3rem 2rem 1.5rem;
  }
  .fp-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fp-article-content {
    max-width: 100%;
  }
  .fp-article-sidebar {
    position: static;
    order: -1;
    max-width: 100%;
  }
  .fp-article-title {
    font-size: 3rem;
  }
  .fp-article-contact {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .fp-article-card {
    flex-direction: column;
    gap: 1.5rem;
  }
  .fp-article-content {
    width: 100%;
  }
  .fp-article-image {
    width: 100%;
    height: 12.5rem;
  }
}

@media (max-width: 64rem) {
  .fp-article-title {
    font-size: 2.5rem;
    letter-spacing: -0.1rem;
  }
  .fp-article-lead {
    font-size: 1.25rem;
  }
  .fp-sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .fp-article-faq-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  .fp-article-model-section {
    padding: 1.5rem;
  }
}

@media (max-width: 48rem) {
  .fp-article-hero {
    padding: 2rem 1.5rem 1rem;
    min-height: auto;
  }
  .fp-breadcrumb-link,
  .fp-breadcrumb-current {
    font-size: 0.875rem;
  }
  .fp-breadcrumbs {
    gap: 0.375rem;
    margin-bottom: 2.5rem;
  }
  .fp-article-main {
    padding: 2rem 1.5rem;
  }
  .fp-article-title {
    font-size: 1.75rem;
    letter-spacing: -0.07rem;
    margin-bottom: 1rem;
  }
  .fp-article-lead {
    font-size: 1rem;
  }
  .fp-article-subheading,
  .fp-article-model-title {
    font-size: 1.5rem;
  }
  .fp-sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .fp-category-name {
    font-size: 1rem;
  }
  .fp-article-faq-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .fp-faq-question span {
    font-size: 1rem;
  }
  .fp-article-model-section {
    padding: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .fp-article-model-tab {
    font-size: 0.6875rem;
    padding: 0 0.5rem;
  }
  .fp-article-contact {
    padding: 0 1.5rem 3rem;
  }
  .fp-article-contact .fp-contact-container {
    flex-direction: column;
  }
  .fp-article-contact .fp-contact-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 30rem) {
  .fp-article-hero {
    padding: 1.5rem 1rem 0.75rem;
  }
  .fp-article-main {
    padding: 1.5rem 1rem;
  }
  .fp-article-title {
    font-size: 1.5rem;
  }
  .fp-article-contact {
    padding: 0 1rem 2rem;
  }
}

.fp-article-model-panel {
  display: none;
}
.fp-article-model-panel.active {
  display: block;
}

/* ====================================================
   FUNDINGPIPS MASTER GUIDE DASHBOARD & PLATFORMS
   ==================================================== */

.fp-hub-wrapper {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #000035;
  font-size: 15px;
  line-height: 1.6;
}

.fp-page-title {
  font-size: 26px;
  color: #2d47d6;
  font-weight: bold;
  margin-bottom: 15px;
}

.fp-intro-text {
  margin-bottom: 40px;
}

.fp-master-header {
  font-size: 20px;
  color: #ffffff;
  background-color: #000035;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fp-section-card {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.fp-section-card[open] {
  border-color: #2d47d6;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.fp-section-title {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: bold;
  font-size: 18px;
  background-color: #f8f9fa;
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
}

.fp-section-title:hover {
  background-color: #f0f7ff;
}

.fp-section-title::-webkit-details-marker {
  display: none;
}

.fp-section-title::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23000035' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.fp-section-card[open] .fp-section-title::after {
  transform: rotate(180deg);
}

.fp-section-content {
  padding: 20px;
  border-top: 1px solid #eee;
  animation: fp-fade-in 0.3s ease;
}

.fp-sub-heading {
  color: #2d47d6;
  font-size: 16px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.fp-sub-heading:first-child {
  margin-top: 0;
}

.fp-alert-info {
  background-color: #f0f7ff;
  border-left: 4px solid #2d47d6;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
}

.fp-alert-warning {
  background-color: #fff4f4;
  border-left: 4px solid #dc3545;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
}

.fp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.fp-table th {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  color: #2d47d6;
}

.fp-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

@keyframes fp-fade-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fp-onboarding-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  border-radius: 12px;
  padding: 20px 0;
  margin-bottom: 4rem;
  box-shadow: none;
}

.fp-onboarding-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 0;
}

.fp-onboarding-scroll::-webkit-scrollbar {
  display: none;
}

.fp-full-card {
  flex: 0 0 calc(100% - 60px);
  margin: 0 30px;
  scroll-snap-align: center;
  box-sizing: border-box;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #e9ecef;
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.fp-full-card::-webkit-scrollbar {
  display: none;
}

.fp-step-hero {
  display: inline-block;
  background: #e8f4eb;
  color: #28a745;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.fp-card-huge-title {
  font-size: 24px;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}

.fp-card-huge-desc {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 20px;
}

.fp-section-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.fp-section-title {
  font-weight: 600;
  color: #1a1a1a;
  padding: 15px;
  cursor: pointer;
  margin: 0;
  outline: none;
}

.fp-section-title:hover {
  background-color: #f8f9fa;
  border-radius: 8px;
}

.fp-section-content {
  padding: 15px;
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
}

.fp-section-content ul,
.fp-section-content ol {
  margin: 0;
  padding-left: 20px;
}

.fp-click-zone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #2c2c2c;
  font-size: 22px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
  user-select: none;
}

.fp-click-zone:hover {
  background: #000035;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(40, 167, 69, 0.35);
}

.fp-click-zone:active {
  transform: translateY(-50%) scale(0.96);
}

.fp-click-zone:focus-visible {
  outline: 3px solid rgba(40, 167, 69, 0.4);
  outline-offset: 3px;
}

.fp-click-zone svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.fp-zone-left {
  left: 16px;
}
.fp-zone-right {
  right: 16px;
}

.fp-flashcard-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.fp-fc-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.fp-fc-dot {
  padding: 6px 16px;
  background-color: #e9ecef;
  color: #555;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.fp-fc-dot:hover {
  background-color: #d0d4d8;
}

.fp-fc-dot.active {
  background-color: #007bff;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.fp-flashcard-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.fp-flashcard-track::-webkit-scrollbar {
  display: none;
}

.fp-flashcard {
  flex: 0 0 100%;
  scroll-snap-align: center;
  box-sizing: border-box;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
}

.fp-card-visa {
  border-top: 5px solid #007bff;
}
.fp-card-crypto {
  border-top: 5px solid #f7931a;
}
.fp-card-rise {
  border-top: 5px solid #6f42c1;
}
.fp-card-bank {
  border-top: 5px solid #28a745;
}

.fp-fc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #000035;
  z-index: 10;
  user-select: none;
  transition: background-color 0.2s;
}

.fp-fc-btn:hover {
  background-color: #f0f7ff;
  border-color: #007bff;
  color: #007bff;
}

.fp-btn-left {
  left: -20px;
}
.fp-btn-right {
  right: -20px;
}

@media (max-width: 600px) {
  .fp-btn-left,
  .fp-btn-right {
    display: none;
  }
  .fp-flashcard {
    padding: 20px;
  }
}

.img-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 53, 0.9);
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
}

.img-modal-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  animation: fpZoom 0.2s ease-out;
}

@keyframes fpZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   ARTICLE CONTENT SPACING FIX & GLOBAL ALIGNMENT
   ============================================ */

.fp-article-content p,
.fp-article-content h1,
.fp-article-content h2,
.fp-article-content h3,
.fp-article-content h4,
.fp-article-content h5,
.fp-article-content h6,
.fp-article-content ul,
.fp-article-content ol,
.fp-article-content li,
.fp-article-content details,
.fp-article-content summary,
.fp-article-content table,
.fp-article-content hr {
  margin: revert;
  padding: revert;
  box-sizing: revert;
}

.fp-article-content p {
  margin-bottom: 1rem !important;
  line-height: 1.6 !important;
}

.fp-article-content h2 {
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

.fp-article-content div[style*="display: flex"] h2 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.fp-article-content h3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1rem !important;
}

.fp-article-content h4 {
  margin-top: 1.25rem !important;
  margin-bottom: 0.5rem !important;
}

.fp-article-content ul,
.fp-article-content ol {
  margin-bottom: 1rem !important;
  padding-left: 1.5rem !important;
}

.fp-article-content li {
  margin-bottom: 0.5rem !important;
}

.fp-article-content hr {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

/* ============================================
   FREE TRIAL BANNER
   ============================================ */
.fp-trial-banner {
  background: #000035;
  padding: 80px 7.9375rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 53, 0.5),
    0 8px 20px rgba(0, 0, 53, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fp-trial-banner-inner {
  max-width: 104.125rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fp-trial-content {
  flex: 1;
  min-width: 260px;
}

.fp-trial-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 280px;
  flex-shrink: 0;
}

.fp-trial-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.fp-trial-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.fp-trial-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.fp-trial-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin: 12px 4px 0;
  line-height: 1.6;
  max-width: 104.125rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 7.9375rem;
}
