/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
:root{
  --bc-color: #222;
  --adv-color: #006699;
  --hy-color: #006633;
}

.checking-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  min-height: 575px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #d8e5ec;
  border-top: 5px solid #222;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 67, 103, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.adv-checking-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  min-height: 575px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #d8e5ec;
  border-top: 5px solid #006699;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 67, 103, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hy-checking-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  min-height: 575px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #d8e5ec;
  border-top: 5px solid #006633;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 67, 103, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;

}
.checking-card:hover, .hy-checking-card:hover, .adv-checking-card:hover{
    box-shadow: 0 16px 38px rgba(18, 38, 63, 0.16);
    transform: translateY(-4px);
}

.checking-card:hover{
   border-color: var(--bc-color);
}
.adv-checking-card:hover{
  border-color: var(--adv-color);
}
  
.hy-checking-card:hover{  
  border-color: var(--hy-color);
  }
  
.checking-card__content {
  flex: 1;
}


.checking-card__label {
  margin: 0 0 14px;
  color: #006699;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}


.checking-card__title {
  margin: 0 0 16px;
  color: #222;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
}
/* .adv-checking-card h3{
  color: var(--adv-color) !important;
}

.hy-checking-card h3{
    color: var(--hy-color) !important;
}
 */
.checking-card__description {
  margin: 0;
  color: #425466;
  font-size: 1rem;
  line-height: 1.65;
}


.checking-card__fit,
.hy-checking-card__fit,
.adv-checking-card__fit{
  margin: 15px 0;
  padding: 5px 0;
/*   border-top: 1px solid var(--bc-color);
  border-bottom: 1px solid var(--bc-color); */
}
/* .hy-checking-card__fit{
  border-top: 1px solid var(--hy-color) !important;
    border-bottom: 1px solid var(--hy-color) !important;
}
.adv-checking-card__fit{
  border-top: 1px solid var(--adv-color) !important;
  border-bottom: 1px solid var(--adv-color) !important;
} */

.checking-card__fit-label {
  margin: 0 0 6px;
  color: #006699;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0 !important
}

.bc-checking-card__fit-label{
  color: var(--bc-color) !important;
}

.adv-checking-card__fit-label{
  color: var(--adv-color) !important;
}

.hy-checking-card__fit-label{
  color: var(--hy-color) !important;
}

.checking-card__fit-text {
  margin: 0;
  color: #123653;
  font-size: 0.95rem;
  line-height: 1.55;
}


.checking-card__features {
  display: grid;
  gap: 12px;
  margin: 0px 0px 0px 20px;
  padding: 0;
  color: #334e5f;
  list-style: none;
}


.checking-card__features li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}


.checking-card__features li::before {
  position: absolute;
  top: 5px;
  left: -5px;
  color: #fff;
  content: "✓";
  font-weight: 800;
  background: #006699;
  border-radius: 9999px;
  padding: 0 6px 0 6px;
}
.bc-checking-card__features li::before {
  position: absolute;
  top: 5px;
  left: -5px;
  color: #fff;
  content: "✓";
  font-weight: 800;
  background: var(--bc-color) !important;
  border-radius: 9999px;
  padding: 0 6px 0 6px;
}

.checking-card__button {
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 20px;
  padding: 12px 22px;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  border-radius: 10px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.bc-checking-card__button {
  background: var(--bc-color);
}

.adv-checking-card__button {
  background: var(--adv-color);
}

.hy-checking-card__button {
  background: var(--hy-color);
}

.bc-checking-card__button:hover {
  background: var(--bc-color) !important;
  cursor: pointer !important;
}

.adv-checking-card__button:hover !important {
  background: var(--adv-color);
  cursor: pointer !important;
}

.hy-checking-card__button:hover !important {
  background: var(--hy-color);
  cursor: pointer !important;
}


.checking-card__button:hover {
  transform: translateY(-2px);
}

.checking-card__button:focus-visible {
  outline: 3px solid #f4b942;
  outline-offset: 3px;
}

.learn-more:hover{
  cursor: pointer !important;
}

@media (max-width: 768px) {
  .checking-card {
    min-height: 0;
    padding: 28px 24px;
    margin: auto;
  }
  .hy-checking-card {
    min-height: 0;
    padding: 28px 24px;
    margin: auto;
  }
  .adv-checking-card {
    min-height: 0;
    padding: 28px 24px;
    margin: auto;
  }
}