/* WRAPPER */
.tcg-pricing {
  background: #f4f7fb;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

/* CARD */
.tcg-card {
  background: #fff;
  max-width: 1100px;
  width: 100%;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* TITLE */
.tcg-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b4f8a;
  margin-bottom: 24px;
}

.tcg-title span {
  display: block;
  font-size: 16px;
  color: #6c7a89;
  margin-top: 4px;
}

/* TABLE */
.tcg-table {
  display: flex;
  flex-direction: column;
}

/* ROW */
.tcg-row {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr;
  gap: 16px;
  padding: 14px 16px;
  align-items: center;
  border-bottom: 1px solid #e6ebf2;
  animation: tcgFade .6s ease both;
}

/* HEADER */
.tcg-head {
  font-weight: 600;
  background: #DA2128;
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* SECTION */
.tcg-section {
  background: #0072BC;
  color: #fff;
  font-weight: 600;
  grid-template-columns: 1fr;
  border-radius: 10px;
  margin-top: 18px;
}

/* ZEBRA */
.tcg-row:nth-child(even):not(.tcg-section):not(.tcg-head) {
  background: #f8fafc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tcg-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ANIMATION */
@keyframes tcgFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line */
.tcg-row:not(.tcg-section):not(.tcg-head)::before,
.tcg-row:not(.tcg-section):not(.tcg-head)::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 0;
  background-color: #DA2128;
  transition: width .25s ease, background-color .25s ease;
}

.tcg-row:not(.tcg-section):not(.tcg-head)::before {
  left: 0;
  border-radius: 0 6px 6px 0;
}

.tcg-row:not(.tcg-section):not(.tcg-head)::after {
  right: 0;
  border-radius: 6px 0 0 6px;
}

/* HOVER */
.tcg-row:not(.tcg-section):not(.tcg-head):hover {
  background-color: #DA2128;
  color: #ffffff;
  transform: scale(1.01);
  border-radius: 10px;
}

/* white */
.tcg-row:not(.tcg-section):not(.tcg-head):hover div {
  color: #ffffff;
}


/* MOBİL */
@media (max-width: 768px) {
  .tcg-row:not(.tcg-section):not(.tcg-head):hover {
    transform: none;
  }

  .tcg-row:not(.tcg-section):not(.tcg-head)::before,
  .tcg-row:not(.tcg-section):not(.tcg-head)::after {
    display: none;
  }
}

