.tfc-compare-section,
.tfc-compare-section * {
  box-sizing: border-box;
}

.tfc-compare-section {
  padding: 96px 18px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 90, 21, .07), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(18, 101, 255, .10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #eef5ff 100%);
  color: #071126;
}

.tfc-compare-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.tfc-compare-header {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.tfc-compare-kicker {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #1265ff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.tfc-compare-kicker span {
  width: 54px;
  height: 1px;
  background: rgba(18, 101, 255, .28);
}

.tfc-compare-header h2 {
  margin: 0;
  color: #071126;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 950;
}

.tfc-compare-header h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #1265ff, #4938ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.tfc-compare-header p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #5e6b80;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
  font-weight: 720;
}

.tfc-compare-card {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-radius: 36px;
  background: rgba(255,255,255,.78);
  border: 1px solid #dfe8f5;
  box-shadow: 0 28px 80px rgba(31, 70, 120, .12);
  backdrop-filter: blur(14px);
}

.tfc-compare-col {
  padding: 34px;
  border-radius: 28px;
}

.tfc-compare-col--bad {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 90, 21, .10), transparent 36%),
    linear-gradient(180deg, #fff7f4 0%, #ffffff 100%);
  border: 1px solid rgba(255, 90, 21, .16);
}

.tfc-compare-col--good {
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 101, 255, .16), transparent 38%),
    linear-gradient(135deg, #eff6ff 0%, #ffffff 52%, #f3f0ff 100%);
  border: 1px solid rgba(18, 101, 255, .20);
}

.tfc-compare-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tfc-compare-title span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 950;
}

.tfc-compare-col--bad .tfc-compare-title span {
  background: #fff0e8;
  color: #ff5a15;
}

.tfc-compare-col--good .tfc-compare-title span {
  background: linear-gradient(135deg, #1265ff, #4938ff);
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .22);
}

.tfc-compare-title h3 {
  margin: 0;
  color: #071126;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.tfc-compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.tfc-compare-col li {
  min-height: 58px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: #334155;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
}

.tfc-compare-col li span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 950;
}

.tfc-compare-col--bad li span {
  background: #fff0e8;
  color: #ff5a15;
}

.tfc-compare-col--good li span {
  background: #eaf9f2;
  color: #18a961;
}

.tfc-compare-footer {
  margin-top: 34px;
  text-align: center;
}

.tfc-compare-footer p {
  margin: 0 0 18px;
  color: #5e6b80;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.tfc-compare-footer a {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1265ff, #4938ff);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tfc-compare-footer a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, .30);
}

@media (max-width: 780px) {
  .tfc-compare-section {
    padding: 72px 12px;
  }

  .tfc-compare-header {
    margin-bottom: 34px;
  }

  .tfc-compare-kicker {
    font-size: 12px;
    gap: 12px;
  }

  .tfc-compare-kicker span {
    width: 34px;
  }

  .tfc-compare-header h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .tfc-compare-header p {
    font-size: 16px;
  }

  .tfc-compare-card {
    padding: 10px;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .tfc-compare-col {
    padding: 22px 14px;
    border-radius: 22px;
  }

  .tfc-compare-title {
    margin-bottom: 18px;
  }

  .tfc-compare-title span {
    width: 38px;
    height: 38px;
  }

  .tfc-compare-title h3 {
    font-size: 25px;
  }

  .tfc-compare-col li {
    min-height: 52px;
    padding: 12px;
    font-size: 15px;
  }

  .tfc-compare-footer p {
    font-size: 15px;
  }

  .tfc-compare-footer a {
    width: 100%;
  }
}