/* ===== Hero ===== */
.fp-hero {
  position: relative;
  width: 100%;
  margin-top: -72px;
  padding-top: 72px;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(135deg, #0f1d45 0%, #1a2a5e 30%, #243674 60%, #2e4a8a 100%);
}
.fp-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(100,140,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(60,100,200,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.fp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 64px 40px;
}
.fp-hero-text {
  flex: 1 1 400px;
  min-width: 280px;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
}
.fp-hero-image {
  flex: 1 1 380px;
  min-width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fp-hero-image img {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  mix-blend-mode: lighten;
}
.fp-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.fp-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.fp-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.fp-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 640px;
}
.fp-back-btn {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.2s;
}
.fp-back-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

/* ===== Container ===== */
.fp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 56px 16px;
}

/* ===== Cards ===== */
.fp-card {
  margin: 32px 0;
  padding: 40px 48px 36px 48px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(35,102,168,0.06);
  transition: box-shadow 0.3s;
}
.fp-card:hover {
  box-shadow: 0 4px 24px rgba(35,102,168,0.1);
}
.fp-card-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #243674;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.fp-card-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #243674, #4a6cb3);
  border-radius: 2px;
}
.fp-card-text {
  font-size: 1.05rem;
  color: #555;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== Banners ===== */
.fp-banner-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(36,54,116,0.1);
  text-decoration: none;
}
.fp-banner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(36,54,116,0.18);
}
.fp-banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.fp-link-hint {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #888;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .fp-hero-inner {
    padding: 48px 24px 56px 24px;
    flex-direction: column;
  }
  .fp-hero-image {
    display: none;
  }
  .fp-title {
    font-size: 1.6rem;
  }
  .fp-logo {
    height: 38px;
  }
  .fp-card {
    padding: 28px 20px 24px 20px;
  }
  .fp-banner-img--half {
    max-width: 100%;
  }
}
