.fcy-info-v2 {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(12,90,219,.09), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(227,38,46,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow: hidden;
}

.fcy-info-v2-wrap {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: 54px;
  align-items: center;
}

/* LEFT COPY */

.fcy-info-v2-copy span {
  position: relative;
  display: inline-block;
  padding-left: 48px;
  color: #e3262e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.fcy-info-v2-copy span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 3px;
  background: #e3262e;
  transform: translateY(-50%);
  border-radius: 20px;
}

.fcy-info-v2-copy h2 {
  color: #00194c;
  font-size: 48px;
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 16px;
}

.fcy-info-v2-copy h3 {
  color: #174b8c;
  font-size: 24px;
  line-height: 1.38;
  font-weight: 800;
  margin-bottom: 22px;
}

.fcy-info-v2-copy p {
  color: #5a6a7e;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 15px;
}

/* POINT CARDS */

.fcy-info-v2-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.fcy-info-v2-points div {
  background: #ffffff;
  border: 1px solid rgba(12,90,219,.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(4,20,36,.06);
  transition: .3s ease;
}

.fcy-info-v2-points div:hover {
  transform: translateY(-3px);
  border-color: rgba(12,90,219,.24);
}

.fcy-info-v2-points i {
  color: #e3262e;
  font-size: 20px;
  margin-bottom: 10px;
}

.fcy-info-v2-points strong {
  display: block;
  color: #00194c;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.fcy-info-v2-points small {
  color: #5a6a7e;
  font-size: 13px;
  line-height: 20px;
}

/* BUTTONS */

.fcy-info-v2-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.fcy-info-v2-btn-main,
.fcy-info-v2-btn-outline {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.fcy-info-v2-btn-main {
  background: #e3262e;
  color: #fff;
  border: 2px solid #e3262e;
}

.fcy-info-v2-btn-main:hover {
  background: #00194c;
  border-color: #00194c;
  color: #fff;
  transform: translateY(-2px);
}

.fcy-info-v2-btn-outline {
  background: transparent;
  color: #00194c;
  border: 2px solid #00194c;
}

.fcy-info-v2-btn-outline:hover {
  background: #00194c;
  color: #fff;
  transform: translateY(-2px);
}

/* RIGHT MEDIA */

.fcy-info-v2-media {
  position: relative;
  min-height: 560px;
}

.fcy-info-v2-main-img {
  position: absolute;
  inset: 34px 0 34px 42px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(4,20,36,.22);
}

.fcy-info-v2-main-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,25,76,.55));
  z-index: 2;
}

.fcy-info-v2-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcy-info-v2-media::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px dashed rgba(12,90,219,.25);
  border-radius: 30px;
  z-index: 0;
}

.fcy-info-v2-card {
  position: absolute;
  z-index: 4;
  width: 230px;
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
  box-shadow: 0 18px 38px rgba(4,20,36,.24);
}

.fcy-info-v2-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 5px;
}

.fcy-info-v2-card span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 21px;
}

.fcy-info-v2-card-top {
  top: 0;
  left: 0;
  background: #00194c;
}

.fcy-info-v2-card-bottom {
  right: 0;
  bottom: 0;
  background: #e3262e;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .fcy-info-v2-wrap {
    grid-template-columns: 1fr;
  }

  .fcy-info-v2-media {
    min-height: 500px;
  }

  .fcy-info-v2-main-img {
    inset: 40px 20px;
  }
}

@media (max-width: 575px) {
  .fcy-info-v2 {
    padding: 80px 0;
  }

  .fcy-info-v2-copy h2 {
    font-size: 34px;
  }

  .fcy-info-v2-copy h3 {
    font-size: 20px;
  }

  .fcy-info-v2-points {
    grid-template-columns: 1fr;
  }

  .fcy-info-v2-actions a {
    width: 100%;
    justify-content: center;
  }

  .fcy-info-v2-media {
    min-height: 430px;
  }

  .fcy-info-v2-main-img {
    inset: 36px 0;
  }

  .fcy-info-v2-card {
    width: 190px;
    padding: 14px 16px;
  }

  .fcy-info-v2-card strong {
    font-size: 15px;
  }
}

